@import 'iconfont.css';
@font-face {
  font-family: "iconfont";
  /* Project id 2874806 */
  src: url('./iconfont/iconfont.woff2?t=1635210561214') format('woff2'), url('./iconfont/iconfont.woff?t=1635210561214') format('woff'), url('./iconfont/iconfont.ttf?t=1635210561214') format('truetype');
}
body {
  font-family: "Noto Sans SC", "Microsoft Yahei", "微软雅黑", "Arial";
  font-weight: 400;
  color: #333;
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
:root {
  --blue: #005698;
}
.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}
.w1440 {
  width: 1440px;
  margin: 0 auto;
}
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con {
  display: flex;
  justify-content: center;
}
.header .con .logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 390px;
  height: 90px;
  display: flex;
  align-items: center;
  background: url(../img/logo_bg.png) no-repeat;
  background-size: 100% 100%;
  padding-left: 70px;
}
.header .con .logo a img {
  position: relative;
  top: -6px;
}
.header .con .nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header .con .nav > ul {
  display: flex;
}
.header .con .nav > ul > li {
  margin-left: 50px;
}
.header .con .nav > ul > li h2 {
  position: relative;
  display: flex;
  align-items: center;
}
.header .con .nav > ul > li h2:after {
  content: '\e603';
  font-family: iconfont;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  color: #fff;
  margin-left: 8px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .nav > ul > li h2 a {
  display: block;
  line-height: 90px;
  font-weight: 500;
  color: #f2f3f5;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .nav > ul > li .nav-down {
  position: fixed;
  width: 100%;
  left: 0;
  top: 90px;
  background: rgba(0, 0, 0, 0.1);
  display: none;
  border-top: 1px solid #eee;
}
.header .con .nav > ul > li .nav-down ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0;
}
.header .con .nav > ul > li .nav-down ul li {
  padding: 0 20px;
}
.header .con .nav > ul > li .nav-down ul li a {
  color: #333;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .nav > ul > li .nav-down ul li a:hover {
  color: var(--blue);
}
.header .con .nav > ul > li:hover h2:after {
  color: var(--blue) !important;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.header .con .nav > ul > li:hover h2 a {
  color: var(--blue) !important;
}
.header .con .nav > ul > li:nth-child(3) h2:after {
  display: none;
}
.header .con .nav > ul > li:nth-child(4) h2:after {
  display: none;
}
.header .con .nav > ul > li:nth-child(6) h2:after {
  display: none;
}
.header .con .right {
  display: flex;
  align-items: center;
  position: absolute;
  right: 70px;
  top: 0;
}
.header .con .right .lang {
  position: relative;
}
.header .con .right .lang h2 {
  line-height: 90px;
  cursor: default;
  position: relative;
  overflow: hidden;
  padding-right: 20px;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .lang h2:after {
  content: '\e604';
  font-family: iconfont;
  position: absolute;
  font-size: 14px;
  right: 0;
  top: 2px;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .lang ul {
  position: absolute;
  width: 110%;
  left: -5%;
  top: 90px;
  background: #fff;
  border-top: 1px solid #eee;
  display: none;
}
.header .con .right .lang ul li a {
  display: block;
  color: #333;
  line-height: 44px;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .lang ul li a:hover {
  color: var(--blue);
}
.header .con .right .lang.active h2:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.header .con .right .search {
  cursor: pointer;
  margin-left: 26px;
}
.header .con .right .search span {
  font-size: 20px;
  color: #fff;
  position: relative;
  top: 2px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .mobile-btn {
  display: none;
}
.header .search-list {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
}
.header .search-list .search-box {
  background: #fff;
  padding: 40px 0;
}
.header .search-list .search-box .search-center {
  width: 400px;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
.header .search-list .search-box .search-center input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #ccc;
  padding-right: 40px;
  font-size: 16px;
}
.header .search-list .search-box .search-center span {
  font-size: 20px;
  position: absolute;
  color: #666;
  line-height: 40px;
  right: 0;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .search-list .search-box .search-center span:hover {
  color: var(--blue);
}
.header.active {
  background: #fff;
}
.header.active .con .nav > ul > li h2:after {
  color: #333;
}
.header.active .con .nav > ul > li h2 a {
  color: #333;
}
.header.active .con .nav > ul > li .nav-down {
  background: #fff;
}
.header.active .con .right .lang h2 {
  color: #333;
}
.header.active .con .right .lang h2:after {
  color: #333;
}
.header.active .con .right .lang ul {
  background: #fff;
}
.header.active .con .right .search span {
  color: #333;
}
.footer {
  background: url(../img/footer_bg.jpg) no-repeat;
  background-size: cover;
  padding: 108px 0;
}
.footer .footer-top {
  padding-bottom: 70px;
  border-bottom: 1px solid #2b73b4;
}
.footer .footer-top .con {
  display: flex;
  justify-content: space-between;
}
.footer .footer-top .con .left .tel-list {
  margin-top: 40px;
}
.footer .footer-top .con .left .tel-list .t-wrapper {
    margin-bottom:10px;
}
.footer .footer-top .con .left .tel-list .t-wrapper ul {
  display: flex;
}
.footer .footer-top .con .left .tel-list .t-wrapper ul li {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-top .con .left .tel-list .t-wrapper ul li:not(:last-child) {
  margin-right: 26px;
}
.footer .footer-top .con .left .tel-list .t-wrapper ul li.active {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-top .con .left .tel-list .t-list a {
  display: none;
  color: #fff;
}
.footer .footer-top .con .left .tel-list .t-list a.active {
  display: block;
}
.footer .footer-top .con .left .focus {
  margin-top: 20px;
}
.footer .footer-top .con .left .focus h2 {
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
}
.footer .footer-top .con .left .focus .erweima {
  width: 87px;
  padding: 4px;
  background: #fff;
  margin-top: 10px;
}
.footer .footer-top .con .left .focus .erweima img {
  width: 100%;
}
.footer .footer-top .con .right {
  flex: 1;
  padding-left: 140px;
}
.footer .footer-top .con .right > ul {
  display: flex;
  justify-content: space-between;
}
.footer .footer-top .con .right > ul > li h2 {
  padding-bottom: 24px;
  position: relative;
}
.footer .footer-top .con .right > ul > li h2:after {
  content: '';
  width: 19px;
  height: 3px;
  background: #0174b0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer .footer-top .con .right > ul > li h2 a {
  font-weight: 500;
  color: #fff;
}
.footer .footer-top .con .right > ul > li ul {
  margin-top: 24px;
}
.footer .footer-top .con .right > ul > li ul li {
  margin-top: 10px;
}
.footer .footer-top .con .right > ul > li ul li a {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-top .con .right > ul > li ul li a:hover {
  color: #fff;
}
.footer .footer-bottom {
  padding-top: 50px;
}
.footer .footer-bottom .con {
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom .con .left p {
  color: rgba(255, 255, 255, 0.6);
}
.footer .footer-bottom .con .left p a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-bottom .con .left p a:hover {
  color: #fff;
}
.footer .footer-bottom .con .right {
  display: flex;
}
.footer .footer-bottom .con .right ul {
  display: flex;
  margin-right: 24px;
}
.footer .footer-bottom .con .right ul li {
  padding: 0 10px;
  position: relative;
}
.footer .footer-bottom .con .right ul li:after {
  content: '';
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.footer .footer-bottom .con .right ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-bottom .con .right ul li a:hover {
  color: #fff;
}
.footer .footer-bottom .con .right ul li:first-child {
  padding-left: 0;
}
.footer .footer-bottom .con .right ul li:last-child {
  padding-right: 0;
}
.footer .footer-bottom .con .right ul li:last-child:after {
  display: none;
}
.footer .footer-bottom .con .right p {
  color: rgba(255, 255, 255, 0.6);
}
.footer .footer-bottom .con .right p a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-bottom .con .right p a:hover {
  color: #fff;
}
.inner-banner {
  position: relative;
}
.inner-banner.mask:before{
    display: block;
}
.inner-banner:before{
    content:'';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    position: absolute;
    left:0;
    top:0;
    z-index: 2;
    display: none;
}
.inner-banner img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.inner-banner .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #fff;
  z-index: 3;
}
.inner-banner .text h2 {
  font-weight: 700;
}
.inner-banner .text p {
  width: 490px;
  max-width: 100%;
  line-height: 1.8;
  margin-top: 20px;
}
.inner-banner .bread {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30px;
  z-index: 4;
}
.inner-banner .bread .con {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #fff;
}
.inner-banner .bread .con svg {
  margin-right: 8px;
}
.inner-banner .bread .con svg path {
  fill: #fff;
}
.inner-banner .bread .con span {
  margin: 0 8px;
}
.inner-banner .bread .con a {
  display: flex;
  align-items: center;
  color: #fff;
}
.inner-banner .bread .con h2{
    display:flex;
    align-items: center;
}
.s-title {
  text-align: center;
}
.s-title h2 {
  position: relative;
  padding-bottom: 14px;
  font-weight: 700;
}
.s-title h2:after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--blue);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.s-title p {
  text-align: center;
  width: 800px;
  max-width: 100%;
  margin: 50px auto 0;
  line-height: 1.8;
  color: #666;
}
#videoPopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
#videoPopup .video-box {
  width: 66%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#videoPopup .video-box video {
  width: 100%;
}
#videoPopup .video-box .closes {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
#videoPopup .video-box .closes svg {
  width: 20px;
  height: 20px;
}
#videoPopup .video-box .closes svg path {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
#videoPopup .video-box .closes:hover {
  background: var(--blue);
}
#videoPopup .video-box .closes:hover svg path {
  fill: #fff;
}
@media screen and (max-width: 1600px) {
  .w1440 {
    width: 80%;
  }
  .header .con .logo {
    height: 70px;
    width: 303px;
    padding-left: 50px;
  }
  .header .con .logo a img {
    width: 140px;
  }
  .header .con .nav > ul > li h2 a {
    line-height: 70px;
  }
  .header .con .nav > ul > li .nav-down {
    top: 70px;
  }
  .header .con .right {
    right: 50px;
  }
  .header .con .right .lang h2 {
    line-height: 70px;
  }
  .header .con .right .lang ul {
    top: 70px;
  }
  .footer {
    padding: 5vw 0;
  }
  .footer .footer-top {
    padding-bottom: 3.5vw;
  }
  .footer .footer-top .con .right {
    padding-left: 7vw;
  }
  .footer .footer-bottom {
    padding-top: 2.5vw;
  }
  .s-title p {
    margin: 2.5vw auto 0;
  }
}
@media screen and (max-width: 1440px) {
  .header .con .nav > ul > li {
    margin-left: 40px;
  }
  .header .con .nav > ul > li h2:after {
    font-size: 14px;
  }
  .header .con .nav > ul > li .nav-down ul {
    padding: 22px 0;
  }
}
@media screen and (max-width: 1200px) {
  .w1440 {
    width: 90%;
  }
  .header .con .logo {
    width: 200px;
    padding-left: 30px;
  }
  .header .con .logo a img {
    width: 100px;
    top: 0;
  }
  .header .con .nav > ul > li {
    margin-left: 30px;
  }
  .header .con .right {
    right: 5%;
  }
  .header .con .right .search {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    height: 70px;
  }
  .header .con {
    justify-content: space-between;
  }
  .header .con .nav {
    margin-right: 0;
    position: fixed;
    top: 70px;
    width: 100%;
    background: #fff;
    padding: 0 5% 20px;
    left: auto;
    bottom: 0;
    right: -100%;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
  }
  .header .con .nav > ul {
    display: block;
    width: 100%;
  }
  .header .con .nav > ul > li {
    width: 100%;
    margin-left: 0;
  }
  .header .con .nav > ul > li h2 {
    border-bottom: 1px solid #f2f2f2;
  }
  .header .con .nav > ul > li h2:before {
    display: none;
  }
  .header .con .nav > ul > li h2:after {
    content: '\e603';
    font-family: iconfont;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
  }
  .header .con .nav > ul > li h2 a {
    width: 50%;
    line-height: 50px;
    color: #333;
  }
  .header .con .nav > ul > li h2 a:after {
    display: none;
  }
  .header .con .nav > ul > li .nav-down {
    position: relative;
    top: 0;
    display: none;
    padding: 0;
    background: #fff;
    border-top: none;
  }
  .header .con .nav > ul > li .nav-down ul {
    display: block;
    padding: 0;
  }
  .header .con .nav > ul > li .nav-down ul li {
    width: 100%;
  }
  .header .con .nav > ul > li .nav-down ul li a {
    display: block;
    line-height: 40px;
    color: #666;
    font-weight: normal;
    position: relative;
  }
  .header .con .nav > ul > li .nav-down ul li a:before {
    content: '\e683';
    font-family: iconfont;
    position: absolute;
    font-size: 16px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .header .con .nav > ul > li.active h2:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
  .header .con .nav > ul > li:nth-child(3) h2:after {
    display: block;
    transform: rotate(-90deg) !important;
    -webkit-transform: rotate(-90deg) !important;
    -moz-transform: rotate(-90deg) !important;
    -ms-transform: rotate(-90deg) !important;
  }
  .header .con .nav > ul > li:nth-child(3) h2 a {
    width: 100%!important;
  }
  .header .con .nav > ul > li:nth-child(4) h2:after {
    display: block;
    transform: rotate(-90deg) !important;
    -webkit-transform: rotate(-90deg) !important;
    -moz-transform: rotate(-90deg) !important;
    -ms-transform: rotate(-90deg) !important;
  }
  .header .con .nav > ul > li:nth-child(4) h2 a {
    width: 100%!important;
  }
  .header .con .nav > ul > li:nth-child(6) h2:after {
    display: block;
    transform: rotate(-90deg) !important;
    -webkit-transform: rotate(-90deg) !important;
    -moz-transform: rotate(-90deg) !important;
    -ms-transform: rotate(-90deg) !important;
  }
  .header .con .nav > ul > li:nth-child(6) h2 a {
    width: 100%!important;
  }
  .header .con .nav.active {
    right: 0;
  }
  .header .con .right .search {
    margin-right: 20px;
  }
  .header .con .right .mobile-btn {
    width: 20px;
    height: 70px;
    display: block;
    position: relative;
  }
  .header .con .right .mobile-btn .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 20px;
    height: 40px;
    text-align: center;
    z-index: 11;
    font-size: 0;
    margin: 0 auto;
  }
  .header .con .right .mobile-btn .nav-button div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 20px;
    height: 16px;
  }
  .header .con .right .mobile-btn .nav-button div span {
    width: 100%;
    height: 2px;
    background-color: #000;
    display: block;
    margin: 0 auto;
    line-height: 2px;
    position: static;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
  }
  .header .con .right .mobile-btn .nav-button div span.center-hr {
    margin: 5px auto;
  }
  .header .con .right .mobile-btn .nav-button div span.top-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .header .con .right .mobile-btn .nav-button div span.bottom-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .header .con .right .mobile-btn .nav-button.active div span {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
  }
  .header .con .right .mobile-btn .nav-button.active div span.center-hr {
    display: none;
  }
  .header .con .right .mobile-btn .nav-button.active div span.top-hr {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
  .header .con .right .mobile-btn .nav-button.active div span.bottom-hr {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
  }
  .footer .footer-top .left {
    width: 100%;
    text-align: center;
  }
  .footer .footer-top .left .tel-list .t-wrapper ul {
    justify-content: center;
  }
  .footer .footer-top .left .focus .erweima {
    margin: 10px auto 0;
  }
  .footer .footer-top .right {
    display: none;
  }
  .footer .footer-bottom .con {
    display: block;
    text-align: center;
  }
  .footer .footer-bottom .con .right {
    margin-top: 10px;
    justify-content: center;
  }
  .inner-banner {
    margin-top: 70px;
  }
  .inner-banner .text {
    top: 42%;
  }
  .inner-banner .bread {
    bottom: 20px;
  }
  .inner-banner .bread .con svg {
    position: relative;
    top: 1px;
  }
  #videoPopup .video-box {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .s-title h2 {
    padding-bottom: 12px;
  }
  .s-title h2:after {
    width: 26px;
  }
  .s-title p {
    margin: 20px auto 0;
  }
  .header {
    height: 60px;
  }
  .header .con .logo {
    width: 160px;
    height: 60px;
    padding-left: 24px;
  }
  .header .con .logo a img {
    width: 80px;
  }
  .header .con .nav {
    top: 60px;
  }
  .header .con .right .search span {
    top: 2px;
  }
  .header .con .right .lang h2 {
    line-height: 60px;
  }
  .header .con .right .lang ul {
    top: 60px;
  }
  .header .con .right .mobile-btn {
    height: 60px;
  }
  .footer {
    padding: 40px 0;
  }
  .footer .footer-top {
    padding-bottom: 30px;
  }
  .footer .footer-top .con .left .logo img {
    width: 120px;
  }
  .footer .footer-top .con .left .tel-list .t-wrapper{
      margin-bottom:14px;
  }
  .footer .footer-top .con .left .tel-list {
    margin-top: 30px;
  }
  .footer .footer-top .con .left .tel-list .t-wrapper ul li:not(:last-child) {
    margin-right: 18px;
  }
  .footer .footer-bottom {
    padding-top: 30px;
  }
  .inner-banner {
    height: 250px;
    margin-top: 60px;
  }
  .inner-banner img {
    height: 100%;
    object-fit: cover;
  }
  .inner-banner .text p {
    margin-top: 10px;
    line-height: 1.6;
  }
  #videoPopup .video-box .closes {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
  #videoPopup .video-box .closes svg {
    width: 14px;
    height: 14px;
  }
}

