#m_header {
  display: none;
}
.hearder{
    position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.hearder.on{
  animation-name: down;
  animation-duration: 1s;
  position: fixed;
 
}

.header-top{
background-color: #333;
color: #fff;
padding:10px 30px;
box-sizing: border-box;
}
.header-top a{
  color: #fff;
}
.header-top img{
  width: 24px;
  height: 24px;
  margin-right:0;
}
.header-top .item{
 margin-left: 10px;
 cursor: pointer;
}
.header-top .item span.inline{
  margin: 0 10px;

}
.hearder-nav {
  padding: 0 40px;
  height: 60px;


  line-height: 60px;
}

.hearder.on .hearder-nav {

  background: #fff;
  border-bottom: none;
}

.hearder-nav .logo {
  height: 47px;
}
.hearder-nav .logo img{
  width: 60%;
}
.hearder-nav .navbar {
  margin-left: 10px;
}

.hearder-nav .navbar li {
  font-size: 15px;
  line-height: 60px;
}


.hearder-nav .navbar li.on {
  border-bottom: 2px #555A5F solid;
}

.hearder-nav .nav-search {
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
}

.hearder-nav .nav-search img {
  width: 70%;
  height: 70%;
}

.hearder-nav .inline-nav {
  width: 2px;
  height: 25px;
  background-color: #757D87;
  margin-left: 10px;
}

.nav-language {
  margin-left: 10px;
  position: relative;
}

.nav-language img {
  width: 31px;
  height: 25px;
  margin-right: 5px;
}

.nav-language .nav-language-m {
  position: absolute;
  top: 60px;
  width: 130px;
  left: -30px;
  background-color: #fff;
  display: none;
}

.nav-language .nav-language-m .li {
  border-bottom: 1px #E8EEF3 solid;
padding:12px 8px;
  line-height: 14px;
  cursor: pointer;
}

.nav-language .nav-language-m .li img {
  width: 24px;
  height: 20px;
}

.nav-language .nav-language-m .li div {
  font-size: 14px;
  margin-left: 2px;
}

.hearder-nav .nav-menu {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

.hearder-nav .nav-menu img {
  width: 100%;
  height: 100%;
}

.hearder.hearder-ather .hearder-nav .navbar li a{
  font-size: 15px;
  line-height: 60px;
  color: #fff;
}

.hearder.hearder-ather .hearder-nav .navbar li.on {
  border-bottom: 2px #fff solid;
}
.hearder.hearder-ather .hearder-nav .inline-nav {
  width: 2px;
  height: 25px;
  background-color: #fff;
  margin-left: 10px;
}
.hearder.hearder-ather .hearder-nav .nav-language .language-s{
  color: #fff;
}

.hearder.hearder-ather .hearder-nav.on .navbar li a{
  font-size: 15px;
  line-height: 60px;
  color: #333;
}

.hearder.hearder-ather .hearder-nav.on .navbar li.on {
  border-bottom: 2px #757D87 solid;
}
.hearder.hearder-ather .hearder-nav.on .inline-nav {
  width: 2px;
  height: 25px;
  background-color: #333;
  margin-left: 10px;
}
.hearder.hearder-ather .hearder-nav.on .nav-language .language-s{
  color: #333;
}

.search-box {
  background:#f1f1f1;
  height: 40px;
  position: absolute;
  top: 52px;
  left: -150px;
  display: none;

  z-index: 99999;
  color:#333;
  width: 240px;
  padding:0 10px;
 
}
.search-box .in{
  height: 40px;
  color: #333;
  width: calc(240px - 40px);
}

.search-box .in::-webkit-input-placeholder {
  color: #333;
}
.search-box .in:-moz-placeholder {
  /* FF 4-18 */
  color: #333;
}
.search-box .in::-moz-placeholder {
  /* FF 19+ */
  color: #333;
}
.search-box .in:-ms-input-placeholder {
  /* IE 10+ */
  color: #333;
}
.search-box .sub{
  width: 40px;
  height: 40px;
  background: url(../images/i3.png) no-repeat center center;
  background-size: 70% 70%;
}


.menu-box {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 99999;
  width: 100%;
  bottom: 0;
  display: flex;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  transform-origin: bottom center;
  transform: scaleY(0);
  transition: transform .3s .5s;
}

.menu-box.active {
  transform-origin: top center;
  transform: scaleY(1);
  transition: transform .3s;
}

.menu-close {
  position: fixed;
  top: 30px;
  right: 60px;
  cursor: pointer;
}

.menu-close i {
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid;
  border-color: #2b6fa0;
  position: absolute;
  transition: ease .65s;
}

.menu-close:hover i {
  border-radius: 10px;
}

.menu-close:hover i::before {
  width: 26px;
  transform: translate(-50%, -50%) rotate(35deg);
}

.menu-close:hover i::after {
  width: 26px;
  transform: translate(-50%, -50%) rotate(-35deg);
}

.menu-close i:before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #2b6fa0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: ease .65s;
}

.menu-close i:after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #2b6fa0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: ease .65s;
}

