﻿@font-face {
  font-family: 'MFLiHei-Noncommercial';
  src: url(../font/MFLiHei-Noncommercial.woff);
  src: url(../font/MFLiHei-Noncommercial.woff2);
  src: url(../font/MFLiHei-Noncommercial.ttf);
  font-display:swap;
}
html,
body {
  border: 0;
  font-weight: lighter;
  font-size: 12px;
  font-family: 
    'SourceHanSansCN-Medium',     /* 思源`黑体中黑体 */
    'Microsoft YaHei UI',          /* Win10/11 新版的微软雅黑UI */
    'Microsoft YaHei',             /* 传统微软雅黑 */
    'PingFang SC',                 /* 苹方（macOS/iOS） */
    'Hiragino Sans GB',            /* 冬青黑体简体中文 */
    'WenQuanYi Micro Hei',         /* 文泉驿微米黑（Linux） */
    'Segoe UI',                    /* 西文备用 */
    sans-serif;                    /* 最终回退到系统无衬线字体 */
}
.container {
  width: 1200px;
  margin: 0 auto;
}
.clear {
    display: block;
    height: 0;
    width: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: transparent;
    float: none;
    clear: both;
}
/*导航栏*/
.header_top {
  width: 100%;
  background: #f2f2f2;
}
.header_nav {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  background: #fff;
}
.header_nav.fixed {
  position: fixed;
  animation: slideDown 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*侧边栏*/
.sider {
  position: fixed;
  right: 40px;
  top: 30%;
  z-index: 100;
  width: 60px;
}
.sider ul{
  width: 60px;
  padding: 10px 0;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(0,0,0,.2);
  box-shadow: 0px 0px 16px rgba(0,0,0,.2);
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.sider li{
  position: relative;
}
.sider_bd{
  position: relative;
  padding: 10px 0;
}
.sider_bd:hover,
.sider_bd:hover .txt{
  cursor: pointer;
  color: #ff7f14;
  text-align: center;
}
.sider li::after{
  content:"";
  position: absolute;
  left: 10px;
  bottom: 0;
  z-index: 22;
  width: 40px;
  height: 1px;
  background-color: #e0e0e0;
}
.sider li:last-child:after{
  width:0;
}
.sider li .sider_bd i{
  width: 35px;
  height: 30px;
  display: inline-block;
}
.sider li .sider_bd i.ico_weixin{
  background: url(../images/ico_weixin.png) no-repeat center / auto 26px;
}
.sider li .sider_bd i.ico_kefu{
  background: url(../images/ico_kefu.png) no-repeat center / auto 26px;
}
.sider li .sider_bd i.ico_yuyue{
  background: url(../images/ico_yuyue.png) no-repeat center / auto 26px;
}
.sider li .sider_bd i.ico_ziliao{
  background: url(../images/ico_ziliao.png) no-repeat center / auto 26px;
}
.sider li .sider_bd:hover i.ico_weixin{
  background: url(../images/ico_weixin2.png) no-repeat center / auto 26px;
}
.sider li .sider_bd:hover i.ico_kefu{
  background: url(../images/ico_kefu2.png) no-repeat center / auto 26px;
}
.sider li .sider_bd:hover i.ico_yuyue{
  background: url(../images/ico_yuyue2.png) no-repeat center / auto 26px;
}
.sider li .sider_bd:hover i.ico_ziliao{
  background: url(../images/ico_ziliao2.png) no-repeat center / auto 26px;
}
.sider .txt{
  display: block;
  color: #555;
  line-height: 1.2;
}
.sider_reg{
  display: block;
  margin-top:15px;
  width: 60px;
  height: 112px;
  padding: 10px 0;
  color: #fff;
  font-size: 16px; 
  line-height: 1.4;
  text-align: center;
  background: #ff7f14 url(../images/sider_btn.png) no-repeat center center / 100% 100%;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  -webkit-box-shadow: 0px 0px 16px rgba(0,0,0,.4);
  box-shadow: 0px 0px 16px rgba(0,0,0,.4);
}
.sider_reg:hover{
  color: #fff;
}
.sider .child_sider {
  display: none;
}
.sider_bd:hover .child_sider {
  display: block;
}
.child_sider {
  position: absolute;
  left: -135px;
  top: -4px;
  z-index: 1;
  width: 135px;
}
.child_sider .arrow {
  position: absolute;
  right: 5px;  
  top: 15px;
  z-index: 30;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:10px solid #fff;
}
.sider_zx_list {
  width: 120px;
  padding: 10px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 10px rgba(0,0,0,.1);
  -moz-box-shadow: 4px 4px 10px rgba(0,0,0,.1);
  box-shadow: 4px 4px 10px rgba(0,0,0,.1);
}
.sider_zx_list .gray{
  margin-top:10px;
  padding-top:15px;
  border-top:dashed 1px #ccc;
  text-align:center;
}
.sider_zx_list dd {
  padding: 2px 0;
  font-size: 12px;
  color: #666;
  text-align: left;
  cursor: auto;
}
.sider_zx_list dd a {
  color: #666;
}
.sider_zx_list dd a:hover {
  color: #ff7f14;
}
.sider_zx_list dd a i {

  display: inline-block;
  line-height: 1em;
  vertical-align: middle;
}
.sider_zx_list dd a i.ico_ziliaoku{
  width: 28px;
  height: 26px;
  background: url(../images/ico_ziliaoku.png) no-repeat center / auto 16px;
}
.sider_zx_list dd a i.ico_cailiao{
  width: 28px;
  height: 26px;
  background: url(../images/ico_cailiao.png) no-repeat center / auto 16px;
}
.sider_zx_list dd a:hover i.ico_ziliaoku{
  background: url(../images/ico_ziliaoku2.png) no-repeat center / auto 16px;
}
.sider_zx_list dd a:hover i.ico_cailiao{
  background: url(../images/ico_cailiao2.png) no-repeat center / auto 16px;
}
.sider_code {
  width: 132px;
  text-align: left;
  padding: 8px 0 8px 16px;
  background: url(../images/sider_bg.png) repeat-y;
}
.sider_code img {
  width: 100px;
}

/* 返回顶部按钮 */
.back-to-top {
  display: block;
  margin: 40px 10px 0  10px;
  width: 40px;
  height: 40px;
  background: #fff url(../images/ico_backup.png) no-repeat center / 40px 40px;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background: #fff url(../images/ico_backup2.png) no-repeat center / 40px 40px;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/* 响应式调整 */
@media (max-width: 768px) {
  .back-to-top {
    right: 20px;
    bottom: 60px;
    width: 36px;
  }
}
/*弹出微信咨询框*/
.window_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, .7);
}
.wx001 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  min-height: 400px;
  padding: 30px;
  text-align: center;
  background: #fff url(../images/pattern1.png);
  border-radius: 10px;
}
.wx001 .close {
  position: absolute;
  right: 20px;
  top: -70px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.wx001 .close img {
  display: block;
}
.wx001 .close img:hover {
  transform:translateY(2%);
  cursor: pointer;
}
.wx001 .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.wx001 ul {
  width: 370px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
}
.wx001 ul li {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  text-align: left;
}
.wx001 ul li i.ico_select {
  width: 26px;
  height: 26px;
  background: url(../images/ico_select.png) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
.wx001 ul .txt {
  font-size: 20px;
  color: #333;
}
.wx001 .wx {
  padding: 10px 0;
}
.wx001 .wx img {
  width: 150px;
  height: auto;
}
.wx001 .wx .txt {
  font-weight: bold;
  font-size: 20px;
  padding-top: 5px;
}
/* 表单弹窗样式 - 使用绝对定位居中 */
.form_window_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, .7);
  display: none; /* 默认隐藏，通过JS控制显示 */
}
.form_window_bg[style*="display:block"] {
  display: block;
}
.popup_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  background: #fff;
  border-radius: 10px;
  padding: 45px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.popup_form .close {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}
