/* 引入第三方字体
@font-face {
    font-family: Arial;
    src:url('**.otf'),
    url('**.ttf');
} */
/* :root {定义变量样式值
    --bg-color: red;
    --color: white
}
p.var {
    background-color: var(--bg-color);
    color: var(--color)
} */
:root {
  --c51: #333333;
  --c56: #383838;
  --c102: #666666;
  --c115: #737373;
  --c121: #797979;
  --c136: #888888;
  --c146: #929292;
  --c153: #999999;
  --c179: #b3b3b3;
  --c204: #cccccc;
  --c230: #e6e6e6;
  --c240: #f0f0f0;
  --c247: #f7f7f7;
  --font-family: 'microsoft yaHei', Arial, Helvetica, sans-serif;
}
@font-face {
  font-family: 'SHANS-BLACK';
  src: url('../fonts/NOTOSANSHANS-BLACK.OTF');
}
@font-face {
  font-family: 'SHANS-BOLD';
  src: url('../fonts/NOTOSANSHANS-BOLD.OTF');
}
@font-face {
  font-family: 'SHANS-DEMILIGHT';
  src: url('../fonts/NOTOSANSHANS-DEMILIGHT.OTF');
}
@font-face {
  font-family: 'SHANS-LIGHT';
  src: url('../fonts/NOTOSANSHANS-LIGHT.OTF');
}
@font-face {
  font-family: 'SHANS-MEDIUM';
  src: url('../fonts/NOTOSANSHANS-MEDIUM.OTF');
}
@font-face {
  font-family: 'SHANS-REGULAR';
  src: url('../fonts/NOTOSANSHANS-REGULAR.OTF');
}
@font-face {
  font-family: 'SHANS-THIN';
  src: url('../fonts/NOTOSANSHANS-THIN-WINDOWS.OTF');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: break-word;
  word-break: normal;
  white-space: normal;
}
body {
  font-family: var(--font-family);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: black;
}
ul,
ol,
p {
  margin-bottom: 0px;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
input[type="text"],
input[type="submit"],
input[type="button"],
button {
  -webkit-appearance: none;
}
input,
button,
select,
textarea {
  outline: none;
}
label {
  margin: 0;
}
i {
  font-style: normal;
}
.clear::after {
  content: '';
  font-size: 0px;
  line-height: 0px;
  display: table;
  clear: both;
}
.flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.flex1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.line1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}
img.responseImg,
.responseImg img {
  max-width: 100%;
  height: auto;
}
.responseCont img {
  max-width: 100% !important;
}
.textCenter {
  text-align: center;
}
.positAll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.positCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.positOrigin {
  position: absolute;
  top: 0;
  left: 0;
}
.positTBCenter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.positRel {
  position: relative;
}
.positAbs {
  position: absolute;
  z-index: 100;
}
.positFix {
  position: fixed;
  z-index: 100;
}
a.ablock,
.ablock a,
.blocks,
img.imgblock,
.imgblock img {
  display: block;
}
li.inlineLi,
.inlineLi li,
.lineblock {
  display: inline-block;
  vertical-align: middle;
}
img.imgAll,
.imgAll img {
  width: 100%;
}
.alignL {
  text-align: left;
}
.alignR {
  text-align: right;
}
.list2 {
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.list2 li {
  -webkit-box-flex: 0 0 49%;
  -webkit-flex: 0 0 49%;
  flex: 0 0 49%;
}
.list3 {
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.list3::after {
  content: '';
  display: block;
  width: 32%;
}
.list3 li {
  -webkit-box-flex: 0 0 32%;
  -webkit-flex: 0 0 32%;
  flex: 0 0 32%;
}
.pd14 {
  padding: 14px;
}
.pdlr16 {
  padding-right: 16px;
  padding-left: 16px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.linebg10 {
  height: 10px;
  background-color: #f4f4f4;
}
.bgwhite {
  background-color: white;
}
.showToast {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  z-index: 9999;
  width: 200px;
  padding: 10px 16px;
  border-radius: 4px;
  text-align: center;
}
input.checkboxs {
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #e1e1e1;
  position: relative;
  margin: 0;
  border-radius: 3px;
}
input.checkboxs:focus {
  outline: none;
}
.swiper-button-next,
.swiper-button-prev {
  outline: none;
}
/* 图片效果 */
/* .overimg {
  overflow: hidden;
}
.overimg > img {
  transition: all 1s;
}
.curhover:hover > img,
.hoverimg:hover .overimg > img {
  transform: scale(1.2);
} */
/* 图片效果 */
/* 三角形 */
.jiaoDown {
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-top-color: var(--c153);
}
/* 三角形 */
/* 跳转页导航 */
.navPage {
  text-align: center;
}
.navPage nav > div,
.navPage nav > ul {
  display: inline-block;
  vertical-align: middle;
}
.navPage li {
  display: inline-block;
}
.navPage li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #cecece;
  color: var(--color-121);
  display: block;
  font-size: 16px;
  border-radius: 4px;
}
.navPage li.active a,
.navPage li a:hover {
  background-color: var(--color-green);
  color: white;
  border-color: var(--color-green);
}
.navPage nav > div,
.navPage li {
  margin: 0px 4px;
}
.navPage nav > div a {
  display: block;
  border: 1px solid #cecece;
  color: var(--color-121);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
}
.navPage nav > div a img {
  width: 30px;
  vertical-align: middle;
}
/* 跳转页导航 */
/* 返回顶部 */
.gotop {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 999999;
  background-color: transparent;
  border: none;
}
.gotop img {
  width: 40px;
}
/* 返回顶部 */
/* 清除input file默认样式 */
input.upfiles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: none;
  opacity: 0;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
}
input.upfiles::-webkit-file-upload-button {
  border: none;
  background-color: transparent;
  color: transparent;
  outline: none;
}
/* 清除input file默认样式 */
/* 文字两端对齐 */
/* 一 */
/* .text_qi{
    width: 100%;
    text-align: justify;
}
.text_qi::after{
    content:"";
    display: inline-block;
    width:100%;
    overflow:hidden;
    height:0;
} */
/* 二 */
.text_qi {
  text-align: justify;
  text-align-last: justify;
}
/* 文字两端对齐 */
.containers {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
/* 处理table边框 */
/* 处理table边框 */
@media (max-width: 1350px) {
  .containers {
    max-width: 90%;
  }
  .navPage li a,
  .navPage nav > div a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .gotop {
    right: 10px;
  }
}