.menu-box .menu-main {
  width: 800px;
  margin: 0 auto 8% auto;
  padding: 45px 5vw 30px;
  position: relative;
}

.menu-box .menu-logo {
  width: auto;
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  background: #fff;
  z-index: 1;
  padding: 0 10px;
}

.menu-box .menu-logo img {
  max-height: 100px;
}

.menu-box .menu-nav {
  margin: 45px auto 0;
  max-height: 45vh;
  overflow: hidden;
}

.menu-box .menu-nav dl {
  float: left;
  flex: 1;
  padding-left: 5%;
  overflow: auto;
  max-height: 45vh;
}

.menu-box .menu-nav dl dt {
  position: relative;
  margin-bottom: 40px;
  padding-left: 5px;
}

.menu-box .menu-nav dl dt a {
  font-size: 20px;
  color: #2b6fa0;
  position: relative;
}

.menu-box .menu-nav dl dt a span {
  color: #2b6fa0 !important;
  font-size: 14px !important;
}

.menu-box .menu-nav dl dt a:after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #222222;
  background: #fabe00;
  position: absolute;
  left: 50%;
  bottom: -18px;
  margin-left: -10px;
  transition: ease .65s;
}

.menu-box .menu-nav dl dt a:hover:after {
  background: #2b6fa0;
  width: 100%;
  left: 0;
  margin-left: 0;
}

.menu-box .menu-nav dl dd {
  position: relative;
  transition: ease .65s;
  margin-bottom: 5px;
}

.menu-box .menu-nav dl dd a {
  color: #222222;
  padding: 2px 5px 2px 15px;
  display: inline-block;
}

.menu-box .menu-nav dl dd:before {
  content: '';
  display: block;
  width: 6px;
  height: 1px;
  background: #2b6fa0;
  position: absolute;
  left: 5px;
  top: 50%;
  transition: ease .65s;
}

.menu-box .menu-nav dl dd:hover:before {
  background: #fff;
}

.menu-box .menu-nav dl dd:hover a {
  background: #2b6fa0;
  color: #ffffff;
}

.menu-box .menu-nav dl dd:hover a span {
  color: #ffffff !important;
}

.menu-box .menu-cont {
  width: 100%;
  margin: auto;
}

.menu-box .menu-r {
  margin-top: 20px;
}

.menu-box.active .menu-line:before {
  content: '';
  display: block;
  width: 0;
  height: 8px;
  background: #2b6fa0;
  position: absolute;
  right: 50%;
  top: 0;
  animation: mapLine linear 1.2s;
  animation-fill-mode: forwards;
}

.menu-box.active .menu-line:after {
  content: '';
  display: block;
  width: 50%;
  height: 8px;
  background: #2b6fa0;
  position: absolute;
  left: 50%;
  top: 0;
  animation: mapLine linear 1.2s;
  animation-fill-mode: forwards;
}