.popup_form .close i.ico_close {
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/ico_close.png) no-repeat center center / 25px 25px;
}
.popup_form .close i.ico_close:hover {
  background: url(../images/ico_close2.png) no-repeat center center / 25px 25px;
  transform:translateY(-4%);
  cursor: pointecr;
}
.popup_form img.man {
  position: absolute;
  right: -7px;
  top: -135px;
  padding: 0;
  background: none;
  border: none;
  z-index: 10;
}
/* 表单样式 */
.popup_form .applyForm {
  text-align: left;
}
.popup_form .applyForm ul.form {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.popup_form .applyForm ul.form li.form_input {
  position: relative;
  margin-bottom: 30px;
}
.popup_form .applyForm ul.form li.form_input .form_bd {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 15px;
  background: #fff;
  height: 50px;
  z-index: 2;
  transition: border-radius 0.2s;
}
.popup_form .applyForm ul.form li.form_input .form_bd .form_icon {
  padding-right: 10px;
  color: #666;
  display: flex;
  align-items: center;
  width: 30px;
  height: 40px;
}
.popup_form .applyForm ul.form li.form_input .form_bd .form_icon i {
  display: block;
  width: 20px;
  height: 20px;
}
.popup_form .applyForm ul.form li.form_input .form_bd .form_icon i.ico_city{
  background: url(../images/ico_city.png) no-repeat center center / 20px 20px;  
}
.popup_form .applyForm ul.form li.form_input .form_bd .form_icon i.ico_item{
  background: url(../images/ico_item.png) no-repeat center center / 20px 20px;  
}
.popup_form .applyForm ul.form li.form_input .form_bd .form_icon i.ico_phone{
  background: url(../images/ico_phone.png) no-repeat center center / 20px 20px;  
}
.popup_form .applyForm ul.form li.form_input .form_bd .ipt_txt {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: #333;
}
.popup_form .applyForm ul.form li.form_input .form_bd .ipt_ttx::placeholder {
  color: #999;
}
.popup_form .applyForm ul.form li.form_input .form_ts.error {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #e50000;
  color: #fff;
  font-size: 12px;
  padding: 6px 15px;
  border-radius: 0 0 10px 10px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-sizing: border-box;
}
/* 显示状态 */
.popup_form .applyForm ul.form li.form_input .form_ts.error.show,
.popup_form .applyForm ul.form li.form_input .form_ts.error[style*="display:block"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* 当错误提示显示时，移除输入框的底部圆角 */
.popup_form .applyForm ul.form li.form_input:has(.form_ts.error[style*="display:block"]) .form_bd,
.popup_form .applyForm ul.form li.form_input:has(.form_ts.error.show) .form_bd {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #e50000;
}
.popup_form .applyForm ul.form li .form_submit {
  width: 100%;
  height: 50px;
  margin: auto;
  margin-bottom: 10px;
  background: #ff7f14 url(../images/btn_bg.png) no-repeat center center / 100% 100%;
  color: #fff;
  font-size: 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.2s ease-in-out;
  -moz-transition: All 0.2s ease-in-out;
  -o-transition: All 0.2s ease-in-out;
}
.popup_form .applyForm ul.form li .form_submit:hover {
  transform:translateY(-2%);
  box-shadow:6px 6px 10px rgba(0,0,0,.2);
  cursor: pointer;
}
.popup_form .applyForm ul.form li a.privacy {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup_form .applyForm ul.form li a.privacy .ico_safe {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../images/ico_safe.png) no-repeat center;
  background-size: contain;
  margin-right: 5px;
}
#tip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  padding: 12px 24px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  max-width: 80%;
  text-align: center;
  pointer-events: none;
  display: none;
}
/*end*/



.content {
  display: flex;
}

header {
  height: 114px;
}
.header {
  width: 100%;
  background-color: #fff;
}
.header .top-sign {
  width: 1200px;
  margin: auto;
  height: 42px;
  line-height: 42px;
  text-align: right;
}
.header .top-sign a {
  color: #666;
  margin: 0 0 0 10px;
  vertical-align: middle;
  display: inline-block;
}
.header .top-sign a.phone-box {
  color: #ff7f14;
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}
.header .top-sign a.phone-box img {
  width: 15px;
  position: absolute;
  top: 0;
  left: 0;
}
.header .top-sign a.orderbtn {
  display: inline-block;
  height: 26px;
  padding: 0 18px;
  background: #ff7f14 url(../images/btn_bg.png) no-repeat center center / 100% 100%;
  line-height: 26px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.2s ease-in-out;
  -moz-transition: All 0.2s ease-in-out;
  -o-transition: All 0.2s ease-in-out;
}
.header .top-sign a.orderbtn:hover {
  transform:translateY(-4%);
  box-shadow:0px 0px 4px rgba(0,0,0,.2);
}
.header .top-sign a.loginbtn {
  height: 26px;
  line-height: 26px;
  padding: 0 15px;
  color: #ff7f14;
  background-color: #fff;
  border:solid 1px #ff7f14;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.2s ease-in-out;
  -moz-transition: All 0.2s ease-in-out;
  -o-transition: All 0.2s ease-in-out;
}
.header .top-sign a.loginbtn:hover {
  transform: translateY(-4%);
  box-shadow: 0px 0px 4px rgba(0,0,0,.2);
}
.header .top-sign a:last-child {
  margin-right: 0;
}
.header .header-container {
  width: 1200px;
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.header .header-container .logo {
  margin: 5px 50px 0 0;
}
.header .header-container .logo a {
  width: 160px;
  height: 45px;
  background: url(../images/logo.png) no-repeat center center / auto 45px;
  display: inline-block;
}
.header .header-container nav {
  margin-right: 20px;
  width: 100%;
}
.header .header-container nav ul.content li.first-nav {
  margin-right: 36px;
  position: relative;
}
.header .header-container nav ul.content li.first-nav h3 a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 32px;
  color: #333;
  position: relative;
}
.header .header-container nav ul.content li.first-nav h3 a::after {
  display: block;
  content: '';
  width: 28px;
  height: 4px;
  background-color: #ff7f14;
  border-radius: 4px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
}
.header .header-container nav ul.content li.first-nav:last-child {
  margin-right: 0;
}
.header .header-container nav ul.content li.first-nav:hover h3 a::after {
  opacity: 1;
}
.header .header-container nav ul.content li.first-nav:hover .sec-nav-content {
  opacity: 1;
  transform: rotateX(0deg);
}
.header .header-container nav ul.content li.first-nav.active h3 a::after {
  opacity: 1;
}
.header .header-container nav ul.content li.first-nav.active .sec-nav-content {
  opacity: 1;
  transform: rotateX(0deg);
}
.header .header-container nav ul.content li.first-nav .sec-nav-content {
  width: 857px;
  position: absolute;
  top: 36px;
  left: -38px;
  z-index: 9999;
  padding-top: 9px;
  transform: rotateX(90deg);
  transform-origin: top;
  opacity: 0;
  transition: all 0.3s;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content {
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
  box-shadow: 0 0 18px 13px rgba(255, 127, 20, 0.07);
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .left-sec-nav-item {
  padding-top: 8px;
  padding-bottom: 20px;
  width: 140px;
  background-color: #fffbf6;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .left-sec-nav-item ul li h4 {
  font-size: 16px;
  color: #555;
  line-height: 50px;
  font-weight: normal;
  cursor: pointer;
  text-align: center;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .left-sec-nav-item ul li h4:hover {
  color: #fff;
  background-color: #ff7f14;
  background: linear-gradient(to right, #ffbb80, #ff7f14);
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .left-sec-nav-item ul li.active h4 {
  color: #fff;
  background-color: #ff7f14;
  background: linear-gradient(to right, #ffbb80, #ff7f14);
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content {
  width: calc(100% - 140px);
  min-height: 533px;
  background-color: #fff;
  padding: 0 0 20px 25px;
  border-radius: 0px 0px 10px 0;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item {
  display: none;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .inner-content h5::after {
  margin-top: 22px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .inner-content .nav-content {
  padding-top: 12px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item h5 {
  padding-top: 28px;
  font-size: 16px;
  line-height: 1;
  color: #555;
  font-weight: 500;
  font-family:'SourceHanSansCN-Medium';
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item h5::after {
  margin-top: 22px;
  display: block;
  content: '';
  width: 662px;
  height: 1px;
  background-color: #E5E5E5;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item h5 .sec-nav-title {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item h5 .sec-nav-title img {
  width: 28px;
  height: 28px;
  display: block;
  margin-right: 10px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content {
  padding-top: 32px;
  width: 100%;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content .type-items h6 {
  padding-bottom: 8px;
  padding-left: 23px;
  font-size: 16px;
  line-height: 1;
  color: #666;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content .type-items:nth-child(1) h6 {
  padding-top: 10px;
  font-weight: bold;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content .type-items:nth-child(2) h6 {
  padding-top: 27px;
  font-weight: bold;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content .type-items:nth-child(3) h6 {
  padding-top: 18px;
  font-weight: bold;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content .type-items ul.item-dxyw li {
  width: 265px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content .type-items ul.item-dxyw li:nth-child(3n - 1) {
  width: 226px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content .type-items ul.item-dxyw li:nth-child(3n) {
  width: 165px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-gszc li,
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-dljz li,
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-qybg li {
  width: 165px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-gszc li:nth-child(4n - 2),
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-dljz li:nth-child(4n - 2),
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-qybg li:nth-child(4n - 2),
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-gszc li:nth-child(4n - 1),
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-dljz li:nth-child(4n - 1),
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-qybg li:nth-child(4n - 1) {
  width: 169px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-gszc li:nth-child(4n),
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-dljz li:nth-child(4n),
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-qybg li:nth-child(4n) {
  width: 159px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-whyl li {
  width: 250px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-whyl li:nth-child(3n - 1) {
  width: 220px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-whyl li:nth-child(3n) {
  width: 180px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-hyrz li {
  width: 250px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-hyrz li:nth-child(3n - 1) {
  width: 220px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-hyrz li:nth-child(3n) {
  width: 188px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-txrz li {
  width: 165px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-txrz li:nth-child(4n - 2) {
  width: 186px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-txrz li:nth-child(4n - 1) {
  width: 157px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-txrz li:nth-child(4n) {
  width: 150px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-zscq li {
  width: 220px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-zscq li:nth-child(3n - 1) {
  width: 220px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-zscq li:nth-child(3n) {
  width: 180px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-hlwzz li {
  width: 260px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-hlwzz li:nth-child(3n - 1) {
  width: 215px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul.item-hlwzz li:nth-child(3n) {
  width: 182px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul {
  display: flex;
  flex-wrap: wrap;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul li {
  text-align: left;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul li a {
  display: inline-block;
  width: auto;
  padding: 10px 0 4px 23px;
  color: #666;
  background-color: transparent;
  font-family: 'SourceHanSansCN-Regular';
  font-size: 14px;
  line-height: 1;
  transition: all 0.3s;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul li a::after {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #ffbb80;
  margin-top: 6px;
  transition: all 0.3s;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul li a:hover {
  color: #ff7f14;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul li a:hover::after {
  width: 100%;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item .nav-content ul li.strong a {
  background-image: url(../images/orange-fire.png);
  background-position: left calc(100% - 11px);
  background-repeat: no-repeat;
  background-size: 15px 17px;
}
.header .header-container nav ul.content li.first-nav .sec-nav-content .content .right-sec-nav-content .content-item.active {
  display: block;
}
.header .header-container .search {
  display: flex;
  align-items: center;
}
.header .header-container .search input {
  width: 140px;
  height: 30px;
  line-height: 30px;
  background-color: #e8e8e8;
  font-size: 14px;
  padding: 0 12px;
  color: #999;
  font-family: '微软雅黑';
  border-radius: 5px 0 0 5px;
}
.header .header-container .search input::placeholder {
  font-size: 12px;
  color: #b1b1b1;
  opacity: 1;
}
.header .header-container .search button {
  width: 46px;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  background: url("../images/ico_search.png") center center / auto 20px no-repeat, linear-gradient(90deg, #ffbb80 0%, #ff7f14 100%) #ff7f14;;
  border: none;
  cursor: pointer;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 0 50px 50px 0;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.2s ease-in-out;
  -moz-transition: All 0.2s ease-in-out;
  -o-transition: All 0.2s ease-in-out;
}

main #swiper-container-banner .swiper-slide img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/*网站底部*/
.foot_bg {
  padding: 30px 0;
  background: #ddd;
  color: #333;
}
.foot_bg .footul {
  width: 1000px;
  margin: auto;
  text-align: center;
  font-size: 12px;
}
.foot_bg .footul li {
  padding: 5px 0;
}
.foot_bg .footul .a {
  display: inline-block;
  margin: 0 4px;
  color: #333;
}
.foot_bg .footul img{
  vertical-align: middle;
}
.foot_bg .footul .foot_auth{
  padding:12px 0;
}
.foot_bg .footul .foot_auth .a{
  margin:0 10px;
  padding:5px 15px;
  background-color:#fff;
  border-radius:5px;
}
.foot_bg .footul .foot_auth a img{
  float:left;
  height:40px;
  margin-right:6px;
}
.foot_bg .footul .foot_auth .txt{
  float:left;
  text-align:left;
  line-height:20px;
}
.foot_bg .footul li a{
  color: #333;
}
.foot_bg .footul li a:hover {
  color: #ff7f14;
}

.banner {
  width: 100%;
}
.banner img {
  display: block;
  margin: 0 auto;
}
.title {
  text-align: center;
}
.title h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
}
.title h3::before,
.title h3::after {
  display: block;
  content: '';
  width: 35px;
  height: 11px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.title h3::before {
  background-image: url(../images/title-left-icon.png);
  margin-right: 15px;
}
.title h3::after {
  background-image: url(../images/title-right-icon.png);
  margin-left: 15px;
}
.title h6 {
  font-size: 18px;
  color: #666;
  margin-top: 17px;
}
.common-contact p.tel {
  font-size: 20px;
  text-align: center;
  color: #666;
}
/*.common-contact a.common-btn,
.assess .assess-content #tijiao {
  display: block;
  width: 300px;
  height: 50px;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
  border-radius: 30px;
  background: #ff7f14 linear-gradient(to bottom, #ffbb80 0%, #ff7f14 100%);
  color: #fff;
  margin: 0 auto;
  margin-top: 30px;
  transition: all 0.3s;
}*/
.common-contact a.common-btn,
.market-bg a.common-btn,
.assess .assess-content #tijiao
{
  display: block;
  width: 300px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  margin-top: 30px;
  background: #ff7f14 url(../images/btn_bg.png) no-repeat center center / 100% 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.2s ease-in-out;
  -moz-transition: All 0.2s ease-in-out;
  -o-transition: All 0.2s ease-in-out;
  cursor: pointer;
}
.common-contact a.common-btn:hover,
.market-bg a.common-btn:hover,
.assess .assess-content #tijiao:hover {
  color: #fff;
  transform:translateY(-2%);
  box-shadow:6px 6px 10px rgba(0,0,0,.2);
}
.common-contact a.common-btn:active,
.market-bg a.common-btn:active,
.assess .assess-content #tijiao:active {
  opacity:.8;
}
.square-btn {
  display: block;
  width: 98px;
  height: 36px;
  font-size: 16px;
  text-align: center;
  line-height: 34px;
  color: #ff9340;
  border: 1px solid #ff9340;
  border-radius: 20px;
}
.square-btn.center {
  margin: 0 auto;
}
.market-bg {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg,#ffd1a9,#ff9340,#ffa865,#ffcb9f);
}
.market-bg .container .info{
  width: 700px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 25px;
  float: left;
}
.market-bg .info h2 {
  font-family: 'SourceHanSansCN-Bold';
  font-size: 24px;
  line-height: 45px;
  color: #fff;
  padding-left: 12px;
  width: 100%;
}
.market-bg .info h2:nth-of-type(3) {
  margin-left: 152px;
}
.market-bg .info h2 span {
  font-size: 30px;
  font-weight: bold;
  color: #ffd179;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  margin-right: 6px;
}
.market-bg .info.gszc h2{
  font-size: 26px;
}
.market-bg .info.gszc h2:nth-of-type(2) {
  margin-left: 52px;
}
.market-bg .info.gszc h2:nth-of-type(3) {
  margin-left: 104px;
}

.market-bg .info a {
  margin: 8px 0 0 235px;
  display: inline-block;
}
.market-bg .info a.common-btn {
  width: 200px;
  height: 42px;
  line-height: 40px;
  border-radius: 30px;
  border: 1px solid #ffcb9f;
}
.market-bg .container .right-img {
    width: 270px;
    margin: 20px 20px auto auto;
    float: right;
}
.market-bg .container .right-img img {
    width: 100%;
    display: block;
}
.market-bg.hide-bg {
  width: 100%;
  text-align: center;
  background-image: none;
  height: auto;
  padding-top: 0px;
}
.why-select {
  padding-top: 44px;
  padding-bottom: 32px;
  background-color: #fdf6ee;
}
.why-select .content {
  margin-top: 22px;
}
.why-select .content ul.list {
  width: 785px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 9px;
}
.why-select .content ul.list li {
  width: calc(50% - 12px);
  height: 105px;
  margin-right: 24px;
  padding: 0 10px;
  padding-top: 24px;
  display: flex;
  background-color: #fff;
  border-radius: 15px;
}
.why-select .content ul.list li:nth-child(n + 3) {
  margin-top: 14px;
}
.why-select .content ul.list li:nth-child(2n) {
  margin-right: 0;
}
.why-select .content ul.list li .icon {
  width: 56px;
  height: 56px;
  margin-right: 25px;
}
.why-select .content ul.list li .icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.why-select .content ul.list li .info {
  width: calc(100% - 81px);
}
.why-select .content ul.list li .info h5 {
  font-size: 20px;
  color: #333;
  margin-bottom: 14px;
}
.why-select .content ul.list li .info p {
  font-size: 18px;
  font-family: 'SourceHanSansCN-Regular';
  color: #999;
}
.why-select .content .right-img {
  width: 250px;
  margin-left: auto;
  margin-right: 20px;
}
.why-select .content .right-img img {
  width: 100%;
  display: block;
}
.company {
  padding-top: 69px;
  padding-bottom: 85px;
}
.company .company-content {
  margin-top: 36px;
}
.company .company-content ul li {
  display: flex;
  margin-bottom: 16px;
}
.company .company-content ul li:last-child {
  margin-bottom: 0;
}
.company .company-content ul li .item-td {
  width: calc(20% - 17.6px);
  border: 1px solid #d1c9c9;
  border-radius: 10px;
  padding: 5px;
  margin-right: 22px;
}
.company .company-content ul li .item-td:last-child {
  margin-right: 0;
}
.company .company-content ul li .item-td img {
  display: block;
  max-width: 80%;
  max-height: 100%;
  margin: 0 auto;
}
/*底部表单提交*/
.assess {
  padding-top: 36px;
  padding-bottom: 24px;
  background-color: #fff9f6;
}
.assess .assess-content {
  position: relative;
  padding-top: 20px;
  font-family: 'SourceHanSansCN-Regular';
}
.assess .assess-content .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}
.assess .assess-content .content .input-wrapper {
  position: relative;
  width: 320px;
}
.assess .assess-content .content input {
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid #999;
  border-radius: 20px;
  padding-left: 35px;
  font-size: 16px;
  color: #333;
  background-color: transparent;
  box-sizing: border-box;
}
.assess .assess-content .content input.ico_city {
  background: url(../images/ico_city.png) no-repeat left 8px center / 22px 22px;
}
.assess .assess-content .content input.ico_item {
  background: url(../images/ico_item.png) no-repeat left 8px center / 22px 22px;
}
.assess .assess-content .content input.ico_phone {
  background: url(../images/ico_phone.png) no-repeat left 8px center / 22px 22px;
}
.assess .assess-content .content input::placeholder {
  color: #999;
}
.assess .assess-content .content input.error {
  border-color: #e50000;
}
.assess .assess-content .content .input-error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: #e50000;
  font-size: 12px;
  padding: 4px 28px;
  margin-top: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 1;
}
.assess .assess-content .content .input-error.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.assess .assess-content button {
  display: block;
  margin: 0 auto;
  margin-top: 18px;
  width: 320px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  background-color: #ff7f14;
  border-radius: 32px;
  cursor: pointer;
}
.assess .assess-content .login .form-group {
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assess .assess-content .login .form-group input[type="checkbox"],
.assess .assess-content .login .form-group a {
  vertical-align: middle;
  margin: 0 5px 0 0;
}
/* 协议复选框错误样式 */
.form-group.error {
  animation: shake 0.5s ease-in-out;
}
.form-group.error span {
  color: #e50000;
}
.form-group.error input[type="checkbox"] {
  outline: 2px solid #e50000;
  outline-offset: 2px;
}
/* 添加轻微震动动画 */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}
.why-select h3,
.company h3,
.assess h3,
.why-select h6,
.company h6,
.assess h6 {
  font-family: 'SourceHanSansCN-Medium' !important;
}
/*新加banner新式*/
main .top_banner {
  background: linear-gradient(135deg, #fef1e0, #ffddb3, #fdd4a1, #ffdcb1);
  height: 550px;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  min-width: 1200px;
}
main .top_banner .banner_info {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 0 60px;
}
main .top_banner .banner_info > h2 {
  font-size: 32px;
  color: #ff6b00;
  margin: 100px 0 20px 0;
  opacity: 0;
  animation: fadeInUp 0.8s 0.1s ease forwards;
}
main .top_banner .banner_info > h1 {
  font-size: 54px;
  font-weight: 700;
  color: #ff6b00;
  line-height: 75px;
  margin-bottom: 10px;
  font-family: PingFangSC-Semibold, PingFang SC;
  text-shadow: 1px 1px 0px #fff, 2px 2px 2px rgba(255, 107, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s ease forwards;
}
main .top_banner .banner_info > p {
  font-size: 20px;
  color: #ff6b00;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s ease forwards;
}
main .top_banner .banner_info .illustrate {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 40px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s ease forwards;
}
main .top_banner .banner_info .illustrate > div {
  padding: 6px 16px;
  font-size: 16px;
  color: #ff6b00;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  border: 1px solid rgba(255, 107, 0, 0.3);
}
main .top_banner .banner_info .btn {
  display: inline-block;
  padding: 12px 50px;
  background: #ffffff;
  color: #ff7f14;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 127, 20, 0.15);
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s ease forwards;
}
main .top_banner .banner_info .btn:hover {
  background: #fff8f2;
  color: #ff6b00;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 107, 0, 0.2);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/*end*/
.inner-intro-classify .container {
  position: relative;
}
.inner-intro-classify ul.content {
  width: 100%;
  align-items: center;
  transform: translateY(-70px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.inner-intro-classify ul.content li {
  flex: 1;
  height: 105px;
  margin-right: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 0 21px 0 rgba(255, 147, 64, 0.13);
}
.inner-intro-classify ul.content li:last-child {
  margin-right: 0;
}
.inner-intro-classify ul.content li .icon {
  width: auto;
  height: 53px;
  margin-right: 23px;
}
.inner-intro-classify ul.content li .icon img {
  width: 100%;
  height: 100%;
}
.inner-intro-classify ul.content li .info {
  text-align: center;
  width: auto;
}
.inner-intro-classify ul.content li .info h5 {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: 'SourceHanSansCN-Bold';
  color: #ff7f14;
}
.inner-intro-classify ul.content li .info p {
  font-size: 18px;
  line-height: 20px;
  color: #999;
  font-family: 'SourceHanSansCN-Regular';
}
a.handle-btn {
  width: 462px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'SourceHanSansCN-Regular';
  font-size: 18px;
  border: 1px solid #ff7f14;
  border-radius: 26px;
  margin: 0 auto;
  background: #fff;
}
a.handle-btn span.zx-info {
  display: block;
  width: calc(100% - 190px);
  text-align: center;
  color: #666;
}
a.handle-btn span.zx-btn {
  display: block;
  width: 190px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  background: #ff7f14 url(../images/btn_bg.png) no-repeat center center / 100% 100%;
  transform: translateX(1px);
}
.process {
  padding-top: 43px;
  padding-bottom: 45px;
  background: linear-gradient(135deg,#fff9f6,#fff4f0,#fff3e8,#fff9f3);
}
.process .title h6 {
  color: #494949;
  font-size: 16px;
}
.process ul.content {
  margin-top: 30px;
}
.process ul.content li {
  flex: 1;
  margin-right: 19px;
  position: relative;
}
.process ul.content li img {
  width: 100%;
  display: block;
}
.process ul.content li:last-child {
  margin-right: 0;
}
.process ul.content li::after {
  display: block;
  content: '';
  width: 100%;
  height: 160px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(255, 127, 20, 0.4);
}
.process ul.content li .info {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.process ul.content li .info h5 {
  font-size: 20px;
  color: #666;
  margin-bottom: 13px;
}
.process ul.content li .info p {
  font-size: 16px;
  line-height: 20px;
  color: #666;
}
.process a.handle-btn {
  margin-top: 40px;
}
.need {
  padding-top: 67px;
  padding-bottom: 84px;
}
.need .title h3 {
  letter-spacing: 1px;
}
.need .content {
  margin-top: 35px;
}
.need .content li {
  flex: 1;
  margin-right: 19px;
  box-shadow: 0 3px 18px 0 rgba(255, 127, 20, 0.23);
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 24px;
}
.need .content li:last-child {
  margin-right: 0;
}
.need .content li a,
.need .content li img {
  display: block;
  width: 100%;
}
.need .content li img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.need .content li h3 {
  margin-top: 22px;
  text-align: center;
  font-family: 'MFLiHei-Noncommercial';
  font-size: 20px;
  line-height: 1;
  color: #666;
}
.need .content li h3::after {
  display: block;
  content: '';
  width: 25px;
  height: 5px;
  border: 4px;
  background-color: #ff9340;
  margin: 0 auto;
  margin-top: 6px;
}
.pagination-content {
  margin-top: 40px;
}
.pagination-content ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: '微软雅黑';
}
.pagination-content ul.pagination li {
  margin-right: 5px;
}
.pagination-content ul.pagination li a,
.pagination-content ul.pagination li span {
  display: inline-block;
  font-size: 16px;
  color: #333333;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s;
}
.pagination-content ul.pagination li a:hover,
.pagination-content ul.pagination li span:hover {
  color: #fff;
  background-color: #ff7f14;
  border-color: #ff7f14;
}
.pagination-content ul.pagination li:last-child {
  margin-right: 0;
}
.pagination-content ul.pagination li.active a,
.pagination-content ul.pagination li.active span {
  color: #fff;
  background-color: #ff7f14;
  border-color: #ff7f14;
}
.pagination-content ul.pagination li.first-page a,
.pagination-content ul.pagination li.last-page a,
.pagination-content ul.pagination li.first-page span,
.pagination-content ul.pagination li.last-page span {
  padding: 6px 18px;
}
#imgmasking {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.imgpre {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.showimgcontent {
  /*width: 700px;*/
  /* height: 660px; */
  max-width: 700px;
  width: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#showimg {
  min-width: 600px;
  max-width: 1200px;
  max-height: 800px;
  /* height: 660px; */
}
#zstip {
  display: none;
}
.imgmasking-back {
  width: 30px;
  height: 30px;
  background-color: #777777;
  position: absolute;
  top: -10px;
  right: -10px;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 3px solid #fff;
  cursor: pointer;
  font-size: 18px;
  color: #FFFFFF;
}
@media (min-width: 1920px) {
  .banner img {
    height: 486px;
  }
}
/*用户隐私协议*/
.agreement {
    color: #666;
    width: 1200px;
    margin: 30px auto 50px auto;
}
.agreement h4, .agreement .title h3 {
   font-size: 16px;
   font-weight: 700;
   line-height: 60px;
   color: #666;
}
.agreement .title h3 {
    font-size: 20px;
}
.agreement p{
    font-size: 16px;
    line-height: 26px;
}