@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  /*list-style: none;*/
  font-style: normal;
}


a {
  text-decoration: none;
  color: inherit
}

/*-------------*/
fieldset,
img {
  border: 0;
}

.clear::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}

.fl {
  float: left
}

.fr {
  float: right
}

textarea {
  resize: none;
  padding: 5px;
  line-height: 2.2;
  box-sizing: border-box
}

input,
textarea,
select,
button {
  font-size: 100%;
  outline: none;
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  background: rgba(255, 255, 255, 0)
}

input,
textarea {
  width: 100px
}

button {
  color: #FFFFFF;
  letter-spacing: 3px;
  border-radius: 3px;
  font-size: 110%;
  line-height: 2.5;
}

button:hover,
a:hover {
  opacity: 0.9;
  cursor: pointer
}

button:active,
a:active {
  opacity: 0.8
}




.main {
  width: 1200px;
  margin: 0 auto
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  position: relative
}

body {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 14px;
  min-height: 100%;
  line-height: 1.6;
  background: #F7F7F7;
  color: #333
}

@font-face {
  font-family: iconfont;
  src: url(../fonts/iconfont.eot);
  src: url(../fonts/iconfont.eot#iefix) format('embedded-opentype'), url(../fonts/iconfont.woff) format('woff'), url(../fonts/iconfont.ttf) format('truetype'), url(../fonts/iconfont.svg#iconfont) format('svg')
}

.iconfont {
  font-family: iconfont !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: .2px;
  -moz-osx-font-smoothing: grayscale
}

table {
  border-collapse: collapse;
  text-align: center;
}

th,
td {
  border: 1px solid #e9e9e9;
  padding: 8px 10px;
}

tr {
  -webkit-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

tr:hover td {
  background-color: #ecf6fd;
}

/*colspan横合并    rowspan竖纵合并*/

.width100 {
  width: 100%;
  display: block
}

.width100 img {
  width: 100%;
  display: block;
  margin: 15px 0
}


h1 {
  font-size: 120%
}

h2 {
  font-size: 140%
}

h3 {
  font-size: 160%
}

h4 {
  font-size: 120%;
  font-weight: normal
}

h5 {
  font-size: 140%;
  font-weight: normal
}

h6 {
  font-size: 160%;
  font-weight: normal
}

/*字体------------------------------------------------颜色*/
.fred {
  color: #df4545
}

.fgreen {
  color: #15b51c
}

.fblue {
  color: #409EFF
}

.fyellow {
  color: #E1E10C
}

.bgfff {
  background: #fff;
}




.p-msg {
  position: fixed;
  display: inline-block;
  padding: 8px 15px;
  background: rgba(0, 0, 0, .5);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 102
}

.p-msg p {
  line-height: 1.6;
  font-size: 14px
}

.p-shade {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none
}

.p-shade.curr {
  display: block
}

.pop {
  width: 700px;
  z-index: 101;
  background: #FFFFFF;
  border-radius: 10px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
}

.pop.curr {
  top: 50%;
}

.u-refresh {
  animation: loading 0.6s linear infinite
}

@keyframes loading {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}