.menu-box.active .menu-line i:before {
  content: '';
  display: block;
  width: 8px;
  height: 0;
  background: #2b6fa0;
  position: absolute;
  left: 0;
  top: 8px;
  animation: mapLine1 linear 1.2s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

.menu-box.active .menu-line i:after {
  content: '';
  display: block;
  width: 8px;
  height: 0;
  background: #2b6fa0;
  position: absolute;
  right: 0;
  top: 8px;
  animation: mapLine1 linear 1.2s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

.menu-box.active .menu-line span:before {
  content: '';
  display: block;
  width: 0;
  height: 8px;
  background: #2b6fa0;
  position: absolute;
  left: 0;
  bottom: -8px;
  animation: mapLine linear 1.2s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s;
}

.menu-box.active .menu-line span:after {
  content: '';
  display: block;
  width: 0;
  height: 8px;
  background: #2b6fa0;
  position: absolute;
  right: 0;
  bottom: -8px;
  animation: mapLine linear 1.2s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s;
}

/* 手机和平板布局*/
@media only screen and (max-width: 1024px) {

  /* header */
  #header {
    display: none;
  }

.header-top .left{
display: none;
}
  .header1 {
    height: 60px;
    border-bottom: none;
    padding: 0 4%;
    box-sizing: border-box;
  }

  .mobile_web_name {
    display: block;
    color: #231815;
    font-weight: bolder;
    line-height: 50px;
    padding-left: 11px;
    float: left;
  }

  .header2,
  .header2_right {
    display: none;
  }

  .mobile_nav {
    display: block;
    width: 25px;
    height: 20px;
    margin-top: 15px;
    position: absolute;
    z-index: 999;
    right: 25px;
  }

  .mobile_nav.active {
    display: block;
    width: 25px;
    height: 20px;
    margin-top: 15px;
    position: fixed;
    z-index: 9999999999;
    right: 25px;
  }

  #m_header {
    display: block;
    width: 100%;
    background: #fff;
    height: 60px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 600;
    font-size: 12px;
  }

  .m_height50 {
    height: 60px;
    display: block;
  }

  .m_select {
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    display: inline-block;
    width: 30%;
    height: 40px;
    position: relative;
    border-bottom: 1px #fff solid;

  }

  .m_select select {
    color: #fff;
    border: none;
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding-left: 30%;
  }

  .m_select:after {
    content: "";
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    right: 5%;
    top: 47%;
    pointer-events: none;

  }

  .m_selec option {
    color: #333;
    background-color: transparent;
  }

  .logo {
    width: 205px;
    background-size: 100%;
    margin: 0;
    display: block;
  }

  .logo img {
    width: 100%;
    height: 30px;
    margin-top: 15px;
  }

  .mobile_nav div.visual {
    position: relative;
    margin-left: 4px;
    width: 32px;
    height: 30px;
    z-index: 99;
  }

  .mobile_nav div.visual i.line {
    width: 100%;
    height: 3px;
    background-color: #333;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: block;
    position: absolute;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .mobile_nav div.visual i.line.line01 {
    top: 10px;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition-delay: 210ms;
    -o-transition-delay: 210ms;
    -webkit-transition-delay: 210ms;
    transition-delay: 210ms;
  }

  .mobile_nav div.visual i.line.line02 {
    top: 20px;
    -moz-transition-delay: 140ms;
    -o-transition-delay: 140ms;
    -webkit-transition-delay: 140ms;
    transition-delay: 140ms;
  }

  .mobile_nav .menu-activator div.visual i.line.line03 {
    top: 22px;
    -moz-transition-delay: 70ms;
    -o-transition-delay: 70ms;
    -webkit-transition-delay: 70ms;
    transition-delay: 70ms;
  }

  .mobile_nav div.visual i.line.line04 {
    top: 30px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .mobile_nav.active div.visual i.line.line01,
  .mobile_nav.active div.visual i.line.line02,
  .mobile_nav.active div.visual i.line.line03,
  .mobile_nav.active div.visual i.line.line04 {
    background-color: #fff;
    -moz-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .mobile_nav.active div.visual i.line:nth-child(1),
  .mobile_nav.active div.visual i.line:nth-child(3) {
    top: 16px;
  }

  .mobile_nav.active div.visual i.line:nth-child(2),
  .mobile_nav.active div.visual i.line:nth-child(4) {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  .mobile_nav.active div.visual i.line:nth-child(1) {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .mobile_nav.active div.visual i.line:nth-child(3) {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .mobile_subnav {
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.8) !important;
    position: fixed;
    z-index: 9999999;
    right: 0;
    top: 0;
    opacity: 0;
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
    border-radius: 100% 0 100% 100%;
  }

  .mobile_subnav.active {
    width: 100%;
    right: 0;
    opacity: 1;
    height: 100%;
    border-radius: 0;
  }

  .mobile_subnav1 {
    width: 100%;
    overflow-y: scroll;
    margin: 80px 0 0 0;
  }

  .mobile_subnav1 ul,
  .mobile_subnav1 li a {
    display: block;
    line-height: 37px;
    padding-top: 4px;
    color: #fff;
    text-align: center;
    font-size: 16px;
  }

  .mobile_subnav1 li i {
    display: block;
    width: 7px;
    height: 11px;
    background: url(../images/mobile/arrow11.png) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 17px;
    right: -1px;
    display: none;
  }

  .mobile_subnav1 li .mobile_subnav2 {
    display: none;
  }

  .mobile_subnav1 li .mobile_subnav2 a {
    font-size: 12px;
    line-height: 28px;
  }

  .mobile_search_main {
    padding: 20px 4%;
    width: 92%;
    position: relative;
    z-index: 500;
    background: rgba(0, 17, 34, 0.8);
    display: none;
  }

  .mobile_search_main .main {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 0 10px 0px #55708f;
    -webkit-box-shadow: 0 0 10px 0px #55708f;
    box-shadow: 0 0 10px 0px #55708f;
    overflow: hidden;
  }

  .mobile_search_main .text {
    width: 85%;
    float: left;
    height: 40px;
    color: #333;
    background: none;
    border: none;
    text-indent: 20px;
  }

  .mobile_search_main .btn {
    width: 15%;
    height: 40px;
    float: right;
    background: url(../images/header_search.png) center no-repeat;
    background-size: 20px;
    border: none;
  }

.mobile_footer{
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
   color:#fff;
   padding: 10px 0;
   width: 100%;
}
.mobile_footer a{
  color:#fff;
  font-size: 16px;
  padding:0 15px;
}
}


@keyframes mapLine {
  0% {
    width: 0
  }

  100% {
    width: 50%
  }
}

@keyframes mapLine1 {
  0% {
    height: 0
  }

  100% {
    height: 100%
  }
}

@keyframes down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.footer {
  background: #333;
}

.footer .footer-top {
  box-sizing: border-box;
  background-color: #000;
  padding: 30px 0;
 
}
.footer .footer-txt h1 {
  font-size: 24px;
  color: #fff;

}
.footer .footer-txt p {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}


.footer .footer-top .footer-sreach {
  background: #4E4E4E;
  width: 380px;
  height: 40px;
  padding-left: 20px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}
.footer .footer-top .footer-sreach input{
  color: #fff;
}
.footer .footer-top .footer-sreach .btn {
  width: 60px;
  background-color: #FFFFFF;
  border: none;
  color: #181818;
  border-radius: 10px;
}

@media (max-width: 767px) {

.footer .footer-top {
    box-sizing: border-box;
    background-color: #000;
    padding: 30px 4%;
}
}

.footer .footer-bottom {
  text-align: center;
  color: #858585;
  padding: 50px 0;
}
.footer .footer-bottom .footer-item{
  text-align: left;
}
.footer .footer-bottom .footer-item .item{
  border: 1px #747374 solid;
  color: #fff;
  margin-bottom: 10px;
  padding: 15px;
  box-sizing: border-box;
  width: 280px;
}
.footer .footer-bottom .footer-item .item img{
  width: 30px;
  height: 30px;
}
.footer .footer-bottom .footer-item .item div{
  font-size: 16px;
  margin-left: 10px;
}
.footer .footer-bottom .footer-item .footer-tit{
  font-size: 18px;
  color: #fff;
}
.footer .footer-bottom .footer-item .footer-nav{
  margin-top: 10px;
}
.footer .footer-bottom .footer-item .footer-nav a{
  color: #fff;
  font-size: 14px;
  display: block;
  padding: 10px 0;
 
}
.footer .footer-bottom .footer-item:nth-child(4){
  color: #fff;
  width: 20%;
  
}
.footer .footer-company{
  color: #fff;
  width: 100%;
}
.footer .footer-company .company_box{
  padding: 20px 0;
}
.footer .footer-company .company_box .company-name,.footer .footer-company .company_box .company-info{
  margin-bottom:5px;
}
.footer .footer-way {
  margin: 40px 0 0 0;
}

.footer .footer-way a {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 22px;
  margin: 0 15px 0 0;
  transition: all 0.6s;
}
.footer .footer-way a:hover{
  transform: scale(1.2);
}

.footer .footer-tip {
  padding: 15px 0;
  border-top: 1px solid #707070;
  background-color:#333;
  color: #fff;
}

.footer .footer-tip a {
  color: #fff;
  margin:0 5px;
}
@media (max-width: 767px) {
  .footer{
    box-sizing: border-box;
    width: 100%;
  }
.footer .footer-bottom{
  padding: 20px;
   box-sizing: border-box;
}
.footer .footer-bottom .footer-item {
   
      width: 100%;
          margin-bottom: 15px;
  }
  .footer .footer-bottom .footer-item:nth-child(2), .footer .footer-bottom .footer-item:nth-child(3){

    width: 50%;
  }
  .footer .footer-way {
    margin: 10px 0 0 0;
}
  .footer .footer-bottom .footer-item:nth-child(4){
  color: #fff;
  width: 100%;
}
  .footer .footer-tip{
     box-sizing: border-box;
  }
  .footer .footer-tip div{
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
}
.red {
  color: #D73D1A;
}

/*在线客服*/
.qq-client {
  position: fixed;
  right: 20px;
  top: 45%;
  margin-top: -80px;
  z-index: 88;
  background-color: #555A5F;
  border-radius: 25px;
  padding: 10px;
}
.qq-client img{
  display: block;
  width: 35px;
  cursor: pointer;
}
.qq-client .mline-box{
  display: none;
  transition: all 0.3s ease;
}
.qq-client .line{
  width: 80%;
  height: 1px;
  background-color: #fff;
  margin: 15px auto;
}
.mask{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.60);
  display: none;
}
.layer-box{
  width: 60%;
  height: 720px;
  position: fixed;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  border-radius: 10px;
  z-index: 9999991;
  background-color: #fff;
  overflow: hidden;
  display: none;
  
}
.layer-box .layer-left,.layer-box .layer-right{
  width: 50%;
height: 100%;

}
.layer-box .layer-left{
  background: url('../images/bj3.jpg') no-repeat top center;
  background-size: cover;
  box-sizing: border-box;
  padding: 80px;
  height: 100%;
}
.layer-box .layer-left h1{
  color: #fff;
  font-size: 22px;
}
.layer-box .layer-left p{
  color: #fff;
  font-size: 14px;
  margin-top: 15px;
}
.layer-box .layer-left .layer-list {
  margin-top: 30px;
}
.layer-box .layer-left .layer-list .item{
  margin-bottom: 20px;
  color: #fff;
}
.layer-box .layer-left .layer-list .item img{
  width: 40px;
  height: 40px;
}
.layer-box .layer-left .layer-list .item div{
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  margin-left: 15px;
}
.layer-box .layer-right .form-box{
  color: #000;
  width: 75%;
  padding: 30px 0;


}
.layer-box .layer-right .form-box h1{
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  
}
.layer-box .layer-right .form-box .txt{
    text-align: center;
    color: #242424;
    font-size: 16px;
}
.layer-box .layer-right .form-box .form-group{
  margin-top: 30px;
  width: 100%;
}
.layer-box .layer-right .form-box .form-group .form-item{
  margin-bottom: 20px;
}
.layer-box .layer-right .form-box .form-group .form-item .form-name{
  color: #242424;
  font-size: 14px;
  margin-bottom: 5px;

}
.layer-box .layer-right .form-box .form-group .form-item input,.layer-box .layer-right .form-box .form-group .form-item select{
  width: 100%;
  border-bottom: 5px solid #1D2974;
background-color: #F1F2F2;
  padding:12px 15px;
  box-sizing: border-box;
  font-size: 16px;
  position: relative;

}
.layer-box .layer-right .form-box .form-group .form-item select{
 background-image: url('../images/i28-2.png');
 background-repeat: no-repeat;
 background-position:98%;
 background-size: 15px;

  

}
.layer-box .layer-right .form-box .btn{
  background-color: #030508;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
    box-sizing: border-box;
}
.layer-box .layer-right .form-box .tips{
  color: #838383;
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
  cursor: pointer;
}
@media (max-width: 767px){
  .layer-box{
    width: 90%;
    height: auto;
  }
    .layer-box .layer-left{
      display: none;

    }
    .layer-box .layer-right{
      width: 100%;

    }
  .layer-box .layer-right .form-box{
    width: 90%;
  }
}
.client-form{
  background-color: #fff;
  width: 40%;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px;
  z-index: 9999991;
  overflow: hidden;
box-sizing: border-box;
display: none;

}
.client-form .client-header{
background-color:#23201F;
color: #fff;
box-sizing: border-box;
padding: 10px 15px;
}
.client-form .client-header .close{

  width: 40px;
  height: 40px;
  background: url(../images/i34.png) no-repeat center center;
  background-size: 100% 100%;
}
.client-form .client-header h1{
  font-size: 18px;
  font-weight:600;
}
.client-form .forms-b{
  text-align: center;

}
.client-form .client-content{
  background-color: #F6F6F6;
  box-sizing: border-box;
  padding: 20px;
  width: 92%;
  margin: 30px auto;

}
.client-form .client-content .client-input{
  margin-bottom: 10px;
  width: 48%;
}
.client-form .client-content .client-input .client-name{
  color: #333;
  font-size: 14px;
  margin-bottom: 5px;
}
.client-form .client-content .client-input .client-name span{
  color: #FE1913;

}
.client-form .client-content .client-input input,.client-form .client-content .client-input select{
   border: 1px solid #C0C0C0;
  width: 100%;
  height: 40px;
  border: 1px solid #C0C0C0;
  background-color: #fff;
  padding: 0 15px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-left: 0;
  
}
.client-form .client-content .client-input select{ 
   background-image: url('../images/i28-2.png');
 background-repeat: no-repeat;
 background-position:98%;
 background-size: 15px;
}
.client-form .client-content .client-item{ 
  width: 100%;
}
.client-form .client-content .client-form-m{ 
  width: 48%;
}
.client-form .client-content .client-form-m .client-input{
  width: 100%;
}
.client-form .client-content .client-textarea{
  width: 48%;
}
.client-form .client-content .client-textarea .client-name{
  color: #333;
  font-size: 14px;
  margin-bottom: 5px;
}
.client-form .client-content .client-textarea .client-name span{ 
  color: #FE1913;
}
.client-form .client-content .client-textarea textarea{ 
    border: 1px solid #C0C0C0;
  background-color: #fff;
  width: 100%;
  height: 123px;
   padding:15px;
  box-sizing: border-box;
  border-radius: 8px;
}
.client-form .client-content .client-input .client-upload{ 
    width: 100%;
    position: relative;
    border: 1px solid #C0C0C0;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 30px 0;
}
.client-form .client-content .client-input .client-upload input{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.client-form .client-content .client-input .client-upload img{
  width: 30px;
  height: 30px;

}
.client-form .client-content .checkboxs {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
}

.client-form .client-content .checkbox-inputs {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width:100%;
  z-index: 1;
}

.client-form .client-content .checkbox-labels {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-right: 8px;
  display: inline-block;
  flex-shrink: 0;
}

.client-form .client-content .checkbox-inputs:checked + .checkbox-labels {
  background-color: #555A5F;
  border-color: #555A5F;
}

.client-form .client-content .checkbox-inputs:checked + .checkbox-labels::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.client-form .client-content .checkbox-texts {
  color: #666;
  user-select: none;
}

.client-form .client-content .checkbox-texts a {
  color: #555A5F;
  text-decoration: none;
}

.client-form .client-content .checkbox-texts a:hover {
  text-decoration: underline;
}

.client-form .client-content .checkbox:hover .checkbox-labels {
  border-color: #555A5F;
}
.client-form .btn{
  width: 120px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #23201F;
  border-radius: 8px;
  margin:15px auto;
  font-size: 14px;
}
@media (max-width: 767px){
  .client-form{
    background-color: #fff;
    width: 95%;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 9999991;
  }

.client-form .client-header {
    box-sizing: border-box;
    padding: 2% 5%;
}
.client-form .client-content {
    padding: 5%;
    width: 92%;
    margin: 5% auto;
}
}

.form-box .checkbox {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
}

.form-box .checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  z-index: 1;
}

.form-box .checkbox-label {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-right: 8px;
  display: inline-block;
  flex-shrink: 0;
}

.form-box .checkbox-input:checked + .checkbox-label {
  background-color: #555A5F;
  border-color: #555A5F;
}

.form-box .checkbox-input:checked + .checkbox-label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-box .checkbox-text {
  color: #666;
  user-select: none;
}

.form-box .checkbox-text a {
  color: #555A5F;
  text-decoration: none;
}

.form-box .checkbox-text a:hover {
  text-decoration: underline;
}

.form-box .checkbox:hover .checkbox-label {
  border-color: #555A5F;
}