@charset "utf-8";

/**
 * @version：1.0
 * @author：haolei <haolei@ec.com.cn>
 * @description：resetStyle
 * @date：2020/05/06
 */

* {
  word-wrap: break-word;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
}

html,
body,
div,
span,
p,
dl,
dt,
dd,
ul,
ol,
li,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6,
img,
a,
strong,
form,
fieldset,
input,
textarea,
select,
lable,
option,
blockquote,
pre,
hr {
  margin: 0;
  padding: 0
}

header,
nav,
aside,
article,
section,
article,
footer,
hgroup,
time {
  margin: 0;
  padding: 0;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

table th,
table td {
  width: auto;
}

label,
input,
select,
textarea {
  vertical-align: middle;
  font-size: 12px;
  outline: none;
}

label,
input[type=button] {
  cursor: pointer;
}

ol,
ul {
  list-style: none
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
} */

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

a:hover,
a.z-crt {
  color: #004098;
}

a:focus {
  outline: none;
}

img {
  max-width: 100% !important;
  border: none;
  vertical-align: top;
}

.ImgCrop img {
  max-width: initial !important;
}

em,i {
  font-style: italic;
}

input[type=text],
input[type=password],
textarea,
select {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 5px #52a8ec;
  border: 1px solid #52a8ec;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #d9d9d9;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

input[type=text],
input[type=password],
textarea {
  font-family: "Microsoft Yahei", SimSun, Arial, "Helvetica Neue", Helvetica;
}


@media screen and (min-width:1000px) {

  /******自定义隐藏滚动条*******/
  ::-webkit-scrollbar {
    width: 5px;
    height: 8px;
  }

  ::-webkit-scrollbar-button {
    display: none;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    /* border-radius: 5px; */
    background: #0654e0;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #9f9f9f;
  }
}