@charset "utf-8";


/* 清除标签自带样式 */
* {
  padding: 0;
  margin: 0;
  list-style: none;
  font-style: normal;
  box-sizing: border-box;
}



/*浮动和清除浮动*/
.fl {
  float: left
}

.fr {
  float: right
}

.clear::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}


a {
  text-decoration: none;
  color: inherit
}

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: "Microsoft YaHei","Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 14px;
  min-height: 100%;
  line-height: 1.6;
  background: #fff;
  color: rgb(80, 80, 80);
  overflow-x: hidden;
}

/* 图片样式 */
img {
  border: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.width100,
.width100 img,
.swiper-container img {
  width: 100%;
  display: block
}




h1 {
  font-size: 120%
}

h4 {
  font-size: 120%;
  font-weight: normal
}


/* --------------------------其他基础样式----------------------------------------- */

h2 {
  font-size: 140%
}

h5 {
  font-size: 140%;
  font-weight: normal
}

h3 {
  font-size: 180%
}

h6 {
  font-size: 180%;
  font-weight: normal
}

/* form 样式 */
textarea {
  resize: none;
  padding: 5px;
  /* line-height: 2; */
  height: 180px;
}

button {
  border: none;
}

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: 50px
}




/* 字体*/
@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;
  font-size: 120%;

}

/* 表格 */
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:nth-child(2n) td{
  background: #eeeeee;
}

tr:hover td {
  background-color: #ecf6fd;
}

/* 弹窗 10086*/
.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: 100863
}

.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: 100861;
  display: none
}

.p-shade.curr {
  display: block
}

.pop {
  width: 700px;
  z-index: 100862;
  background: #FFFFFF;
  border-radius: 10px;
  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)
  }
}