a {
  text-decoration: none;
  color: #2f2e3f;
}
a:hover {
  text-decoration: none;
  color: #000;
}
body,
html {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: 'SimHei', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
}
/* 去除iphone按钮默认样式代码 */
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder {
  /* Chrome, Opera, Safari */
  color: #d1d1d1;
}
input:-moz-placeholder {
  /* Firefox 18- */
  color: #d1d1d1;
  opacity: 1;
  /* 修复Firefox 18- 的不透明度问题 */
}
input::-moz-placeholder {
  /* Firefox 19+ */
  color: #d1d1d1;
  opacity: 1;
  /* 修复Firefox 19+ 的不透明度问题 */
}
input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d1d1d1;
}
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.w {
  width: 1530px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .w {
    width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1440px) {
  .w {
    width: 1190px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .w {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .w {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .w {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }
}
body,
html {
  overflow-x: hidden;
}
a {
  color: #81868A;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: #051E67;
}
.top-banner {
  width: 100%;
  background: #e0f2fc;
  color: #222;
  font-size: 14px;
  line-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  box-sizing: border-box;
}
.top-banner a {
  color: #000;
}
.top-banner a:hover {
  color: #0071c1;
}
.top-banner_left,
.top-banner_right {
  white-space: nowrap;
}
.top-banner_left {
  float: left;
}
.top-banner_right {
  float: right;
}
@media (max-width: 991px) {
  .top-banner {
    display: none;
  }
}
.nav-bg {
  height: 94px;
  border-bottom: 3px solid #001a64;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-bg::after {
  border-bottom: 4px solid #e0f2fc;
  content: ' ';
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  font-size: 16px;
  position: relative;
  flex-wrap: wrap;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0a2c5c;
}
.nav-logo img {
  margin-right: 20px;
  height: 68px;
}
.nav-logo span {
  display: block;
  color: #000;
  font-size: 14px;
  text-align: justify;
  text-align-last: justify;
}
.nav-menu {
  display: flex;
  align-items: center;
  margin: 0 24px;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
  justify-content: center;
}
.nav-menu > li > a::after {
  content: "";
  display: block;
  margin: 0px auto 0;
  width: 0;
  height: 8px;
  border-radius: 8px;
  background: #e3f5fe;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.nav-menu > li.active > a::after,
.nav-menu > li:hover > a::after {
  width: 100%;
}
.nav-menu li {
  position: relative;
  margin: 0 18px;
}
.nav-menu li a {
  font-family: "PingFang SC";
  color: #888;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
  line-height: 40px;
  transition: color 0.2s;
}
.nav-menu li.active a,
.nav-menu li a:hover {
  color: #0a2c5c;
}
.nav-menu li .dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 120px;
  background: #0071c1;
  box-shadow: 0 12px 12px #0001;
  border-radius: 4px;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  text-align: center;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4, 1.5, 0.5, 1), opacity 0.28s cubic-bezier(0.4, 1.5, 0.5, 1);
}
.nav-menu li .dropdown li {
  margin: 0;
  border-bottom: 1px solid #1180cf;
}
.nav-menu li .dropdown li:last-child {
  border-bottom: none;
}
.nav-menu li .dropdown li a {
  line-height: 30px;
  display: block;
  font-size: 15px;
  color: #e0f2fc;
  transition: all 0.2s ease-in-out;
}
.nav-menu li .dropdown li a:hover {
  background: #1180cf;
  color: #fff;
}
.nav-menu li.has-dropdown:hover .dropdown,
.nav-menu li.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-search-btn {
  background: none;
  border: none;
  margin-right: 12px;
  cursor: pointer;
  border-radius: 50%;
}
.nav-search-form {
  position: absolute;
  right: 0;
  top: 120%;
  background: #fff;
  box-shadow: 0 2px 8px #0001;
  border-radius: 4px;
  z-index: 20;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4, 1.5, 0.5, 1), opacity 0.28s cubic-bezier(0.4, 1.5, 0.5, 1);
}
.nav-search-form input {
  border: none;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 15px;
}
.nav-search-form button {
  background: #0a6ecf;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-search-form.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-phone-btn {
  display: flex;
  align-items: center;
  background: #0a6ecf;
  color: #fff;
  border-radius: 22px;
  padding: 8px 22px;
  font-size: 15px;
  text-decoration: none;
  margin-left: 12px;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-phone-btn img {
  margin-right: 6px;
}
.nav-phone-btn:hover {
  background: #0e86db;
  color: #fff;
}
/* 响应式 */
@media (max-width: 1600px) {
  .main-nav {
    font-size: 14px;
  }
  .nav-menu {
    margin: 0 ;
  }
  .nav-menu li {
    margin: 0 10px;
  }
}
@media (max-width: 1440px) {
  .nav-menu {
    flex: inherit;
  }
  .nav-menu li {
    margin: 0 10px;
  }
  .nav-phone-btn {
    padding: 6px 12px;
    margin-left: 0px;
  }
  .nav-logo img {
    margin-right: 12px;
  }
  .nav-search-btn {
    margin-right: 4px;
  }
  .nav-search-btn img {
    width: 22px;
  }
}
@media (max-width: 1200px) {
  .nav-logo span {
    display: none;
  }
  .main-nav {
    padding: 8px 2vw;
  }
  .nav-logo {
    margin-bottom: 6px;
  }
}
@media (max-width: 991px) {
  .nav-search-btn {
    display: none;
  }
  .nav-phone-btn {
    display: none;
  }
  .nav-logo img {
    margin-right: 8px;
    margin-top: 5px;
    height: 48px;
  }
  .nav-logo span {
    display: inline-block;
  }
  .nav-logo {
    position: absolute;
    left: 20px;
    z-index: 99;
  }
  .nav-menu > li > a::after {
    height: 3px;
    border-radius: 3px;
    bottom: 0;
  }
}
.jzk_toggle_01 {
  display: none;
  width: 26px;
  z-index: 99;
  border-radius: 50%;
  margin: 0 10px;
  position: absolute;
  top: 33px;
  right: 10px;
  cursor: pointer;
  -webkit-transition-duration: 0.66s;
  transition-duration: 0.66s;
  -webkit-transition-timing-function: swing;
  transition-timing-function: swing;
}
.jzk_toggle_01 .jzk_icon_01 {
  width: 26px;
  height: 2px;
  background-color: #0071c1;
  border-radius: 2px;
  position: absolute;
  top: -5px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.jzk_toggle_01 .jzk_icon_01:before,
.jzk_toggle_01 .jzk_icon_01:after {
  width: 26px;
  height: 2px;
  background-color: #0071c1;
  border-radius: 2px;
  content: "";
  margin-left: 0;
  position: absolute;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: swing;
  transition-timing-function: swing;
}
.jzk_toggle_01 .jzk_icon_01:before {
  top: -9px;
}
.jzk_toggle_01 .jzk_icon_01:after {
  top: 9px;
}
.jzk_open .jzk_toggle_01 {
  box-shadow: none;
}
.jzk_open .jzk_toggle_01 .jzk_icon_01:before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.jzk_open .jzk_toggle_01 .jzk_icon_01:after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.jzk_open .jzk_toggle_01 .jzk_icon_01 {
  width: 0;
}
.wap_nav_box {
  transition: opacity 0.3s cubic-bezier(0.4, 1.5, 0.5, 1), transform 0.3s cubic-bezier(0.4, 1.5, 0.5, 1);
  opacity: 0;
  display: none;
  pointer-events: none;
}
.wap_nav_box.open {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .wap_nav_box {
    display: block;
    overflow: hidden;
  }
  .wap_nav_box .nav-menu,
  .wap_nav_box .nav-search-form,
  .wap_nav_box .nav-phone-btn {
    display: block !important;
  }
  .wap_nav_box .nav-menu,
  .wap_nav_box .nav-search-form {
    margin-left: 100%;
  }
  .wap_nav_box .nav-menu {
    float: left;
    width: 100%;
    margin-top: 90px;
    margin-bottom: 30px;
  }
  .wap_nav_box .nav-menu a {
    width: 100%;
    display: inline-block;
  }
  .wap_nav_box .nav-search-form {
    position: initial;
    left: initial;
    right: initial;
    top: initial;
    float: left;
    opacity: 1;
    transform: initial;
    box-shadow: initial;
    width: 100%;
    background: #f1f1f1;
    display: inline-block;
    margin: 0 auto;
    margin-left: 100%;
    margin-bottom: 30px;
  }
  .wap_nav_box .nav-search-form input {
    background: none;
    width: 80%;
  }
  .wap_nav_box .nav-search-form button {
    float: right;
  }
  .wap_nav_box .nav-menu li {
    border-bottom: 1px solid #f1f1f1;
    height: auto;
    overflow: hidden;
    width: 100%;
    float: left;
  }
  .wap_nav_box .nav-menu li .dropdown {
    width: 100%;
    background: none;
    position: initial;
    left: initial;
    right: initial;
    top: initial;
    float: left;
    opacity: 0;
    display: none;
    transform: initial !important;
    box-shadow: initial;
    text-align: left;
    padding-bottom: 8px;
  }
  .wap_nav_box .nav-menu li .dropdown a {
    padding: 3px 0;
    padding-left: 14px;
    color: #000;
    font-size: 14px;
    font-weight: normal;
  }
  .wap_nav_box .nav-menu li .dropdown li {
    border: none;
  }
  .wap_nav_box .nav-menu li.open .dropdown {
    opacity: 1 !important;
  }
  .wap_nav_box .nav-phone-btn {
    position: relative;
    float: right;
    width: auto;
    padding-left: 15px;
    margin-top: 10px;
    padding-bottom: 20px;
    padding-right: 15px;
  }
  .wap_nav_box {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 0.1rem 8% 0.45rem;
    background: #fff;
    background-size: cover;
    overflow-y: auto;
  }
  .wap_nav_box .nav_list {
    position: relative;
    margin-left: 100%;
    display: inline-block;
    width: 100%;
    float: left;
    margin-top: 80px;
    /* 旋转效果 */
  }
  .wap_nav_box .nav_list li {
    margin-left: 0;
    padding: 4px 0;
    margin-bottom: 0 ;
    line-height: 1.4em;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  .wap_nav_box .nav_list li a {
    color: #fff;
    padding: 12px 0;
    display: inline-block;
    width: 100%;
  }
  .wap_nav_box .nav_list .dropdown_menu a::after {
    display: none;
  }
  .wap_nav_box .nav_list .dropdown_menu {
    position: inherit;
    left: inherit;
    background: none;
    transform: inherit;
    box-shadow: inherit;
    padding: 0;
  }
  .wap_nav_box .nav_list .dropdown_menu li {
    margin-left: 0;
    padding: 4px 0;
    line-height: 1.4em;
    border-bottom: inherit;
  }
  .wap_nav_box .nav_list .dropdown_menu li a {
    font-size: 14px;
    padding: 3px 20px;
  }
  .wap_nav_box .search-pop {
    display: block;
    position: relative;
    top: inherit;
    display: inline-block;
    width: 100%;
    margin-top: 12px;
    margin-left: 100%;
    margin-bottom: 30px;
    float: left;
  }
  .jzk_toggle_01 {
    display: block;
    top: 50px;
  }
  .search-group {
    display: none;
  }
  .nav_list {
    display: none;
  }
  .main_nav {
    width: inherit;
  }
  .main_header2 img {
    height: 34px;
  }
  .main_header2 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .nav-bg .w {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .nav-bg {
    z-index: 99;
    background: #fff;
  }
  .nav-logo span {
    display: none;
  }
  .nav-logo img {
    height: 38px;
  }
  .nav-bg {
    height: 64px;
  }
  .jzk_toggle_01 {
    top: 35px;
  }
  .wap_nav_box .nav-phone-btn {
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
    text-align: center;
  }
}
.wap_nav_box .nav-menu li.has-dropdown > a {
  position: relative;
  padding-right: 28px;
}
.wap_nav_box .nav-menu li.has-dropdown > a .dropdown-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 16px;
  height: 16px;
  transition: transform 0.28s cubic-bezier(0.4, 1.5, 0.5, 1);
  display: inline-block;
  line-height: 16px;
}
.wap_nav_box .nav-menu li.has-dropdown.open > a .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}
li.has-dropdown.open > a {
  color: #000;
}
body.jzk_open {
  overflow: hidden !important;
  height: 100vh;
}
.swiper-pagination {
  bottom: 30px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 57px;
  height: 4px;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  margin: 0 6px !important;
  transition: background 0.3s;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #0168b7;
}
@media (max-width: 991px) {
  .swiper-pagination {
    bottom: 20px !important;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 48px;
    height: 3px;
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination {
    bottom: 11px !important;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 38px;
    height: 3px;
    border-radius: 3px;
  }
}
.main-title {
  text-align: center;
  margin-bottom: 40px;
}
.main-title .main-title-cn {
  color: #1D1D1D;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  font-weight: bold;
  margin-top: -50px;
  display: inline-block;
}
.main-title .main-title-en {
  color: #f0f0f0;
  font-size: 123px;
  text-transform: uppercase;
  line-height: 1;
  z-index: 1;
  position: relative;
}
.main-title-cn1 img {
  position: absolute;
  left: -98px;
  bottom: -8px;
}
@media (max-width: 1200px) {
  .main-title-cn1 img {
    position: absolute;
    left: -70px;
    bottom: -8px;
    width: 80px;
  }
  .main-title .main-title-en {
    font-size: 80px;
  }
  .main-title .main-title-cn {
    font-size: 30px;
    margin-top: -30px;
  }
}
@media (max-width: 767px) {
  .main-title-cn1 img {
    position: absolute;
    left: -46px;
    bottom: -4px;
    width: 54px;
  }
  .main-title .main-title-en {
    font-size: 34px;
    height: 30px;
  }
  .main-title .main-title-cn {
    font-size: 22px;
    letter-spacing: 0;
    margin-top: -30px;
  }
}
.ay_index_about_lx {
  padding: 60px 0;
}
.ay_index_about_lx .about-features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin: 0 auto;
}
.ay_index_about_lx .about-feature {
  text-align: center;
  flex: 1;
}
.ay_index_about_lx .about-feature .svg-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
}
.ay_index_about_lx .about-feature .counter {
  font-size: 48px;
  color: #1d1d1d;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1;
}
.ay_index_about_lx .about-feature .feature-label {
  font-size: 18px;
  color: #666;
  margin-top: 8px;
}
.counter-wrap {
  display: inline-block;
  position: relative;
  font-size: 50px;
  font-weight: bold;
  color: #1d1d1d;
  line-height: 1;
}
.counter-wrap .counter {
  font-size: 50px;
  vertical-align: baseline;
}
.counter-wrap .unit {
  font-size: 20px;
  color: #666;
  position: absolute;
  top: 0;
  right: -28px;
  font-weight: normal;
}
.index_about {
  padding: 123px 0;
  background: url(../images/bg1.jpg) no-repeat center top;
}
.more-btn {
  text-align: center;
  padding-bottom: 20px;
}
.more-btn a {
  display: inline-block;
  padding: 0 30px;
  height: 43px;
  line-height: 43px;
  background: #0071c1;
  color: #fff;
  font-size: 14px;
  border-radius: 24px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 113, 193, 0.08);
  transition: background 0.2s;
  cursor: pointer;
}
.more-btn a:hover {
  background: #005fa3;
  color: #fff;
}
.about-desc {
  text-align: center;
  color: #81868A;
  font-size: 18px;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  letter-spacing: 0.5px;
}
@media (max-width: 1200px) {
  .about-desc {
    font-size: 16px;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    padding: 0 20px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 991px) {
  .index_about {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .more-btn a {
    display: inline-block;
    padding: 0 18px;
    height: 33px;
    line-height: 33px;
    border-radius: 17px;
    font-size: 14px;
  }
  .ay_index_about_lx .about-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .ay_index_about_lx {
    padding: 20px 0 40px;
  }
  .ay_index_about_lx .about-feature .feature-label {
    max-width: 130px;
  }
  .ay_index_about_lx .about-feature {
    flex: none;
  }
  .ay_index_about_lx .about-feature .feature-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
  }
  .ay_index_about_lx .about-feature .counter {
    font-size: 28px;
    color: #1d1d1d;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1;
  }
  .counter-wrap .unit {
    font-size: 14px;
    color: #666;
    position: absolute;
    top: 0;
    right: -18px;
    font-weight: normal;
  }
  .counter-wrap {
    font-size: 30px;
  }
  .ay_index_about_lx .about-feature .svg-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
  }
  .ay_index_about_lx .about-feature .svg-icon svg {
    width: 58px;
    height: 58px;
  }
  .main-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .index_about {
    padding: 40px 0 15px;
  }
}
.index-ads {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 40px auto;
}
.index-ad {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.index-ad img {
  width: 100%;
  display: block;
  height: auto;
}
.index-ad i.star-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-ads-swiper {
  margin: 40px auto;
}
.index-ads-swiper .swiper-wrapper {
  align-items: stretch;
}
.index-ads-swiper .index-ad {
  overflow: hidden;
}
.index-ads-swiper .index-ad img {
  width: 100%;
  display: block;
  height: auto;
}
@media (min-width: 768px) {
  .index-ads-swiper .swiper-wrapper {
    gap: 30px;
  }
}
@media (min-width: 991px) {
  .index-ads-swiper .swiper-wrapper {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .index-ads-swiper .swiper-wrapper {
    gap: 0px;
  }
  .index-ads-swiper {
    padding: 0;
    padding-bottom: 38px;
    max-width: 100%;
  }
  .index-ads-swiper .swiper-pagination .swiper-pagination-bullet {
    background: #8bcdff;
  }
  .index-ads-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #0168b7;
  }
  .index-ads-swiper .index-ad {
    margin: 0;
    flex: none;
  }
  .index-ads-swiper .index-ad img {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .index-ads-swiper {
    margin: 40px auto 0;
  }
}
#video-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-modal .video-modal-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
#video-modal .video-modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#video-modal .video-modal-content video {
  width: 60vw;
  max-width: 800px;
  height: auto;
  max-height: 90vh;
  border-radius: 8px;
  background: #000;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
#video-modal .video-modal-content .video-modal-close {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
#video-modal .video-modal-content .video-modal-close:hover {
  background: #ff3b3b;
  color: #fff;
}
@media (max-width: 768px) {
  #video-modal .video-modal-content video {
    width: 90vw;
    max-width: 100vw;
    max-height: 90vh;
  }
}
.advantage-section {
  margin: 0  0 140px;
}
.advantage-section .adv-title {
  text-align: center;
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.2;
  position: relative;
}
.advantage-section .adv-title img {
  position: relative;
  margin-top: -50px;
}
.advantage-section .adv-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin: 0 auto;
}
.advantage-section .adv-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.advantage-section .adv-card {
  border-radius: 16px;
  transition: all 0.2s ease-in-out;
  padding: 32px 30px;
  text-align: left;
  min-height: 160px;
}
.advantage-section .adv-card:hover {
  background: #f7f9fa;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.advantage-section .adv-card .adv-card-title {
  color: #fff;
  height: 36px;
  line-height: 36px;
  padding: 0 26px;
  border-radius: 36px;
  display: inline-block;
  float: left;
  background: #0168b7;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.advantage-section .adv-card .adv-card-desc {
  color: #333;
  font-size: 16px;
  width: 100%;
  line-height: 1.7;
  float: left;
}
.advantage-section .adv-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 260px;
}
.advantage-section .adv-center .adv-center-label {
  color: #f36c21;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
.advantage-section .adv-center .adv-center-desc {
  color: #333;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 900px) {
  .advantage-section .adv-content {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .advantage-section .adv-col {
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
  }
  .advantage-section .adv-card {
    min-width: 0;
    flex: 1;
    margin: 0 4px;
    padding: 20px 10px;
    font-size: 15px;
  }
  .advantage-section .adv-center {
    min-width: 0;
  }
  .advantage-section .adv-center .adv-center-label {
    font-size: 18px;
  }
  .advantage-section .adv-center .adv-center-desc {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .advantage-section {
    margin: 40px 0 0 0;
  }
  .advantage-section .adv-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .advantage-section .adv-content {
    gap: 16px;
    max-width: 100%;
  }
  .advantage-section .adv-col {
    gap: 12px;
  }
  .advantage-section .adv-card {
    padding: 16px 8px;
    font-size: 14px;
    min-height: 0;
  }
  .advantage-section .adv-center .adv-center-label {
    font-size: 16px;
  }
  .advantage-section .adv-center .adv-center-desc {
    font-size: 13px;
  }
}
@media (max-width: 1600px) {
  .adv-center-img img {
    width: 650px;
  }
}
@media (max-width: 1440px) {
  .adv-center-img img {
    width: 450px;
  }
  .advantage-section .adv-title {
    font-size: 36px;
    margin-bottom: 40px;
    margin-top: 30px;
  }
  .advantage-section {
    margin: 0 0 40px;
  }
}
@media (max-width: 1200px) {
  .adv-center-img img {
    width: 360px;
  }
  .advantage-section .adv-title {
    font-size: 26px;
    margin-bottom: 0px;
    margin-top: 60px;
  }
  .advantage-section {
    margin: 0 0 40px;
  }
}
@media (max-width: 991px) {
  .advantage-section .adv-title {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 70px;
  }
  .advantage-section .adv-center {
    display: none;
  }
  .advantage-section .adv-card {
    background: #f1f1f1;
  }
}
.wap-adv-title {
  display: none;
}
@media (max-width: 767px) {
  .wap-adv-title {
    text-align: center;
    display: inline-block;
    width: 100%;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .wap-adv-title img {
    width: 90px;
  }
  .wap-adv-title h3 {
    color: #EF4E39;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
  }
  .wap-adv-title span {
    margin-bottom: 20px;
    margin-top: 70px;
    font-size: 16px;
    color: #1D1D1D;
  }
  .advantage-section .adv-title {
    display: none;
  }
  .advantage-section .adv-card .adv-card-title {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
    margin-bottom: 4px;
  }
  .advantage-section .adv-card .adv-card-desc {
    font-size: 14px;
    padding: 0 5px;
  }
  .advantage-section .adv-card {
    padding: 12px 8px;
  }
  .advantage-section .adv-col {
    gap: 5px;
  }
}
.case-section .main-title-cn1 img {
  position: absolute;
  left: -110px;
  bottom: -8px;
}
.case-section {
  background: #f7f9fa;
  padding: 80px 0 160px 0;
}
.case-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.case-title img.case-mascot {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  margin-right: 12px;
}
.case-list {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin: 0 auto;
  padding: 0;
  padding-top: 15px;
  list-style: none;
}
.case-list li {
  flex: 1;
  background: #fff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
  position: relative;
}
.case-list li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.case-img {
  width: 100%;
  height: 330px;
  overflow: hidden;
  position: relative;
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 1.5, 0.5, 1);
}
.case-list li:hover .case-img img {
  transform: scale(1.06);
}
.case-info {
  padding: 40px 40px 84px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.case-name {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.case-list li:hover .case-name {
  color: #0071c1;
}
.case-desc {
  font-size: 15px;
  color: #81888E;
  margin-bottom: 40px;
  line-height: 1.7;
}
.case-more {
  font-size: 15px;
  color: #222;
  font-weight: bold;
  margin-top: auto;
  position: relative;
  display: inline-block;
}
.case-list li a {
  position: relative;
  width: 100%;
  display: inline-block;
  border: 1px solid #DCE3E9;
}
.case-list li a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #0071c1;
  transition: width 0.4s cubic-bezier(0.4, 1.5, 0.5, 1);
  position: absolute;
  left: 0;
  bottom: 0px;
}
.case-list li a:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .case-list {
    flex-direction: column;
    gap: 20px;
  }
  .case-img {
    height: 340px;
  }
}
@media (max-width: 767px) {
  .case-section {
    padding: 40px 0 24px 0;
  }
  .case-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .case-title img.case-mascot {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  .case-list {
    gap: 12px;
  }
  .case-info {
    padding: 16px 10px 20px 10px;
  }
  .case-img {
    height: 120px;
  }
  .case-list li {
    border-radius: 10px 10px 0 0;
  }
}
@media (max-width: 1440px) {
  .case-info {
    padding: 30px 30px 64px 30px;
  }
  .case-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
  }
  .case-section {
    padding: 80px 0 120px 0;
  }
  .case-img {
    height: 240px;
  }
}
@media (max-width: 1200px) {
  .case-section .main-title-cn1 img {
    position: absolute;
    left: -80px;
    bottom: -8px;
  }
  .case-info {
    padding: 20px 20px 44px 20px;
  }
  .case-img {
    height: 226px;
  }
  .case-name {
    font-size: 18px;
  }
  .case-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .case-section {
    padding: 80px 0 120px 0;
  }
}
@media (max-width: 991px) {
  .case-img {
    height: 400px;
  }
  .case-info {
    padding: 18px 18px 24px 18px;
  }
  .case-name {
    margin-bottom: 6px;
  }
  .case-section {
    padding: 40px 0 40px 0;
  }
  .case-list {
    padding-top: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 767px) {
  .case-name {
    font-size: 16px;
  }
  .case-more {
    font-size: 13px;
  }
  .case-img {
    height: 240px;
  }
  .case-section .main-title-cn1 img {
    position: absolute;
    left: -53px;
    bottom: -8px;
  }
}
.product-section {
  background: #fff;
  padding: 160px 0 60px 0;
}
.product-section .main-title-en {
  font-size: 50px;
  margin-top: -30px;
}
.product-section .main-title-cn1 img {
  position: absolute;
  left: -105px;
  bottom: -12px;
}
.product-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.product-list li {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  background: #000;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.product-list li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.product-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 1.5, 0.5, 1);
}
.product-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url(../images/bg2.png) repeat-x center bottom;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px 28px 24px;
  pointer-events: none;
}
.product-name {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.product-desc {
  color: #DFDFDF;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
  margin-bottom: 18px;
  z-index: 2;
}
.product-more {
  display: inline-block;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.4s, max-height 0.4s;
  z-index: 2;
}
.product-more span {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  border: 1px solid #fff;
  padding: 0 22px;
  height: 38px;
  line-height: 38px;
  background: rgba(0, 0, 0, 0.18);
}
.product-list li:hover .product-img img {
  transform: scale(1.06);
}
.product-list li:hover .product-desc,
.product-list li:hover .product-more {
  opacity: 1;
  max-height: 100px;
  pointer-events: auto;
}
.product-list li:hover .product-name {
  color: #fff;
}
@media (max-width: 1200px) {
  .product-list {
    gap: 16px;
  }
  .product-img {
    height: 320px;
  }
  .product-section {
    background: #fff;
    padding: 120px 0 60px 0;
  }
  .product-section .main-title-en {
    font-size: 50px;
    margin-top: -20px;
  }
  .product-section .main-title-cn1 img {
    position: absolute;
    left: -80px;
    bottom: -12px;
  }
  .product-desc {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .product-section {
    background: #fff;
    padding: 80px 0 60px 0;
  }
  .product-section .main-title-en {
    font-size: 40px;
    margin-top: -20px;
  }
  .product-section .main-title-cn1 img {
    position: absolute;
    left: -80px;
    bottom: -12px;
  }
  .product-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .product-name {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .product-desc {
    opacity: 1;
    max-height: initial;
    font-size: 13px;
    line-height: 1.4;
  }
  .product-img {
    height: 220px;
  }
  .product-mask {
    padding: 22px 14px 18px 14px;
  }
}
@media (max-width: 767px) {
  .product-list li {
    max-width: 48%;
    float: left;
    flex: none;
  }
  .product-section {
    background: #fff;
    padding: 90px 0 60px 0;
  }
  .product-section .main-title-en {
    font-size: 36px;
    margin-top: -20px;
  }
  .product-section .main-title-cn1 img {
    position: absolute;
    left: -55px;
    bottom: -8px;
  }
  .product-section {
    padding: 60px 0 24px 0;
  }
  .product-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .product-title img.product-mascot {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  .product-list {
    gap: 10px;
  }
  .product-img {
    height: auto;
  }
  .product-mask {
    padding: 16px 8px 12px 8px;
  }
  .product-name {
    font-size: 16px;
  }
  .product-desc,
  .product-more {
    font-size: 13px;
  }
}
.process-section {
  background: #fff;
  padding: 80px 0 60px 0;
}
.process-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.process-title img.process-mascot {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  margin-right: 12px;
}
.process-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0;
  list-style: none;
}
.process-list li {
  flex: 1;
  min-width: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #fff;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.process-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 1.5, 0.5, 1);
}
.process-list li:hover .process-img img {
  transform: scale(1.06);
}
.process-info {
  padding: 32px 6px 12px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.process-section .main-title-en {
  font-size: 50px;
  margin-top: -30px;
}
.process-section .main-title-en {
  font-size: 50px;
  margin-top: -30px;
}
.process-section .main-title-cn1 img {
  left: initial;
  right: -105px;
}
.process-name {
  font-size: 20px;
  font-weight: bold;
  color: #1D1D1D;
  margin-bottom: 16px;
  padding-top: 12px;
  transition: color 0.2s;
}
.process-list li:hover .process-more {
  color: #217bc0;
}
.process-desc {
  font-size: 15px;
  color: #a1a1a1;
  margin-bottom: 28px;
  line-height: 1.7;
}
.process-date {
  font-size: 15px;
  color: #888;
  margin-bottom: 8px;
}
.process-more {
  font-size: 15px;
  color: #222;
  margin-top: auto;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.process-list li a {
  display: inline-block;
  position: relative;
  width: 100%;
}
.process-list li a::after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  background: #217bc0;
  transition: width 0.4s cubic-bezier(0.4, 1.5, 0.5, 1);
  position: absolute;
  left: 0;
  bottom: 0px;
}
.process-list li a:hover::after {
  width: 100%;
}
@media (max-width: 1440px) {
  .process-img {
    height: 208px;
  }
}
@media (max-width: 1200px) {
  .process-list {
    gap: 16px;
  }
  .process-img {
    height: 180px;
  }
}
@media (max-width: 991px) {
  .process-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .process-list li {
    min-width: 260px;
  }
  .process-img {
    height: 270px;
  }
  .process-info {
    padding: 12px 3px 6px 3px;
  }
  .process-name {
    font-size: 18px;
    margin-bottom: 8px;
    padding-top: 6px;
  }
  .process-date {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .process-desc {
    font-size: 15px;
    color: #a1a1a1;
    margin-bottom: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .process-section {
    padding: 40px 0 24px 0;
  }
  .process-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .process-title img.process-mascot {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  .process-list li {
    width: 100%;
    flex: initial;
    min-width: inherit;
  }
  .process-list {
    gap: 10px;
    margin: 0 4%;
  }
  .process-img {
    height: auto;
  }
  .process-info {
    padding: 12px 8px 16px 8px;
  }
  .process-name {
    font-size: 16px;
  }
  .process-desc,
  .process-more {
    font-size: 13px;
  }
  .process-section .main-title-en {
    font-size: 34px;
  }
  .process-section .main-title-cn1 img {
    right: -45px;
  }
}
.choosing-section {
  padding: 120px 0 0;
  width: 100%;
  text-align: center;
}
.choosing-section .main-title {
  margin-bottom: 0;
  position: relative;
  margin-bottom: -60px;
}
.choosing-section .main-title .main-title-en {
  font-size: 50px;
  margin-top: -30px;
}
.choosing-section .main-title-cn1 span {
  padding-bottom: 12px;
  width: 100%;
  display: inline-block;
}
.choosing-section .main-title-cn1 img {
  position: inherit;
}
@media (max-width: 1440px) {
  .choosing-section {
    padding: 100px 0 0;
    width: 100%;
  }
  .choosing-section .main-title {
    margin-bottom: -30px;
  }
  .choosing-section .main-title-cn1 span {
    padding-bottom: 8px;
    width: 100%;
    display: inline-block;
  }
  .choosing-section .main-title .main-title-en {
    font-size: 50px;
    margin-top: -30px;
  }
}
@media (max-width: 1200px) {
  .choosing-section {
    padding: 100px 0;
    width: 100%;
  }
  .choosing-section .main-title {
    margin-bottom: -20px;
  }
  .choosing-section .main-title .main-title-en {
    font-size: 40px;
    margin-top: -20px;
  }
}
@media (max-width: 991px) {
  .choosing-section {
    padding: 40px 0 0px;
    width: 100%;
  }
  .choosing-section .main-title-cn1 span {
    padding-bottom: 4px;
    width: 100%;
    display: inline-block;
  }
  .choosing-section .main-title .main-title-en {
    font-size: 32px;
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .choosing-section {
    padding: 40px 0 0px;
    width: 100%;
  }
  .choosing-section .main-title {
    margin-bottom: 10px;
  }
  .choosing-section .main-title-cn1 span {
    padding-bottom: 0px;
    width: 100%;
    display: inline-block;
  }
  .choosing-section .main-title .main-title-en {
    font-size: 32px;
    margin-top: -20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}
.footer-section {
  background: #111;
  color: #fff;
  padding: 48px 0 0 0;
  position: relative;
  font-size: 15px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-left {
  width: 47%;
}
.footer-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 28px;
  color: #fff;
}
.footer-desc {
  color: #ccc;
  line-height: 2;
  margin-bottom: 12px;
}
.footer-nav {
  position: relative;
  width: 50%;
  padding-left: 76px;
  line-height: 59px;
  border-left: 1px solid #2a2a2a;
}
.footer-nav a {
  font-size: 18px;
  width: 187px;
  display: inline-block;
  color: #fff;
}
.footer-nav a:hover {
  color: #217bc0;
}
.footer-nav a:nth-child(4) {
  width: auto;
}
.footer-nav a:nth-child(5),
.footer-nav a:nth-child(6),
.footer-nav a:nth-child(7) {
  width: 100%;
}
.footer-icons {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 18px;
  margin-top: 32px;
  justify-content: flex-start;
}
.footer-icon-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  object-fit: cover;
  padding: 0;
}
.footer-icon-img:hover {
  background: #333;
}
.footer-icon-img.wechat {
  position: relative;
}
.footer-icon-img.wechat .wechat-qrcode {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  width: 120px;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  z-index: 99;
}
.footer-icon-img.wechat:hover .wechat-qrcode {
  display: block;
}
.footer-icon-img.wechat .wechat-qrcode img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.footer-copyright {
  text-align: center;
  color: #888;
  font-size: 13px;
  height: auto;
  overflow: hidden;
  padding: 32px 0 26px 0;
  margin-top: 60px;
  border-top: 1px solid #222;
}
.footer-copyright a {
  text-decoration: underline;
}
.footer-copyright a:hover {
  color: #3497e3;
}
.footer-copyright .footer-copyright-right a {
  text-decoration: none;
}
.footer-copyright .footer-copyright-right a img {
  position: relative;
  margin-top: -6px;
}
@media (max-width: 991px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
  }
  .footer-nav {
    justify-content: flex-start;
    gap: 24px;
    margin-top: 18px;
  }
  .footer-icons {
    gap: 12px;
    margin-top: 18px;
  }
  .footer-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .footer-section {
    padding: 24px 0 0 0;
    font-size: 13px;
  }
  .footer-main {
    padding: 0 4px;
    gap: 18px;
  }
  .footer-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    min-width: 0;
  }
  .footer-icons {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .footer-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  .footer-copyright {
    font-size: 11px;
    padding: 16px 0 8px 0;
    margin-top: 12px;
  }
}
.footer-contact-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 60px;
  margin-top: 0;
  padding: 0 0 24px 0;
  border-bottom: 1px solid #2a2a2a;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}
.footer-contact-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-label {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 4px;
}
.footer-contact-value {
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-contact-value2 {
  font-size: 20px;
}
@media (max-width: 1440px) {
  .footer-contact-value {
    color: #fff;
    font-size: 15px;
    white-space: initial;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .footer-contact-value2 {
    font-size: 15px;
  }
  .footer-contact-row {
    margin-bottom: 40px;
  }
  .footer-copyright {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .footer-contact-row {
    flex-direction: column;
    gap: 20px;
    padding: 0 0 16px 0;
  }
  .footer-contact-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-contact-icon {
    width: 36px;
    height: 36px;
  }
  .footer-contact-label {
    font-size: 13px;
  }
  .footer-contact-value {
    font-size: 15px;
  }
  .footer-contact-item svg {
    width: 42px;
    height: 42px;
  }
  .footer-main {
    gap: 0px;
  }
  .footer-left {
    width: 100%;
  }
  .footer-nav {
    width: 100%;
  }
}
.footer-copyright-left {
  float: left;
}
.footer-copyright-right {
  float: right;
}
@media (max-width: 767px) {
  .footer-contact-value {
    font-size: 14px;
  }
  .footer-contact-value2 {
    font-size: 14px;
  }
  .footer-contact-item svg {
    width: 36px;
    height: 36px;
  }
  .footer-copyright-left {
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
  }
  .footer-copyright-right {
    width: 100%;
    text-align: center;
    display: none;
  }
  .footer-nav-col {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .footer-copyright {
    border: none;
    margin-top: 0;
  }
  .footer-icons {
    position: initial;
    flex-direction: row;
    justify-content: center;
  }
  .footer-nav {
    padding-left: 0;
    border-left: none;
    line-height: 32px;
  }
  .footer-nav a {
    font-size: 14px;
    width: auto;
    padding: 0 4px;
  }
  .footer-nav a:nth-child(4) {
    width: auto;
  }
  .footer-nav a:nth-child(5),
  .footer-nav a:nth-child(6),
  .footer-nav a:nth-child(7) {
    width: auto;
  }
}
.about-section {
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 30px;
}
.about-section::after {
  clear: both;
  width: 100%;
  display: inline-block;
  content: ' ';
}
.about-section-img {
  float: left;
  width: 43%;
  min-width: 320px;
  max-width: 700px;
  position: relative;
}
.about-section-img::after {
  content: ' ';
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f7f7f7;
  transform: translate(30px, 40px);
  z-index: 1;
}
.about-section-img img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}
.about-section-content {
  float: right;
  width: 52%;
  min-width: 320px;
  color: #333333;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.2px;
}
.about-section-content ul {
  margin-top: 32px;
}
.about-section-content li {
  color: #828282;
  font-size: 16px;
}
.about-section-content li strong {
  font-weight: normal;
}
.common-title {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  color: #222;
  margin-bottom: 18px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.common-title .title-icon {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  margin-right: 10px;
}
.common-title-cn {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 991px) {
  .about-section {
    flex-direction: column;
    gap: 32px;
    padding: 0 8px;
  }
  .about-section-img,
  .about-section-content {
    min-width: 0;
    max-width: 100%;
  }
  .common-title {
    font-size: 28px;
  }
  .common-title-cn {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.core-service-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin: 64px auto 80px auto;
}
.core-service-item {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 42px 47px;
  color: #222;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  text-align: left;
  cursor: pointer;
}
.core-service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 14px;
}
.core-service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #707070;
}
.core-service-item:hover,
.core-service-item.active {
  background: #0071c1;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 113, 193, 0.3);
}
.core-service-item:hover .core-service-title,
.core-service-item.active .core-service-title {
  color: #fff;
}
.core-service-item:hover .core-service-desc,
.core-service-item.active .core-service-desc {
  color: #fff;
}
@media (max-width: 1200px) {
  .core-service-section {
    gap: 16px;
  }
  .core-service-item {
    padding: 20px 12px;
    font-size: 15px;
  }
  .core-service-title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .core-service-section {
    flex-direction: column;
    gap: 14px;
    max-width: 100%;
  }
}
.product-details-section {
  padding-top: 0;
}
@media (min-width: 991px) {
  .product-details-section .main-title-cn1 img {
    position: absolute;
    left: -88px;
    bottom: -8px;
    width: 80px;
  }
  .product-details-section .main-title .main-title-en {
    font-size: 76px;
    color: #F0F0F0;
  }
  .product-details-section .main-title .main-title-cn {
    font-size: 36px;
    font-weight: normal;
  }
}
.team-section {
  margin: 64px auto 60px auto;
  padding: 48px 0 40px 0;
}
@media (min-width: 991px) {
  .team-section .main-title-cn1 img {
    position: absolute;
    left: -88px;
    bottom: -8px;
    width: 80px;
  }
  .team-section .main-title .main-title-en {
    font-size: 76px;
    color: #F0F0F0;
  }
  .team-section .main-title .main-title-cn {
    font-size: 36px;
    font-weight: normal;
  }
}
.team-section .common-title {
  margin-bottom: 18px;
}
.team-desc {
  text-align: center;
  color: #444;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
  margin-top: 30px;
  padding-bottom: 140px;
}
.team-img-row {
  margin-bottom: 32px;
  height: 140px;
}
.team-img-row img {
  position: relative;
  top: -140px;
}
.team-img-row img {
  width: 100%;
  padding: 0 4px;
  max-width: 360px;
  min-width: 0;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.team-intro {
  color: #333;
  font-size: 16px;
  line-height: 2;
  margin: 0 auto;
  text-align: left;
  padding: 0 47px;
}
.team-body {
  background: #f5faff;
  border-radius: 50px;
  padding-bottom: 50px;
}
.team-intro p {
  margin-bottom: 18px;
}
@media (max-width: 1100px) {
  .team-img-row {
    gap: 12px;
  }
  .team-img-row img {
    max-width: 220px;
  }
  .team-section {
    padding: 32px 8px 24px 8px;
  }
}
@media (max-width: 700px) {
  .team-img-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }
  .team-img-row img {
    max-width: 100%;
    min-width: 0;
    height: auto;
  }
  .team-section {
    padding: 18px 2vw 12px 2vw;
    margin: 24px 0 32px 0;
  }
  .team-desc {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .team-intro {
    font-size: 14px;
    padding: 0 2px;
  }
}
.honor-section {
  background: #fafbfc;
  border-radius: 18px;
  margin: 64px auto 80px auto;
  padding: 48px 32px 40px 32px;
  max-width: 1400px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.honor-section .common-title {
  margin-bottom: 18px;
}
.honor-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
.honor-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #888;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s, color 0.2s;
  margin: 0 12px;
  user-select: none;
}
.honor-arrow:hover {
  background: #e3f5fe;
  color: #0071c1;
}
.honor-track {
  display: flex;
  gap: 32px;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  transition: transform 0.5s cubic-bezier(0.4, 1.5, 0.5, 1);
}
.honor-slide {
  min-width: 240px;
  max-width: 260px;
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 12px 8px 8px 8px;
  transition: box-shadow 0.2s;
}
.honor-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  background: #f8f8f8;
}
.honor-section .swiper {
  padding: 0 40px;
}
.honor-section .swiper-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px 8px 8px;
  height: auto;
}
.honor-section .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  background: #f8f8f8;
}
.honor-section .swiper-button-prev,
.honor-section .swiper-button-next {
  color: #0071c1;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}
.honor-section .swiper-button-prev:hover,
.honor-section .swiper-button-next:hover {
  background: #e3f5fe;
}
@media (max-width: 900px) {
  .honor-track {
    gap: 12px;
    max-width: 98vw;
  }
  .honor-slide {
    min-width: 44vw;
    max-width: 48vw;
    flex: 0 0 50%;
    padding: 6px 2px 6px 2px;
  }
  .honor-section {
    padding: 24px 2vw 18px 2vw;
    margin: 24px 0 32px 0;
  }
  .honor-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
    margin: 0 4px;
  }
  .honor-section .swiper {
    padding: 0 8px;
  }
  .honor-section .swiper-slide {
    padding: 6px 2px 6px 2px;
  }
  .honor-section .swiper-button-prev,
  .honor-section .swiper-button-next {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
.pape_banner {
  position: relative;
  z-index: 2;
}
.pape_banner .pape_banner_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.pape_banner .pape_banner_text h3 {
  font-size: 48px;
}
.pape_banner .pape_banner_text span {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .pape_banner .pape_banner_text h3 {
    font-size: 38px;
  }
  .pape_banner .pape_banner_text span {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .pape_banner .pape_banner_text h3 {
    font-size: 28px;
  }
  .pape_banner .pape_banner_text span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .pape_banner .pape_banner_text h3 {
    font-size: 20px;
  }
  .pape_banner .pape_banner_text span {
    font-size: 16px;
  }
}
.bread {
  font-size: 18px;
  line-height: 74px;
  height: 74px;
  background: #f1f1f1;
  color: #3D3D3D;
  text-align: center;
}
.bread .w {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bread a {
  color: #3D3D3D;
}
.bread .left-img {
  width: 36px;
}
.bread .home {
  width: 26px;
  margin-right: 10px;
}
@media (max-width: 991px) {
  .bread {
    font-size: 16px;
    line-height: 60px;
    height: 60px;
  }
  .bread .left-img {
    width: 28px;
  }
  .bread .home {
    width: 19px;
    margin-right: 8px;
  }
}
@media (max-width: 767px) {
  .bread {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }
}
.contact_box {
  padding: 80px 0 120px;
}
@media (min-width: 991px) {
  .contact_box .main-title .main-title-en {
    font-size: 76px;
    color: #F0F0F0;
  }
  .contact_box .main-title .main-title-cn {
    font-size: 36px;
    font-weight: normal;
  }
}
@media (max-width: 1440px) {
  .contact_box {
    padding: 60px 0 100px;
  }
}
@media (max-width: 1200px) {
  .contact_box {
    padding: 50px 0 90px;
  }
}
@media (max-width: 991px) {
  .contact_box {
    padding: 40px 0 80px;
  }
}
@media (max-width: 767px) {
  .contact_box {
    padding: 30px 0 60px;
  }
}
.about-icon-list ul,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  margin: 90px 0;
  padding: 0;
  list-style: none;
}
.about-icon-list ul li,
.contact-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 38px 18px 38px 18px;
  transition: box-shadow 0.2s, background 0.2s;
  color: #222;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ebebeb;
}
.about-icon-list ul li.active,
.about-icon-list ul li:hover,
.contact-grid li.active,
.contact-grid li:hover {
  background: #217bcf;
  color: #fff;
  box-shadow: 0 4px 24px rgba(33, 123, 207, 0.1);
}
.about-icon-list span {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #bdbdbd;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.footer-svg-icon1 {
  background: url(../images/contact1.png) no-repeat center center;
}
.footer-svg-icon2 {
  background: url(../images/contact1.png) no-repeat center center;
}
.footer-svg-icon3 {
  background: url(../images/contact2.png) no-repeat center center;
}
.footer-svg-icon4 {
  background: url(../images/contact2.png) no-repeat center center;
}
.footer-svg-icon5 {
  background: url(../images/contact3.png) no-repeat center center;
}
.footer-svg-icon6 {
  background: url(../images/contact3.png) no-repeat center center;
}
.footer-svg-icon7 {
  background: url(../images/contact4.png) no-repeat center center;
}
.footer-svg-icon8 {
  background: url(../images/contact5.png) no-repeat center center;
}
.about-icon-list ul li:hover,
.about-icon-list ul li.active {
  transform: translate(-4px, -8px);
}
.about-icon-list ul li:hover .footer-svg-icon1,
.about-icon-list ul li.active .footer-svg-icon1 {
  background: url(../images/contact1h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover .footer-svg-icon2,
.about-icon-list ul li.active .footer-svg-icon2 {
  background: url(../images/contact1h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover .footer-svg-icon3,
.about-icon-list ul li.active .footer-svg-icon3 {
  background: url(../images/contact2h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover .footer-svg-icon4,
.about-icon-list ul li.active .footer-svg-icon4 {
  background: url(../images/contact2h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover .footer-svg-icon5,
.about-icon-list ul li.active .footer-svg-icon5 {
  background: url(../images/contact3h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover .footer-svg-icon6,
.about-icon-list ul li.active .footer-svg-icon6 {
  background: url(../images/contact3h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover .footer-svg-icon7,
.about-icon-list ul li.active .footer-svg-icon7 {
  background: url(../images/contact4h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover .footer-svg-icon8,
.about-icon-list ul li.active .footer-svg-icon8 {
  background: url(../images/contact5h.png) no-repeat center center rgba(255, 255, 255, 0.2);
}
.about-icon-list ul li:hover span,
.about-icon-list ul li.active span {
  border: 1px solid #6992f8;
}
.about-icon-list ul li h3,
.contact-grid li h3 {
  font-size: 20px;
  margin: 30px 0 10px 0;
  font-weight: bold;
}
.about-icon-list ul li p,
.contact-grid li p {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: #535353;
  color: inherit;
}
@media (max-width: 1200px) {
  .about-icon-list ul,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .about-icon-list ul,
  .contact-grid {
    gap: 8px;
  }
  .about-icon-list ul li,
  .contact-grid li {
    padding: 24px 8px 18px 8px;
  }
}
.map-box {
  padding-top: 0;
}
.map-box::after {
  clear: both;
  width: 100%;
  display: inline-block;
  content: ' ';
}
@media (min-width: 991px) {
  .map-box .main-title .main-title-en {
    font-size: 76px;
    color: #F0F0F0;
  }
  .map-box .main-title .main-title-cn {
    font-size: 36px;
    font-weight: normal;
  }
}
.map-box h3 {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 24px;
  line-height: 70px;
}
.map-boxl {
  width: 48%;
  position: relative;
  float: left;
}
.map-boxr {
  width: 48%;
  position: relative;
  float: right;
}
.contact-form::after {
  clear: both;
  width: 100%;
  display: inline-block;
  content: ' ';
}
.contact-form input {
  background: #f5f5f5;
  color: #000;
  border: none;
  line-height: 57px;
  height: 57px;
  padding: 0 29px;
  width: 100%;
  display: inline-block;
}
.contact-form textarea {
  background: #f5f5f5;
  color: #000;
  border: none;
  line-height: 24px;
  height: 195px;
  padding: 18px 29px;
  width: 100%;
  display: inline-block;
}
.contact-form textarea::placeholder {
  color: #bdbdbd;
  opacity: 1;
}
.contact-form textarea::-webkit-input-placeholder {
  color: #bdbdbd;
}
.contact-form textarea::-moz-placeholder {
  color: #bdbdbd;
  opacity: 1;
}
.contact-form textarea:-ms-input-placeholder {
  color: #bdbdbd;
}
.contact-form textarea::-ms-input-placeholder {
  color: #bdbdbd;
}
.form-group {
  float: left;
  width: 49%;
  padding-bottom: 20px;
  position: relative;
}
.vercode-img {
  width: 92px;
  height: 37px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.full-width {
  width: 100%;
  padding-bottom: 20px;
}
.fr {
  float: right;
}
.submit-btn {
  background: #173f8f;
  color: #fff;
  width: 180px;
  height: 57px;
  border: none;
  margin-left: 13px;
  transition: all ease-in-out 0.2s;
  font-size: 16px;
}
.submit-btn:hover {
  background: #265ece;
}
.full-smi {
  width: 550px;
}
#mapDiv,
#mapDiv2 {
  width: 100%;
  height: 550px;
}
@media (max-width: 1600px) {
  .about-icon-list ul li h3,
  .contact-grid li h3 {
    font-size: 18px;
    margin: 30px 0 10px 0;
  }
  .about-icon-list ul li p,
  .contact-grid li p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 1440px) {
  .about-icon-list ul li h3,
  .contact-grid li h3 {
    margin: 20px 0 10px 0;
  }
  .about-icon-list ul li p,
  .contact-grid li p {
    font-size: 16px;
  }
  .about-icon-list ul,
  .contact-grid {
    gap: 40px;
  }
  .about-icon-list span {
    width: 100px;
    height: 100px;
    background-size: contain !important;
  }
  .full-smi {
    width: 390px;
  }
  .contact_box {
    padding: 60px 0 80px;
  }
}
@media (max-width: 991px) {
  .about-icon-list ul,
  .contact-grid {
    margin: 40px 0;
  }
}
@media (max-width: 767px) {
  .contact_box .about-desc {
    font-size: 14px;
    line-height: 1.6;
  }
  .about-icon-list ul,
  .contact-grid {
    margin: 30px 0;
  }
  .about-icon-list ul li h3,
  .contact-grid li h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .about-icon-list ul li p,
  .contact-grid li p {
    font-size: 13px;
  }
  .about-icon-list ul,
  .contact-grid {
    gap: 10px;
  }
  .about-icon-list span {
    width: 60px;
    height: 60px;
    background-size: contain;
  }
  .map-boxl {
    width: 100%;
  }
  .map-boxr {
    margin-top: 20px;
    width: 100%;
  }
  #mapDiv,
  #mapDiv2 {
    width: 100%;
    height: 300px;
  }
  .map-box h3 {
    font-size: 18px;
    line-height: 50px;
  }
  .contact_box {
    padding: 0px 0 40px;
  }
  .form-group {
    width: 100%;
    padding-bottom: 12px;
  }
  .contact-form input {
    line-height: 40px;
    height: 40px;
    padding: 0 12px;
  }
  .contact-form textarea {
    line-height: 20px;
    height: 125px;
    padding: 10px 12px;
    width: 100%;
    display: inline-block;
  }
  .vercode-img {
    width: 92px ;
    height: 40px;
    right: 0px;
    top: 0px;
  }
  .submit-btn {
    width: 130px;
    height: 40px;
    margin-left: 0;
    font-size: 14px;
  }
  .contact_box {
    padding: 0px 0 40px;
  }
}
.core-service-section-box {
  margin-top: 150px;
  padding: 120px 0 40px;
  background: #f5faff;
}
@media (min-width: 1200px) {
  .core-service-section-box .main-title-cn1 img {
    position: absolute;
    left: 50%;
    width: 80px;
    bottom: 110%;
    transform: translateX(-50%);
  }
  .core-service-section-box .main-title .main-title-en {
    font-size: 76px;
  }
  .core-service-section-box .main-title .main-title-cn {
    font-weight: normal;
    font-size: 36px;
    top: -10px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .core-service-section-box .main-title .main-title-cn {
    top: 0px;
  }
}
.case-list-pape {
  padding: 115px 0;
}
.case-list-pape .main-title-cn1 img {
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
}
.case-list-pape .case-list li {
  flex: none;
  width: 32.33%;
  float: left;
  margin-bottom: 35px;
}
.case-list-pape .case-list {
  display: flex;
  flex-wrap: wrap;
}
.pagination-box {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  list-style: none;
}
.pagination li:last-child a,
.pagination li:first-child a {
  padding: 0 36px;
  color: #212121;
  font-size: 15px;
}
.pagination li {
  display: inline-block;
  float: left
  ;
}
.page-link {
  position: relative;
  display: block;
  color: #212121;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  min-width: 43px;
  height: 43px;
  line-height: 43px;
  padding: 0 12px;
  text-align: center;
}
.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0168b7;
  border-color: #0168b7;
}
@media (max-width: 1440px) {
  .pagination-box {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1200px) {
  .case-list-pape {
    padding: 70px 0;
  }
  .case-list-pape .case-list li {
    flex: none;
    width: 32.33%;
    float: left;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .case-list-pape .case-list li {
    width: 48%;
    margin-bottom: 15px;
  }
  .case-list-pape .case-list {
    flex-direction: row;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .page-link {
    min-width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .pagination li:last-child a,
  .pagination li:first-child a {
    padding: 0 16px;
    color: #212121;
    font-size: 15px;
  }
  .case-list-pape .case-list li {
    width: 100%;
    margin-bottom: 0px;
  }
  .page-link {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .pagination-box {
    padding-top: 40px;
  }
  .case-list-pape {
    padding: 70px 0 40px;
  }
}
.zyxq {
  float: left;
  margin-top: 27px;
  margin-bottom: 50px;
}
.zyxq li {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ededed;
}
.zyxq .zyxq_1 {
  float: left;
  margin-right: 40px;
  width: 300px;
}
.zyxq .zyxq_1 img {
  width: 100%;
}
.zyxq .zyxq_2 {
  float: left;
  width: calc(100% - 375px);
}
.zyxq h3 {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s;
}
.zyxq p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.8;
  width: 100%;
  min-height: 56px;
  margin-bottom: 30px;
  display: inline-block;
  color: #9B9B9B;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-top: 3px;
}
.zyxq span {
  color: #8B8B8B;
  font-size: 14px;
  display: inline-block;
  width: 100%;
}
.zyxq li:hover h3 {
  color: #0168b7;
}
@media (max-width: 1200px) {
  .zyxq p {
    min-height: 46px;
    margin-bottom: 20px;
  }
  .zyxq .zyxq_1 {
    float: left;
    margin-right: 25px;
    width: 250px;
  }
  .zyxq .zyxq_2 {
    float: left;
    width: calc(100% - 275px);
  }
}
@media (max-width: 767px) {
  .zyxq {
    margin-bottom: 15px;
  }
  .zyxq p {
    min-height: 46px;
    margin-bottom: 15px;
  }
  .zyxq .zyxq_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .zyxq li {
    padding-bottom: 18px;
    margin-bottom: 18px;
    display: inline-block;
    flex-wrap: initial;
    width: 100%;
  }
  .zyxq li a {
    display: inline-block;
    width: 100%;
  }
  .zyxq .zyxq_2 {
    width: 100%;
  }
  .zyxq {
    position: relative;
    width: 100%;
  }
  .zyxq p {
    padding-top: 0;
  }
  .zyxq h3 {
    font-size: 18px;
  }
}
.custom-select {
  position: relative;
  width: 490px;
  margin: 0 auto 50px;
  height: 48px;
  border: 1px solid #222;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 20px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}
.custom-select .selected {
  flex: 1;
}
.custom-select .layui-icon {
  font-size: 18px;
  margin-left: 8px;
  transition: transform 0.2s;
}
.custom-select .select-options {
  position: absolute;
  left: 0;
  top: 110%;
  width: 100%;
  background: #fff;
  border: 1px solid #222;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
  margin: 0;
  padding: 0;
  display: none;
  list-style: none;
  overflow: hidden;
}
.custom-select .select-options li {
  font-size: 18px;
  cursor: pointer;
}
.custom-select .select-options li a {
  width: 100%;
  display: inline-block;
  padding: 12px 20px;
}
.custom-select .select-options li:hover,
.custom-select .select-options li.active {
  background: #f2f6fa;
  color: #0071c1;
}
.custom-select.open .layui-icon {
  transform: rotate(180deg);
}
.custom-select.open .select-options {
  display: block;
}
@media (max-width: 767px) {
  .custom-select {
    width: 92%;
    font-size: 14px;
    padding: 0 12px;
    height: 32px;
    margin: 10px auto 0px;
  }
  .custom-select .select-options li {
    font-size: 14px;
  }
  .custom-select .select-options li a {
    padding: 10px 16px;
  }
}
.case-details-box {
  width: 100%;
  padding: 66px 0;
}
.case-details-title {
  color: #101010;
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 24px;
  width: 100%;
  float: left;
}
.case-details-description {
  font-size: 16px;
  font-weight: bold;
  color: #101010;
  line-height: 2;
  margin: 55px 0 60px;
  width: 100%;
  float: left;
}
.case-details-body {
  color: #272727;
  font-size: 16px;
  line-height: 2.2;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.case-details-body p {
  padding-bottom: 15px;
}
.case-details-body::after {
  content: ' ';
  display: inline-block;
  width: 100%;
}
.case-details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin: 18px 0 28px 0;
  padding: 0;
}
.case-details-tag {
  display: inline-block;
  border-radius: 22px;
  background: #fff;
  color: #222;
  font-size: 16px;
  padding: 7px 30px;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.18s;
  outline: none;
  box-sizing: border-box;
  user-select: none;
  font-weight: bold;
}
.case-details-tag:hover,
.case-details-tag.active {
  background: #217bcf;
  color: #fff;
  border-color: #217bcf;
}
@media (max-width: 991px) {
  .case-details-tags {
    gap: 10px;
    margin: 12px 0 18px 0;
  }
  .case-details-tag {
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 18px;
  }
  .case-details-body p {
    padding-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .case-details-body {
    font-size: 14px;
  }
  .case-details-tags {
    gap: 6px;
    margin: 8px 0 12px 0;
  }
  .case-details-tag {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 14px;
  }
}
.case-details-footer {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  margin: 38px 0 90px 0;
  box-sizing: border-box;
}
.case-details-footer-link {
  color: #444;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.18s;
}
.case-details-footer-link:hover {
  color: #217bcf;
}
.case-details-footer-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-details-footer-btn {
  display: inline-block;
  border: 1px solid #217bcf;
  color: #217bcf;
  background: #fff;
  border-radius: 2px;
  font-size: 18px;
  padding: 10px 48px;
  font-weight: 500;
  transition: all 0.18s;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
.case-details-footer-btn:hover {
  background: #217bcf;
  color: #fff;
}
@media (max-width: 991px) {
  .case-details-title {
    font-size: 26px;
  }
  .case-details-description {
    font-size: 16px;
    margin: 25px 0 30px;
  }
  .case-details-footer {
    padding: 22px 10px;
    font-size: 15px;
    margin-bottom: 40px;
  }
  .case-details-footer-btn {
    font-size: 15px;
    padding: 8px 22px;
  }
}
@media (max-width: 767px) {
  .case-details-title {
    font-size: 18px;
    padding-bottom: 12px;
  }
  .case-details-description {
    font-size: 14px;
    margin: 25px 0 20px;
    line-height: 1.8;
  }
  .case-details-body {
    line-height: 1.8;
  }
  .case-details-footer {
    flex-direction: column;
    gap: 16px;
    padding: 16px 4vw;
    margin-bottom: 0;
    text-align: center;
  }
  .case-details-footer-link {
    font-size: 14px;
  }
  .case-details-footer-btn {
    font-size: 14px;
    padding: 7px 0;
    min-width: 120px;
    width: 100%;
    max-width: 220px;
  }
  .case-details-box {
    width: 100%;
    padding: 36px 0 56px;
  }
}
.process-details-box {
  padding: 64px 0;
  display: inline-block;
  width: 100%;
}
.social-share .icon-wechat {
  position: relative;
  z-index: 999;
}
.social-share .icon-wechat .wechat-qrcode {
  z-index: 9999;
}
.process-details-l {
  width: 70%;
  float: left;
}
.process-details-r {
  width: 26%;
  float: right;
}
.case-details-meta-left {
  font-size: 16px;
  float: left;
  color: #858585;
}
.case-details-meta-left span {
  color: #858585;
  margin-right: 30px;
  display: inline-block;
}
.case-details-meta {
  width: 100%;
  float: left;
  line-height: 70px;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 34px;
  padding-top: 5px;
}
.case-details-meta-right {
  float: right;
}
.case-details-meta-right span {
  display: inline-block;
  float: left;
}
.case-details-meta-right #share-1 {
  float: left;
}
.case-details-meta-right #share-1 .social-share-icon {
  background: #cccccc;
  color: #fff;
  border: 1px solid #cccccc;
}
.social-share .icon-weibo:hover {
  background: #ff763b !important;
  border: 1px solid #ff763b !important;
}
.social-share .icon-tencent:hover {
  background: #56b6e7 !important;
  border: 1px solid #56b6e7 !important;
}
.social-share .icon-qq:hover {
  background: #56b6e7 !important;
  border: 1px solid #56b6e7 !important;
}
.social-share .icon-qzone:hover {
  background: #FDBE3D !important;
  border: 1px solid #FDBE3D !important;
}
.social-share .icon-douban:hover {
  background: #33b045 !important;
  border: 1px solid #33b045 !important;
}
.social-share .icon-linkedin:hover {
  background: #0077B5 !important;
  border: 1px solid #0077B5 !important;
}
.social-share .icon-facebook:hover {
  background: #44619D !important;
  border: 1px solid #44619D !important;
}
.social-share .icon-google:hover {
  background: #db4437 !important;
  border: 1px solid #db4437 !important;
}
.social-share .icon-twitter:hover {
  background: #55acee !important;
  border: 1px solid #55acee !important;
}
.social-share .icon-diandian:hover {
  background: #307DCA !important;
  border: 1px solid #307DCA !important;
}
.social-share .icon-wechat:hover {
  border: 1px solid #7bc549 !important;
  background: #7bc549 !important;
}
.related-read-list {
  margin-top: 18px;
  padding: 0;
  list-style: none;
}
.related-read-item {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 17px;
  transition: box-shadow 0.18s;
  cursor: pointer;
  min-height: 72px;
}
.related-read-img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 18px;
  flex-shrink: 0;
  background: #eee;
}
.related-read-title {
  font-size: 14px;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-all;
}
@media (max-width: 991px) {
  .related-read-item {
    padding: 10px 10px;
    min-height: 56px;
    margin-bottom: 12px;
  }
  .related-read-img {
    width: 60px;
    height: 44px;
    margin-right: 10px;
  }
  .related-read-title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .process-details-l {
    width: 100%;
  }
  .process-details-r {
    width: 100%;
  }
  .related-read-item {
    flex-direction: row;
    padding: 8px 6px;
    min-height: 44px;
  }
  .related-read-img {
    width: 44px;
    height: 32px;
    margin-right: 8px;
  }
  .related-read-title {
    font-size: 13px;
  }
  .case-details-meta-left {
    font-size: 14px;
  }
  .case-details-meta-left span {
    margin-right: 8px;
  }
  .case-details-meta {
    line-height: 50px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 24px;
    padding-top: 0;
  }
  .process-details-r {
    margin-top: 40px;
  }
  .related-read-img {
    width: auto;
    height: 62px;
    margin-right: 18px;
  }
  .process-details-box {
    padding: 34px 0 44px;
  }
  .case-details-footer {
    margin-top: 10px;
  }
}
.about-page {
  padding: 110px 0 0;
}
@media (min-width: 991px) {
  .about-page .main-title-cn1 img {
    width: 80px;
    left: -84px;
  }
  .about-page .main-title .main-title-en {
    font-size: 76px;
    color: #F0F0F0;
  }
  .about-page .main-title .main-title-cn {
    font-size: 36px;
  }
}
.gallery-top .swiper-button-prev,
.gallery-top .swiper-button-next {
  color: #217bcf;
  background: #0e6fbd;
  width: 24px;
  height: 65px;
  text-align: center;
  line-height: 65px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: initial;
  bottom: 107px;
}
.gallery-top .swiper-button-prev {
  left: 7%;
}
.gallery-top .swiper-button-next {
  right: 7%;
}
.development-swiper {
  margin: 40px auto 60px auto;
  position: relative;
  padding-top: 100px;
}
.development-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: auto;
  cursor: pointer;
}
.development-swiper .dev-card {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  color: #222;
  transition: all 0.2s ease-in-out;
}
.development-swiper .dev-card h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 8px;
  color: #fff;
}
.development-swiper .dev-card p {
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.development-swiper .swiper-pagination {
  bottom: 0;
}
.development-box {
  position: relative;
  overflow: hidden;
}
.development-swiper-box {
  position: absolute;
  left: 0;
  bottom: 0px;
  right: 0;
}
.development-swiper-box .swiper-container {
  width: 80%;
  margin-left: 10%;
}
.development-swiper-box .swiper-slide-thumb-active .dev-card {
  position: relative;
  margin-top: -20px;
  background: #fff;
  transform: translateY(-11px);
}
.development-swiper-box .swiper-slide-thumb-active .dev-card h3 {
  color: #322F2A;
  font-weight: bold;
}
.development-swiper-box .swiper-slide-thumb-active .dev-card p {
  font-size: 14px;
  color: #707070;
  -webkit-line-clamp: 4;
}
@media (max-width: 991px) {
  .development-swiper {
    max-width: 98vw;
  }
  .development-swiper .dev-card {
    padding: 18px 8px 18px 8px;
    max-width: 98vw;
  }
}
@media (max-width: 767px) {
  .development-swiper .swiper-slide {
    max-width: 98vw;
  }
  .development-swiper .dev-card {
    padding: 12px 4px 12px 4px;
    font-size: 14px;
    min-height: 120px;
  }
}
.honor-swiper-box {
  overflow: hidden;
  position: relative;
}
.honor-swiper-box .swiper-button-next,
.honor-swiper-box .swiper-button-prev {
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  text-align: center;
  width: 47px;
  height: 47px;
  line-height: 47px;
  transition: all 0.2s ease-in-out;
}
.honor-swiper-box .swiper-button-next:hover,
.honor-swiper-box .swiper-button-prev:hover {
  background: #fff;
  border: 1px solid #e5e5e5;
}
.honor-swiper-box .honor-swiper {
  margin: 0 80px;
  overflow: hidden;
}
.honor-swiper-box .swiper-slide img {
  width: 100%;
}
@media (max-width: 1600px) {
  .about-page {
    padding: 80px 0 0;
  }
  .team-body::after {
    clear: both;
    content: ' ';
    display: inline-block;
    width: 100%;
  }
  .team-img-row {
    height: 130px;
    width: 100%;
    float: left;
  }
  .team-img-row img {
    top: -120px;
    width: 25%;
    float: left;
  }
  .team-intro {
    width: 100%;
    float: left;
  }
}
@media (max-width: 1440px) {
  .team-section {
    margin: 4px auto 60px auto;
    padding: 48px 0 40px 0;
  }
  .gallery-top .swiper-button-prev {
    left: 5%;
  }
  .gallery-top .swiper-button-next {
    right: 5%;
  }
  .core-service-section-box {
    margin-top: 100px;
    padding: 100px 0 40px;
  }
  .team-img-row {
    height: 90px;
  }
  .core-service-item {
    padding: 32px 37px;
  }
  .team-intro {
    padding: 0 27px;
  }
  .team-desc {
    font-size: 16px;
    padding-bottom: 130px;
  }
}
.swiper-pape-pagination {
  display: none;
}
.swiper-pape-pagination .swiper-pagination-bullet {
  background: #f1f1f1;
}
.swiper-pape-pagination .swiper-pagination-bullet-active {
  background: #0168b7;
}
@media (max-width: 991px) {
  .honor-swiper-box .swiper-button-next,
  .honor-swiper-box .swiper-button-prev {
    display: none;
  }
  .honor-swiper-box .honor-swiper {
    margin: 0 40px;
    overflow: hidden;
  }
  .gallery-thumbs {
    padding-bottom: 60px;
  }
  .honor-swiper-box {
    padding-bottom: 50px;
  }
  .swiper-pape-pagination {
    display: block;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 28px;
  }
  .about-section-img {
    width: 100%;
  }
  .about-section-content {
    width: 100%;
    padding-top: 60px;
  }
  .development-swiper .dev-card {
    padding: 18px;
    max-width: 98vw;
  }
  .main-title .main-title-en {
    font-size: 60px;
  }
  .core-service-item {
    width: 48%;
    flex: none;
    float: left;
  }
  .core-service-section {
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 32px;
    margin-bottom: 40px;
  }
  .core-service-section-box {
    margin-top: 60px;
    padding: 60px 0 20px;
  }
  .team-img-row {
    height: auto;
    display: flex;
    padding: 8px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  .team-img-row img {
    width: 48%;
    top: initial;
    padding-bottom: 8px;
    max-width: initial;
    box-shadow: none;
  }
  .team-body {
    border-radius: 8px;
  }
  .team-section {
    margin: 4px auto 0px auto;
    padding: 48px 0 40px 0;
  }
  .team-desc {
    font-size: 14px;
    padding-bottom: 0px;
  }
  .development-box {
    overflow: initial;
  }
}
@media (max-width: 767px) {
  .main-title .main-title-en {
    font-size: 34px;
  }
  .about-page {
    padding: 30px 0 0;
  }
  .gallery-thumbs {
    padding-bottom: 50px;
  }
  .about-section-img::after {
    content: ' ';
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f7f7f7;
    transform: translate(13px, 20px);
    z-index: 1;
  }
  .about-section-content {
    padding-top: 30px;
    font-size: 14px;
  }
  .about-section-content li {
    font-size: 14px;
  }
  .about-section-content ul {
    margin-top: 12px;
  }
  .gallery-top img {
    height: 220px;
    width: 100%;
  }
  .development-swiper-box {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 0;
  }
  .development-swiper-box .dev-card {
    height: 180px;
  }
  .development-swiper {
    padding-top: 20px;
  }
  .development-swiper-box .swiper-container {
    width: 100%;
    margin-left: 0;
  }
  .development-swiper-box .dev-card {
    box-shadow: none;
  }
  .development-swiper-box .swiper-slide-thumb-active .dev-card {
    position: relative;
    margin-top: 0;
    transform: translateY(0);
  }
  .development-swiper .dev-card {
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px) !important;
  }
  .development-swiper {
    padding-top: 3px;
  }
  .development-swiper .dev-card h3 {
    font-size: 16px;
  }
  .development-swiper .dev-card h3 {
    color: #322F2A;
    font-weight: bold;
  }
  .development-swiper .dev-card p {
    color: #707070;
  }
  .gallery-top .swiper-button-prev,
  .gallery-top .swiper-button-next {
    display: none;
  }
  .development-swiper {
    margin: 0px auto 0px auto;
  }
  .core-service-item {
    width: 100%;
    flex: none;
    float: left;
    padding: 22px 27px 34px;
  }
  .core-service-title {
    margin-bottom: 8px;
  }
  .team-img-row {
    flex-direction: row;
    margin-top: 8px;
    margin-bottom: 0px;
  }
  .team-img-row img {
    padding: 0;
  }
  .team-intro {
    padding: 8px 17px;
  }
  .team-body {
    padding-bottom: 0px;
  }
  .contact_box-wap {
    padding-top: 40px;
  }
}
