@charset "UTF-8";
/* 定义主题色 */
/* 定义文字颜色 */
/* 定义背景颜色 */
/* 定义底部边框颜色 */
/* 定义主题色 */
/* 定义文字颜色 */
/* 定义背景颜色 */
/* 定义底部边框颜色 */
::-webkit-scrollbar {
  width: 6px;
  /*滚动条宽度*/
  height: 6px;
  /*滚动条高度*/
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
  /* 滚动条 拖动条 */
  background-color: #2c63a9;
  border-radius: 6px;
}

/*滚动条轨道*/
::-webkit-scrollbar-track {
  /* 滚动条背景槽 */
  background-color: #eee;
  border-radius: 6px;
}

::-moz-selection {
  background-color: #2c63a9;
  color: #fff;
}

::selection {
  background-color: #2c63a9;
  color: #fff;
}

/* 自定义常用 */
.flex-center,
.flex-row-start,
.flex-row-center,
.flex-row-end,
.flex-row-between,
.flex-row-evenly,
.flex-col,
.flex-col-start,
.flex-col-end,
.flex-col-stretch,
.flex-col-baseline,
.flex-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.flex-row-start {
  justify-content: flex-start;
}

.flex-row-center {
  justify-content: center;
}

.flex-row-end {
  justify-content: flex-end;
}

.flex-row-between {
  justify-content: space-between;
}

.flex-row-evenly {
  justify-content: space-evenly;
}

.flex-row-around {
  justify-content: space-around;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 0;
}

.flex-col {
  flex-direction: column;
}

.flex-col-start {
  align-items: flex-start;
  align-content: flex-start;
}

.flex-col-end {
  align-items: flex-end;
  align-content: flex-end;
}

.flex-col-stretch {
  align-items: stretch;
  align-content: stretch;
}

.flex-col-baseline {
  align-items: baseline;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/* 遍历生成文本省略 */
.line-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.line-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

@font-face {
  font-family: "SourceHanSansSC";
  src: url("../fonts/SourceHanSansSC-Regular-2.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  min-width: 320px;
  font-family: "SourceHanSansSC", "Microsoft YaHei", "Source Han Sans CN";
  overflow-x: hidden;
  line-height: 1.2;
  overflow-wrap: break-word;
}

/* 自定义常用样式 */
button:hover {
  opacity: 0.8;
}

a:hover {
  cursor: pointer;
  color: #2c63a9;
}

img {
  transition: all 0.3s;
}

.responsive-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}

/* 主容器 */
.container {
  max-width: 1880px;
  padding: 0 100px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 60px !important;
  }
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 30px !important;
  }
}
@media screen and (max-width: 540px) {
  .container {
    padding: 0 15px !important;
  }
}

.dialog-wrapper {
  width: 740px;
}

/* 去除 input[type="number"] 的加减按钮 */
/* input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
} */

/* 重置 layui 样式 */

/* .layui-form-checked[lay-skin="primary"] > i {
  background-color: #2c63a9;
  border-color: #2c63a9 !important;
} */

.layui-input:focus,
.layui-textarea:focus {
  border-color: #2c63a9 !important;
  box-shadow: 0 0 0 3px rgba(44, 99, 169, 0.08);
}

.cool-menu {
  display: none;
  align-items: center;
}
.cool-menu .line-wrap {
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.cool-menu .line-wrap div[class^="line"] {
  transition: all 0.3s ease;
  width: 28px;
  border-top: 2px solid #222;
  margin-bottom: 8px;
}
.cool-menu .line-wrap div.line3 {
  margin-bottom: 0;
}

.menu-box {
  position: fixed;
  top: 137px;
  width: 100%;
  height: calc(100vh - 137px);
  left: 100%;
  z-index: 10;
  background-color: #f8f8f8;
  overflow: auto;
  transition: left 0.3s;
}
.menu-box.active {
  left: 0;
}
.menu-box .menu-list {
  padding: 20px;
}
.menu-box .menu-list li {
  position: relative;
}
.menu-box .menu-list li .sub-nav {
  display: none;
  padding: 0 15px;
}
.menu-box .menu-list li .sub-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
}
.menu-box .menu-list .menu-item {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
  font-size: 14px;
  color: #333;
  font-weight: 700;
}
.menu-box .menu-list .menu-item .layui-icon {
  font-weight: 400;
}
.menu-box .menu-list .menu-item:hover {
  color: #2c63a9;
}

.mb-sidebar {
  display: none;
  position: sticky;
  top: 135px;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0 30px;
}
.mb-sidebar .menu {
  display: flex;
  align-items: center;
  line-height: 47px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.5s;
}
.mb-sidebar .menu-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mb-aside {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  overflow: hidden auto;
  transform: translate(-100%);
  transition: background-color 0.5s, opacity 0.5s, transform 0.3s ease;
  width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background-color: #fff;
}
.mb-aside.open {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: background-color 0.5s, opacity 0.25s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.mb-aside h2 {
  font-size: 14px;
  color: #9b9b9b;
}
.mb-aside .menu-list {
  flex-grow: 1;
  text-align: center;
}
.mb-aside .menu-list .menu-item {
  cursor: pointer;
}
.mb-aside .menu-list .menu-item:not(:last-child) {
  margin-bottom: 30px;
}
.mb-aside .menu-list .sub-menu {
  font-size: 14px;
  color: #222;
  font-weight: 700;
}
.mb-aside .menu-list .sub-menu p {
  margin-top: 6px;
}
.mb-aside .logout {
  margin-top: 30px;
  font-size: 14px;
  color: #2c63a9;
}
.mb-aside .logout img {
  margin-right: 10px;
}

.mb-mask {
  display: none;
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s;
}

/* 头部区域-电脑端 */
.pc-header {
  position: sticky;
  z-index: 10000;
  top: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
  height: 80px;
  padding-left: 40px;
  padding-right: 60px;
}
.pc-header .logo {
  width: 200px;
}
.pc-header .nav-list {
  width: 700px;
}
.pc-header .nav-list .nav-item {
  position: relative;
  font-size: 17px;
  color: #000;
}
.pc-header .nav-list .nav-item .adorn-icon {
  display: none;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  z-index: 100;
}
.pc-header .nav-list .nav-item > a {
  line-height: 80px;
  height: 80px;
}
.pc-header .nav-list .nav-item:hover,
.pc-header .nav-list .nav-item.active {
  color: #2c63a9;
}
.pc-header .nav-list .nav-item:hover .adorn-icon,
.pc-header .nav-list .nav-item.active .adorn-icon {
  display: flex;
}
.pc-header .nav-list .nav-item .sub-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
  border-top: 1px solid #96b3d7;
}
.pc-header .nav-list .nav-item .sub-nav .left-mes {
  flex-shrink: 0;
  width: 230px;
  padding: 40px 0;
  padding-right: 67px;
  border-right: 1px solid #e5e5e5;
}
.pc-header .nav-list .nav-item .sub-nav .left-mes h2 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.pc-header .nav-list .nav-item .sub-nav .left-mes p {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}
.pc-header .nav-list .nav-item .sub-nav .left-mes p .highlight {
  color: #e56814;
  font-weight: 700;
}
.pc-header .nav-list .nav-item .sub-nav .right-content {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 11px;
  padding: 40px 0;
  padding-left: 40px;
  align-items: stretch;
}
.pc-header .nav-list .nav-item .sub-nav .right-content .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 6px;
  background-color: #f8f8f8;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.pc-header .nav-list .nav-item .sub-nav .right-content .title:hover {
  background-color: #d5e0ef;
  color: #2f64a6;
}

.pc-header .nav-list .nav-item .sub-nav .right-content .sub-title {
  /* display: none; */
  font-size: 14px;
  color: #333;
  line-height: 36px;
  padding: 0 16px;
}

.pc-header .nav-list .nav-item .sub-nav .right-content .title:hover ~ .sub-title {
  display: block;
}

.pc-header .nav-list .nav-item .sub-nav .right-content .sub-title a {
  display: block;
  line-height: 1.2;
}
.pc-header .nav-list .nav-item .sub-nav .right-content .sub-title a:not(:last-child) {
  margin-bottom: 20px;
}

/* 其它方式下拉菜单 */
.pc-header .nav-list .nav-item .sub-nav-wrap {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
  padding: 40px 0;
  border-top: 1px solid #96b3d7;
}

.pc-header .nav-list .nav-item .sub-nav-wrap .other-sub-nav {
  /* position: absolute;
  right: 0; */
  gap: 20px;
}
.pc-header .nav-list .nav-item .sub-nav-wrap a {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  padding: 16px;
  border-radius: 6px;
  background-color: #f8f8f8;
  transition: all 0.3s;
  cursor: pointer;
}

.pc-header .nav-list .nav-item .sub-nav-wrap a:hover {
  color: #2c63a9;
}

.pc-header .search-box {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.pc-header .search-box p {
  margin-left: 12px;
}

.pc-header .tel-info {
  margin-left: 60px;
  font-size: 14px;
  color: #000;
}
.pc-header .tel-info .tel {
  margin-left: 10px;
  margin-top: 6px;
  font-size: 14px;
  color: #000;
  font-weight: 700;
}
.pc-header .tel-info .tel .tel-num {
  font-size: 24px;
  color: #e56814;
  font-weight: 700;
}

.mask-layer {
  display: none;
  width: 100vw;
  background: #f7f7f7;
  position: fixed;
  z-index: 9999;
}
.mask-layer .icon-wrap:hover {
  cursor: pointer;
  color: #2c63a9;
}
.mask-layer .mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 80px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.mask-layer .search-wrapper {
  position: relative;
  z-index: 2;
  padding: 40px 100px;
  background-color: #f7f7f7;
}

.mask-layer .search-wrapper .icon-wrap .layui-icon {
  font-size: 24px;
}

.mask-layer .search-wrapper h3 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.mask-layer .search-wrapper input {
  width: 40%;
  box-shadow: none;
  border: none;
  background: #fff;
  border-radius: 0;
  color: #808080;
  height: 40px;
  line-height: 40px;
  padding: 0 45px 0 15px;
  text-align: left;
  font-size: 12px;
}
.mask-layer .search-wrapper button {
  width: calc(10% - 20px);
  margin-left: 20px;
  align-self: stretch;
  border: none;
  /* background-color: #f7f7f7; */
  background-color: #2c63a9;
  color: white;
}

/* 头部区域-手机端 */
.mb-header {
  display: none;
  position: sticky;
  z-index: 999;
  top: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
}
.mb-header .top-mes {
  height: 80px;
  padding: 0 20px;
}
.mb-header .top-mes .logo {
  width: 180px;
}
.mb-header .top-mes .search-box {
  font-size: 16px;
  color: #000;
  cursor: pointer;
}
.mb-header .top-mes .search-box p {
  margin-left: 12px;
}

.mb-header .top-mes .cool-menu {
  display: flex;
  align-items: center;
  height: 80px;
}
.mb-header .top-mes .cool-menu .line-wrap {
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.mb-header .top-mes .cool-menu .line-wrap div[class^="line"] {
  transition: all 0.3s ease;
  width: 28px;
  border-top: 2px solid #222;
  margin-bottom: 8px;
}
.mb-header .top-mes .cool-menu .line-wrap div.line3 {
  margin-bottom: 0;
}
.mb-header .top-mes .menu-box {
  position: fixed;
  top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  left: 100%;
  z-index: 10;
  background-color: #f8f8f8;
  overflow: auto;
  transition: left 0.3s;
}
.mb-header .top-mes .menu-box.active {
  left: 0;
}
.mb-header .top-mes .menu-box .menu-list {
  padding: 20px;
}
.mb-header .top-mes .menu-box .menu-list li {
  position: relative;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav {
  display: none;
  padding: 0 15px;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
}
.mb-header .top-mes .menu-box .menu-list .menu-item {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
  font-size: 14px;
  color: #333;
  font-weight: 700;
}
.mb-header .top-mes .menu-box .menu-list .menu-item .layui-icon {
  font-weight: 400;
}
.mb-header .top-mes .menu-box .menu-list .menu-item:hover {
  color: #2c63a9;
}

/* 底部区域 */
footer .pc-footer {
  background-color: #2f64a6;
}
footer .pc-footer .footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid #fff;
}
footer .pc-footer .footer-center {
  padding: 40px 0;
}
footer .pc-footer .footer-center dt {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
footer .pc-footer .footer-center dd {
  font-size: 14px;
  color: #dae2ee;
  font-weight: 500;
  margin-bottom: 14px;
}
footer .pc-footer .footer-center dd a:hover {
  color: #fff;
}
footer .pc-footer .footer-center .consult-info dd {
  font-size: 24px;
  color: #dae2ee;
  font-weight: 500;
  margin-bottom: 40px;
}
footer .pc-footer .footer-center .consult-info .num {
  margin-left: 10px;
}
footer .pc-footer .footer-center .consult-info .qrcode-info img {
  width: 88px;
}
footer .pc-footer .footer-center .consult-info .qrcode-info p {
  font-size: 14px;
  color: #dae2ee;
  font-weight: 700;
  margin-top: 10px;
}
footer .pc-footer .footer-bottom {
  padding: 20px 0;
  background-color: #215596;
}
footer .pc-footer .footer-bottom .copyright {
  font-size: 16px;
  color: #dae2ee;
  font-weight: 500;
}
footer .pc-footer .footer-bottom .copyright a:hover {
  color: #fff;
}

footer .pc-footer .footer-bottom .friend-link {
  position: relative;
  width: 200px;
  cursor: pointer;
  padding: 13px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #dae2ee;
  font-weight: 500;
}

footer .pc-footer .footer-bottom .friend-link .link-list {
  position: absolute;
  bottom: 100%;
  opacity: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

footer .pc-footer .footer-bottom .friend-link .link-list a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 10px;
  display: block;
  transition: all 0.3s;
}
footer .pc-footer .footer-bottom .friend-link .layui-icon {
  transition: all 0.3s;
}

footer .pc-footer .footer-bottom .friend-link .link-list a:hover {
  color: #2c63a9;
}

footer .pc-footer .footer-bottom .friend-link:hover .link-list {
  opacity: 1;
}
footer .pc-footer .footer-bottom .friend-link:hover .layui-icon {
  transform: rotate(180deg);
}

/* 顶部 banner */
.top-banner {
  position: relative;
  height: 480px;
}

.top-banner .container {
  height: 100%;
}

.top-banner .banner-mes {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-banner h1 {
  width: max-content;
  margin-bottom: 37px;
  font-size: 60px;
  color: #fff;
  font-weight: 700;
}
.top-banner p {
  font-size: 30px;
  color: #fff;
}
.top-banner .breadcrumb-wrapper {
  position: relative;
}
.top-banner .breadcrumb {
  position: absolute;
  overflow-x: auto;
  bottom: 40px;
  right: 0;
}

.top-banner .breadcrumb::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.top-banner .breadcrumb .arrow-icon {
  margin: 0 20px;
}
.top-banner .breadcrumb a {
  flex-shrink: 0;
  font-size: 16px;
  color: #fff;
}

/* 分页 */
.pagination-wrapper {
  padding-bottom: 100px;
}
.pagination-wrapper .jump-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #dcdcdc;
  color: #2f64a6;
  cursor: pointer;
  margin: 0 15px;
}
.pagination-wrapper .jump-btn:hover,
.pagination-wrapper .jump-btn.active {
  background-color: #2f64a6;
  color: #fff;
}

.pagination-wrapper li {
  margin: 0 5px;
  font-size: 16px;
  color: #000;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
}
.pagination-wrapper li a {
  display: block;
  padding: 0 4px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.pagination-wrapper li:hover,
.pagination-wrapper li.active {
  background-color: #2f64a6;
  color: #fff;
  border-color: #2f64a6;
}

.pagination-wrapper li a:hover {
  color: currentColor;
}

/* 上下页 */
.page-wrapper {
  padding: 30px 0 44px;
  border: 1px solid #efefef;
  border-width: 1px 0;
}
.page-wrapper .prev-page,
.page-wrapper .next-page {
  width: 45%;
}
.page-wrapper a {
  font-size: 14px;
  color: #787878;
  transition: color 0.3s;
}
.page-wrapper a:hover {
  color: #2c63a9;
}
.page-wrapper .layui-icon-left {
  margin-right: 16px;
}
.page-wrapper .layui-icon-right {
  margin-left: 16px;
}
.page-wrapper p {
  margin-top: 14px;
  font-size: 16px;
  color: #222;
  font-weight: 700;
}
.page-wrapper .next-page p {
  text-align: right;
}

/* 通用模块 */
.common-wrapper .swiper-section,
.common-wrapper .rec-swiper-section {
  position: relative;
}
.common-wrapper .swiper-section .swiper-button-prev,
.common-wrapper .rec-swiper-section .swiper-button-prev {
  padding: 20px;
  left: -20px;
  transform: translateX(-100%);
  --swiper-navigation-size: 16px;
  border: 1px solid #e5e5e5;
  color: #2c63a9;
}
.common-wrapper .swiper-section .swiper-button-next,
.common-wrapper .rec-swiper-section .swiper-button-next {
  padding: 20px;
  right: -20px;
  transform: translateX(100%);
  --swiper-navigation-size: 16px;
  background-color: #2c63a9;
  color: #fff;
}
.common-wrapper .rec-swiper {
  padding-bottom: 52px;
}
.common-wrapper .rec-swiper .swiper-pagination {
  bottom: 0;
}
.common-wrapper .rec-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #e5e5e5;
}
.common-wrapper .rec-swiper .swiper-pagination-bullet-active {
  background-color: #2f64a6;
}

.common-wrapper .table-wrapper {
  overflow-x: auto;
}
.common-wrapper table {
  width: 100% !important;
  border-collapse: collapse;
}
.common-wrapper table:not(:last-child) {
  margin-bottom: 30px;
}
.common-wrapper table td,
.common-wrapper table th {
  /* text-align: left; */
  border: 1px solid #e2e5ec;
  white-space: nowrap;
}
.common-wrapper table th {
  padding: 15px 20px;
  font-size: 18px;
  color: #fff;
  background-color: #2f64a6;
  /* text-align: center; */
}
.common-wrapper table td {
  padding: 15px 20px;
  font-size: 14px;
  color: #333;
  line-height: 1;
}
.common-wrapper table td p {
  font-size: 14px !important ;
  color: #333 !important;
  margin-bottom: 0 !important;
}

.common-wrapper table th p {
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 0 !important;
}
/* .common-wrapper table td.show-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background-color: #2f64a6;
  border-radius: 50%;
} */

/* .common-wrapper table td p {
  margin-bottom: 0 !important;
} */

.common-wrapper .customer-section .left-mes {
  width: 37.619047619%;
}
.common-wrapper .customer-section .left-mes h2 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
}
.common-wrapper .customer-section .left-mes p {
  margin-top: 30px;
  font-size: 22px;
  color: #333;
  line-height: 30px;
}
.common-wrapper .customer-section .cust-swiper {
  margin-top: 80px;
}
.common-wrapper .customer-section .cust-swiper .cust-img {
  background-color: #fff;
  min-height: 130px;
  padding: 0 20px;
  object-fit: contain;
}

.icon-sel-wrapper {
  position: sticky;
  top: 80px;
  z-index: 99;
  background-color: #fff;
}
.icon-sel-wrapper .adorn-line {
  position: relative;
}

.icon-sel-wrapper .adorn-line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e2e5ec;
}
.icon-sel-wrapper .product-icon-wrapper {
  display: flex;
  align-items: center;
  transition: transform 250ms ease;
  /* display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  justify-content: space-between; */
}
.icon-sel-wrapper .product-icon-wrapper .icon-item {
  width: calc(1680px / 7);
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* padding: 30px 20px; */
  padding: 20px;
  /* min-height: 103px; */
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  z-index: 10;
  margin-left: -1px;
  overflow: hidden;
}
.icon-sel-wrapper .product-icon-wrapper .icon-item .name {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.icon-sel-wrapper .product-icon-wrapper .icon-item img {
  height: 40px;
  object-fit: contain;
}

.icon-sel-wrapper .product-icon-wrapper .icon-item .layui-icon {
  /* margin-top: 20px; */
  margin-top: 10px;
  display: block;
  color: #777;
  transition: all 0.3s;
}

.icon-sel-wrapper .product-icon-wrapper .icon-item:hover {
  overflow: visible;
}
.icon-sel-wrapper .product-icon-wrapper .icon-item.selected .layui-icon,
.icon-sel-wrapper .product-icon-wrapper .icon-item:hover .layui-icon {
  color: #fff;
  transform: rotate(180deg);
}

.icon-sel-wrapper .product-icon-wrapper .cate-list {
  position: absolute;
  z-index: 9;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  padding: 40px 30px;
  background-color: #f2f2f2;
  transition: all 0.3s;
}

.icon-sel-wrapper .product-icon-wrapper .icon-item:hover .cate-list {
  opacity: 1;
  top: calc(100% + 1px);
}
.icon-sel-wrapper .product-icon-wrapper .cate-list a {
  display: block;
  font-size: 16px;
  /* color: #888888; */
  color: #333;
  /* font-weight: 600; */
  transition: all 0.3s;
}
.icon-sel-wrapper .product-icon-wrapper .cate-list a:not(:last-child) {
  margin-bottom: 12px;
}
.icon-sel-wrapper .product-icon-wrapper .cate-list a:hover {
  color: #2c63a9;
}

.icon-sel-wrapper .product-icon-wrapper .icon-item.selected,
.icon-sel-wrapper .product-icon-wrapper .icon-item:hover {
  z-index: 99;
  background-color: #2c63a9;
}
.icon-sel-wrapper .product-icon-wrapper .icon-item.selected img,
.icon-sel-wrapper .product-icon-wrapper .icon-item:hover img {
  filter: brightness(0) invert(1);
}
.icon-sel-wrapper .product-icon-wrapper .icon-item.selected .name,
.icon-sel-wrapper .product-icon-wrapper .icon-item:hover .name {
  color: #fff;
}

.scroll-view-wrapper {
  position: relative;
  overflow: visible;
}

.scroll-view-wrapper button {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #2c63a9;
  color: #2c63a9;
  z-index: 99;
  background: #fff;
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}
.scroll-view-wrapper .left-btn {
  display: none;
  left: 0;
  transform: translate(-100%, -50%);
}

.scroll-view-wrapper .right-btn {
  display: none;
  right: 0;
  transform: translate(100%, -50%);
}
.scroll-view-wrapper .scroll-view {
  /* overflow-x: hidden; */
}
.scroll-view-wrapper .scroll-view::-webkit-scrollbar {
  /* display: none; */
}

.common-wrapper .product-list-wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 20px;
}

.common-wrapper .product-list-wrapper .product-item {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #f2f2f2;
}

.common-wrapper .product-list-wrapper .product-item .img-wrapper {
  background-color: #f8f8f8;
  /* padding: 66px 73px; */
  padding: 40px;
}

.common-wrapper .product-list-wrapper .product-item .img-wrapper img {
  /* height: 200px;
  object-fit: contain; */
}

.common-wrapper .product-list-wrapper .product-item .title {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  padding: 30px 50px;
  background-color: #f2f2f2;
  text-align: center;
}

.common-wrapper .product-list-wrapper .product-item:hover .pop-box {
  top: 0;
}
.common-wrapper .product-list-wrapper .product-item .pop-box {
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 40px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(to bottom, transparent, #2c63a9 50%);
}

.common-wrapper .product-list-wrapper .product-item .pop-box h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e5ec;
}

.common-wrapper .product-list-wrapper .product-item .pop-box p {
  font-size: 16px;
  color: #fff;
  margin: 20px 0 30px;
  line-height: 24px;
  /* 显示5行 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.common-wrapper .product-list-wrapper .product-item .pop-box button {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e56814;
  color: #fff;
  transition: all 0.3s;
}

.common-wrapper .news-wrapper {
  padding: 80px 0;
}

.common-wrapper .news-wrapper h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

.common-wrapper .news-wrapper .news-box {
  padding: 40px;
  background-color: #fff;
}

.common-wrapper .news-wrapper .rec-news {
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.common-wrapper .news-wrapper .rec-news .news-img {
  /* width: 500px; */
  width: calc(500 / 1600 * 100%);
  min-width: 300px;
  flex-shrink: 0;
}
.common-wrapper .news-wrapper .rec-news .news-info {
  margin-left: 40px;
  flex: 1;
  min-width: 0;
}
.common-wrapper .news-wrapper .rec-news .news-info .tag {
  font-size: 12px;
  color: #666;
  background-color: #ebf3fd;
  padding: 8px 12px;
  border-radius: 6px;
  width: max-content;
}
.common-wrapper .news-wrapper .rec-news .news-info h4 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin: 20px 0;
  transition: all 0.3s;
}
.common-wrapper .news-wrapper .rec-news .news-info p {
  font-size: 16px;
  color: #333;
  line-height: 24px;
}
.common-wrapper .news-wrapper .rec-news .news-info .date {
  font-size: 14px;
  color: #666;
  margin-top: 35px;
}
.common-wrapper .news-wrapper .rec-news .news-info .more-wrapper {
  margin-top: 40px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.common-wrapper .news-wrapper .rec-news .news-info .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2f64a6;
  transition: all 0.3s;
}
.common-wrapper .news-wrapper .rec-news:hover:where(.news-info h4, .more-wrapper button) {
  color: #2f64a6;
}

.common-wrapper .news-wrapper .news-list {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 80px;
}
.common-wrapper .news-wrapper .news-list .news-item {
  font-size: 16px;
  color: #333;
  line-height: 24px;
  transition: all 0.3s;
}
.common-wrapper .news-wrapper .news-list .news-item:hover {
  color: #2f64a6;
}

.common-wrapper .news-wrapper .news-list .news-item .news-content {
  flex: 1;
  min-width: 0;
  margin-right: 30px;
}

.common-wrapper .news-wrapper .news-list .news-item .news-content::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #2f64a6;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 6px;
}

.common-wrapper .news-wrapper .news-list .news-item .date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.common-wrapper .search-keyword-wrapper {
  background-color: #eee;
  padding: 22px 0;
  font-size: 16px;
  color: #333;
}
.common-wrapper .search-keyword-wrapper .keyword-title {
  flex-shrink: 0;
  font-size: 16px;
  color: #2c63a9;
  font-weight: 700;
}

.common-wrapper .search-keyword-wrapper .keyword-list {
  overflow-x: auto;
}

.common-wrapper .search-keyword-wrapper .keyword-list::-webkit-scrollbar {
  display: none;
}

.common-wrapper .search-keyword-wrapper .keyword-list a {
  flex-shrink: 0;
}

/* 首页 */
#home-wrapper .home-swiper .swiper-info {
  position: relative;
  padding: 240px 0 380px;
}

#home-wrapper .home-swiper .swiper-slide {
  align-self: stretch;
  height: unset;
}
#home-wrapper .home-swiper .swiper-info h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .home-swiper .swiper-info h3 {
  margin: 20px 0 40px;
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .home-swiper .swiper-info p {
  font-size: 24px;
  color: #fff;
  /* max-width: 647px; */
}
#home-wrapper .home-swiper .swiper-info ul {
  margin: 60px 0 0;
  width: calc(1000 / 1680 * 100%);
  flex-wrap: wrap;
  gap: 20px 60px;
}

#home-wrapper .home-swiper .swiper-info ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
}

#home-wrapper .home-swiper .swiper-info ul li::before {
  content: "";
  flex-shrink: 0;
  margin-right: 10px;
  width: 6px;
  height: 16px;
  background-color: #e56814;
}

#home-wrapper .home-swiper .swiper-info .intro-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 18px;
  color: #fff;
  gap: 20px 80px;
}

#home-wrapper .home-swiper .swiper-info .intro-list .intro-item {
  display: flex;
  align-items: center;
}

#home-wrapper .home-swiper .swiper-info .intro-list .intro-item::before {
  content: "";
  flex-shrink: 0;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e56814;
}

#home-wrapper .home-swiper .swiper-mes {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  bottom: 40px;
}
#home-wrapper .home-swiper .bottom-mes {
  /* position: absolute;
  z-index: 99;
  bottom: 40px;
  left: 0;
  right: 0; */
  margin-top: 80px;
  padding: 20px;
  background-color: #fff;
}
#home-wrapper .home-swiper .bottom-mes .search-box {
  font-size: 30px;
  color: #2c63a9;
  font-weight: 700;
  margin-bottom: 20px;
}
#home-wrapper .home-swiper .bottom-mes .search-box .search-content {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}
#home-wrapper .home-swiper .bottom-mes .search-box .search-content span:first-child {
  color: #2c63a9;
}
#home-wrapper .home-swiper .bottom-mes .contact-box {
  /* padding: 10px 30px;
  margin-left: 30px; */
  padding: 20px;
  margin-left: 20px;
  flex-shrink: 0;
}
#home-wrapper .home-swiper .bottom-mes .contact-box .tel-info {
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
#home-wrapper .home-swiper .bottom-mes .contact-box .tel-info p {
  margin-top: 10px;
  /* font-size: 30px; */
  font-size: 26px;
  word-break: break-all;
}
#home-wrapper .home-swiper .swiper-pagination {
  /* bottom: 226px; */
  position: unset;
  width: auto;
  text-align: left;
}
#home-wrapper .home-swiper .swiper-pagination-bullet {
  position: relative;
  margin: 0 5px;
  width: 40px;
  height: 3px;
  opacity: 1;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
#home-wrapper .home-swiper .swiper-pagination-bullet::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  transition: width 3s;
}
#home-wrapper .home-swiper .swiper-pagination-bullet-active::after {
  background-color: #fff;
  width: 100%;
}
#home-wrapper .product-center {
  padding: 100px 0;
  background-color: #f5f7f9;
}
#home-wrapper .product-center .header {
  text-align: center;
}
#home-wrapper .product-center .header h2 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .product-center .header p {
  margin-top: 20px;
  font-size: 22px;
  color: #757e89;
}
#home-wrapper .product-center .header p .highlight {
  color: #e56814;
  font-weight: 700;
}
#home-wrapper .product-center .tab-wrapper {
  margin-top: 60px;
}
#home-wrapper .product-center .tab-wrapper .product-icon {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 25px;
  justify-content: space-between;
  margin-bottom: 40px;
}
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  min-height: 103px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item img {
  height: 40px;
}

#home-wrapper .product-center .tab-wrapper .product-icon .icon-item .name {
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  text-align: center;
}
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item.selected,
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item:hover {
  background-color: #2c63a9;
}
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item.selected img,
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item:hover img {
  filter: brightness(0) invert(1);
}
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item.selected .name,
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item:hover .name {
  color: #fff;
}
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item.selected::after,
#home-wrapper .product-center .tab-wrapper .product-icon .icon-item:hover::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 14px;
  height: 14px;
  background-color: #2c63a9;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 50% 100%);
  clip-path: polygon(0% 0%, 100% 0, 50% 100%);
}
#home-wrapper .product-center .tab-wrapper .product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
#home-wrapper .product-center .tab-wrapper .product-list:not(:first-child) {
  display: none;
}
#home-wrapper .product-center .tab-wrapper .product-list .product-item {
  background-color: #fff;
  padding: 40px;
}
#home-wrapper .product-center .tab-wrapper .product-list .product-item h4 {
  /* font-size: 24px; */
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .product-center .tab-wrapper .product-list .product-item p {
  font-size: 15px;
  color: #000;
  line-height: 24px;
  margin: 20px 0 30px;
  line-height: 24px;
}
#home-wrapper .product-center .tab-wrapper .product-list .product-item button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  color: #fff;
  transition: all 0.3s;
}
#home-wrapper .product-center .tab-wrapper .product-list .product-item button:hover {
  background-color: #e56814;
}
#home-wrapper .product-center .tab-wrapper .product-list .product-item .pro-img {
  flex-shrink: 0;
  width: 200px;
  /* height: 95px; */
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 30px;
}
#home-wrapper .product-center .tab-wrapper .more-wrapper {
  margin-top: 40px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .product-center .tab-wrapper .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  color: #fff;
  transition: all 0.3s;
}
#home-wrapper .product-center .tab-wrapper .more-wrapper button:hover {
  background-color: #e56814;
}
#home-wrapper .product-advantage {
  padding: 140px 0;
}
#home-wrapper .product-advantage .header {
  text-align: center;
}
#home-wrapper .product-advantage .header h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .product-advantage .header p {
  margin-top: 20px;
  font-size: 22px;
  color: #fff;
}
#home-wrapper .product-advantage .advantage-swiper {
  margin-top: 60px;
}
#home-wrapper .product-advantage .advantage-swiper .swiper-slide {
  align-self: stretch;
  height: unset;
}
#home-wrapper .product-advantage .advantage-swiper .swiper-slide .item-box {
  background-color: #fff;
  padding: 40px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
#home-wrapper .product-advantage .advantage-swiper .swiper-slide .item-box .icon-box {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background-color: #2c63a9;
}

#home-wrapper .product-advantage .advantage-swiper .swiper-slide .item-box .icon-box img {
  width: 48px;
}

#home-wrapper .product-advantage .advantage-swiper .swiper-slide .item-box h3 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin: 30px 0 40px;
  line-height: 1;
}
#home-wrapper .product-advantage .advantage-swiper .swiper-slide .item-box p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  text-align: center;
}
#home-wrapper .reason-section {
  padding: 140px 0;
}
#home-wrapper .reason-section .header {
  text-align: center;
}
#home-wrapper .reason-section .header h2 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .reason-section .header .container > div {
  margin-top: 20px;
  font-size: 22px;
  color: #000;
}
#home-wrapper .reason-section .header p span {
  color: #e56814;
  font-weight: 700;
}
#home-wrapper .reason-swiper {
  margin-top: 40px;
}
#home-wrapper .reason-swiper .swiper-slide {
  align-self: stretch;
  height: unset;
}

#home-wrapper .reason-swiper .swiper-info {
  width: 460px;
  padding: 160px 120px 350px;
  box-sizing: content-box;
}
#home-wrapper .reason-swiper .swiper-info h3 {
  display: inline-block;
  /* font-size: 24px; */
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
#home-wrapper .reason-swiper .swiper-info p {
  font-size: 16px;
  color: #fff;
  margin-top: 40px;
  line-height: 24px;
}
#home-wrapper .reason-swiper .reason-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 9;
}
#home-wrapper .reason-swiper .reason-list .reason-item {
  transition: all 0.3s;
  padding: 20px;
  background-color: #fff;
}
#home-wrapper .reason-swiper .reason-list .reason-item img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
#home-wrapper .reason-swiper .reason-list .reason-item p {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  margin-top: 13px;
}
#home-wrapper .reason-swiper .reason-list .reason-item:hover,
#home-wrapper .reason-swiper .reason-list .reason-item.active {
  cursor: pointer;
  background-color: #2c63a9;
  transform: scaleY(1.25);
}
#home-wrapper .reason-swiper .reason-list .reason-item:hover img,
#home-wrapper .reason-swiper .reason-list .reason-item.active img {
  filter: brightness(0) invert(1);
}

#home-wrapper .reason-swiper .reason-list .reason-item:hover :where(img, p),
#home-wrapper .reason-swiper .reason-list .reason-item.active :where(img, p) {
  transform: scaleY(0.8);
}

#home-wrapper .reason-swiper .reason-list .reason-item:hover p,
#home-wrapper .reason-swiper .reason-list .reason-item.active p {
  color: #fff;
}
#home-wrapper .reason-swiper .reason-list .swiper-button-prev,
#home-wrapper .reason-swiper .reason-list .swiper-button-next {
  position: unset;
  width: 48px;
  height: 48px;
  --swiper-navigation-size: 12px;
  --swiper-theme-color: #fff;
}
#home-wrapper .reason-swiper .reason-list .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.2);
}
#home-wrapper .reason-swiper .reason-list .swiper-button-next {
  background-color: #2c63a9;
}
#home-wrapper .reason-swiper .swiper-btn {
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 9;
}
#home-wrapper .solution-section {
  padding: 150px 0;
}
#home-wrapper .solution-section .header {
  text-align: center;
}
#home-wrapper .solution-section .header h2 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
  line-height: 1;
}
#home-wrapper .solution-section .header p {
  margin-top: 30px;
  font-size: 22px;
  color: #000;
}
#home-wrapper .solution-section .solution-box {
  position: relative;
  margin: 80px 0 60px;
}
#home-wrapper .solution-section .dashed-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  transform: translateY(-50%);
  border-bottom: 2px dashed #2c63a9;
}

#home-wrapper .solution-section .solution-list {
  gap: 20px 60px;
}
#home-wrapper .solution-section .solution-list::-webkit-scrollbar {
  display: none;
}
#home-wrapper .solution-section .solution-item {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

#home-wrapper .solution-section .solution-item p {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
  bottom: calc(100% + 10px);
}

/* #home-wrapper .solution-section .solution-item p {
  text-align: center;
  margin-bottom: 10px;
} */

#home-wrapper .solution-section .solution-item .solution-icon {
  position: relative;

  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #fff;
  border: 14px solid #b2c4da;
  box-sizing: content-box;
}
#home-wrapper .solution-section .solution-item .solution-icon img {
  width: 40px;
}
#home-wrapper .solution-section .solution-item.active .solution-icon,
#home-wrapper .solution-section .solution-item:hover .solution-icon {
  border-color: #2c63a9;
}
#home-wrapper .solution-section .solution-item.active .solution-icon::after,
#home-wrapper .solution-section .solution-item:hover .solution-icon::after {
  position: absolute;
  top: calc(100% + 13px);
  content: "";
  width: 14px;
  height: 14px;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 50% 100%);
  clip-path: polygon(0% 0%, 100% 0, 50% 100%);
  background-color: #2c63a9;
}
#home-wrapper .solution-section .solution-content:not(:first-child) {
  display: none;
}
#home-wrapper .solution-section .solution-content h3 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
}

#home-wrapper .solution-section .solution-content .step-content {
  width: -moz-max-content;
  width: max-content;
  padding: 15px 0;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

#home-wrapper .solution-section .content-list {
  margin: 70px 0 80px;
}

#home-wrapper .solution-section .solution-content .step-content img {
  margin-left: 44px;
  opacity: 0;
  transition: all 0.3s;
}
#home-wrapper .solution-section .solution-content .step-content:hover,
#home-wrapper .solution-section .solution-content .step-content.active {
  color: #2c63a9;
  border-bottom: 1px solid #2c63a9;
}
#home-wrapper .solution-section .solution-content .step-content:hover img,
#home-wrapper .solution-section .solution-content .step-content.active img {
  opacity: 1;
}

#home-wrapper .solution-section .solution-content .img-wrapper {
  width: 50%;
}
#home-wrapper .solution-section .solution-content .img-item {
  position: relative;
}
#home-wrapper .solution-section .solution-content .img-item:not(:first-child) {
  display: none;
}

#home-wrapper .solution-section .solution-content .img-item .img-info {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
#home-wrapper .solution-section .solution-content .img-item .img-info h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  width: 56.7901234568%;
}
#home-wrapper .solution-section .solution-content .img-item .img-info p {
  width: 77.037037037%;
  font-size: 16px;
  color: #fff;
  margin-top: 8px;
  line-height: 24px;
}
#home-wrapper .solution-section .more-wrapper {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .solution-section .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  color: #fff;
  transition: all 0.3s;
}
#home-wrapper .solution-section .more-wrapper button:hover {
  background-color: #e56814;
}
#home-wrapper .standard-section {
  padding: 100px 0;
}
#home-wrapper .standard-section .left-mes h2 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .standard-section .left-mes p {
  margin-top: 23px;
  font-size: 22px;
  color: #666;
  line-height: 30px;
}
#home-wrapper .standard-section .tel-info {
  margin-left: 20px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
#home-wrapper .standard-section .tel-info .tel {
  margin-top: 10px;
  font-size: 36px;
  color: #e56814;
  font-weight: 700;
}
#home-wrapper .standard-section .step-list {
  position: relative;
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
#home-wrapper .standard-section .step-list .step-item {
  cursor: pointer;
}
#home-wrapper .standard-section .step-list .step-item .step-content {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
#home-wrapper .standard-section .step-list .step-item .step-content img {
  opacity: 0;
  transition: all 0.3s;
}
#home-wrapper .standard-section .step-list .step-item .step-content p {
  font-size: 36px;
  color: #666;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  margin: 20px 0 30px;
}
#home-wrapper .standard-section .step-list .step-item .line {
  position: relative;
  height: 2px;
  background-color: #e5e5e5;
}
#home-wrapper .standard-section .step-list .step-item .dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
}
#home-wrapper .standard-section .step-list .step-item:hover img,
#home-wrapper .standard-section .step-list .step-item.active img {
  opacity: 1;
}
#home-wrapper .standard-section .step-list .step-item:hover p,
#home-wrapper .standard-section .step-list .step-item.active p {
  color: #2c63a9;
}
#home-wrapper .standard-section .step-list .step-item:hover .line,
#home-wrapper .standard-section .step-list .step-item.active .line {
  background-color: #2c63a9;
}
#home-wrapper .standard-section .step-list .step-item:hover .dot,
#home-wrapper .standard-section .step-list .step-item.active .dot {
  border-color: #2c63a9;
}
#home-wrapper .about-section {
  padding-top: 100px;
  padding-bottom: 80px;
}
#home-wrapper .about-section .header {
  text-align: center;
  line-height: none;
}
#home-wrapper .about-section .header h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .about-section .header h4 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  margin: 18px 0;
}
#home-wrapper .about-section .header p {
  width: calc(800 / 1680 * 100%);
  font-size: 22px;
  color: #fff;
  line-height: 30px;
  font-weight: 300;
  margin: 0 auto;
}

#home-wrapper .about-section .intro-list {
  margin: 60px 0;
  line-height: none;
}
#home-wrapper .about-section .intro-list .intro-item {
  padding: 0 66px;
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
#home-wrapper .about-section .intro-list .intro-item .desc {
  font-size: 24px;
}
#home-wrapper .about-section .intro-list .intro-item p {
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
}
#home-wrapper .about-section .more-wrapper {
  margin: 60px 0 120px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .about-section .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
#home-wrapper .about-section .more-wrapper button:hover {
  background-color: #2c63a9;
}
#home-wrapper .about-section .more-wrapper button:hover img {
  filter: brightness(0) invert(1);
}
#home-wrapper .about-section .feature-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px 20px;
}
#home-wrapper .about-section .feature-list .feature-item {
  padding: 30px 0 35px;
  background-color: rgba(255, 255, 255, 0.9);
}
#home-wrapper .about-section .feature-list .feature-item .num {
  font-size: 16px;
  color: #999;
  font-weight: 700;
}
#home-wrapper .about-section .feature-list .feature-item img {
  margin: 20px 0;
  width: 68px;
}
#home-wrapper .about-section .feature-list .feature-item p {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .customer-section {
  padding: 160px 0 180px;
}

#home-wrapper .customer-section .more-wrapper {
  margin-top: 40px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .customer-section .more-wrapper:hover button {
  background-color: #e56814;
}
#home-wrapper .customer-section .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  transition: all 0.3s;
}

#home-wrapper .news-section {
  padding: 120px 0 102px;
}
#home-wrapper .news-section .header {
  text-align: center;
  line-height: none;
}
#home-wrapper .news-section .header h2 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .news-section .header p {
  margin-top: 30px;
  font-size: 22px;
  color: #333;
}
#home-wrapper .news-section .news-list {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
#home-wrapper .news-section .news-list .news-moment {
  position: relative;
  min-height: 540px;
}
#home-wrapper .news-section .news-list .news-moment h3 {
  position: absolute;
  top: 30px;
  left: 0;
  line-height: 24px;
  z-index: 9;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .news-section .news-list .news-moment h3 .line {
  width: 10px;
  height: 24px;
  background-color: #fff;
  margin-right: 20px;
}
#home-wrapper .news-section .news-list .news-moment .news-swiper {
  height: 100%;
}
#home-wrapper .news-section .news-list .news-moment .news-swiper .news-mes {
  display: block;
  position: absolute;
  bottom: 130px;
  left: 30px;
  right: 30px;
  font-size: 16px;
  color: #fff;
}
#home-wrapper .news-section .news-list .news-moment .news-swiper .news-mes h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
}
#home-wrapper .news-section .news-list .news-moment .news-swiper .news-mes p {
  margin: 20px 0 40px;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
}
#home-wrapper .news-section .news-list .news-moment .news-swiper .news-mes .date {
  font-weight: 300;
}
#home-wrapper .news-section .technology-section,
#home-wrapper .news-section .ques-section {
  position: relative;
  background-color: #fff;
}
#home-wrapper .news-section .technology-section h3,
#home-wrapper .news-section .ques-section h3 {
  padding: 30px 0 20px;
  line-height: 24px;
  font-size: 24px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .news-section .technology-section h3 .line,
#home-wrapper .news-section .ques-section h3 .line {
  width: 10px;
  height: 24px;
  background-color: #2c63a9;
  margin-right: 20px;
}
#home-wrapper .news-section .technology-section .news-content,
#home-wrapper .news-section .ques-section .news-content {
  padding: 0 30px;
}
#home-wrapper .news-section .technology-section .swiper-info,
#home-wrapper .news-section .ques-section .swiper-info {
  padding-bottom: 56px;
}
#home-wrapper .news-section .technology-section .swiper-info .news-info,
#home-wrapper .news-section .ques-section .swiper-info .news-info {
  padding: 20px;
  background-color: #f2f2f2;
  font-size: 16px;
  color: #666;
  font-weight: 700;
}
#home-wrapper .news-section .technology-section .swiper-info .news-info:not(:last-child),
#home-wrapper .news-section .ques-section .swiper-info .news-info:not(:last-child) {
  margin-bottom: 10px;
}
#home-wrapper .news-section .technology-section .swiper-info .news-info .title,
#home-wrapper .news-section .ques-section .swiper-info .news-info .title {
  flex: 1;
  min-width: 0;
  margin-right: 22px;
  line-height: 1;
  color: #000;
}
#home-wrapper .news-section .technology-section .ques-info,
#home-wrapper .news-section .ques-section .ques-info {
  padding-bottom: 56px;
}
#home-wrapper .news-section .technology-section .ques-info .ques-item,
#home-wrapper .news-section .ques-section .ques-info .ques-item {
  display: block;
  padding: 20px 0 28px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .news-section .technology-section .ques-info .ques-item .tag,
#home-wrapper .news-section .ques-section .ques-info .ques-item .tag {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #2c63a9;
}
#home-wrapper .news-section .technology-section .ques-info .ques-item p,
#home-wrapper .news-section .ques-section .ques-info .ques-item p {
  margin-left: 20px;
  color: #000;
  min-width: 0;
  flex: 1;
}
#home-wrapper .news-section .technology-section .ques-info .ques-item .content,
#home-wrapper .news-section .ques-section .ques-info .ques-item .content {
  margin-top: 10px;
}
#home-wrapper .news-section .technology-section .ques-info .ques-item .content .tag,
#home-wrapper .news-section .ques-section .ques-info .ques-item .content .tag {
  background-color: #e56814;
}
#home-wrapper .news-section .technology-section .ques-info .ques-item .content p,
#home-wrapper .news-section .ques-section .ques-info .ques-item .content p {
  font-size: 14px;
  color: #666;
  line-height: 20px;
}
#home-wrapper .news-section .technology-section .swiper-pagination,
#home-wrapper .news-section .ques-section .swiper-pagination {
  bottom: 24px;
}
#home-wrapper .news-section .technology-section .swiper-pagination-bullet,
#home-wrapper .news-section .ques-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid #b5b5b5;
}
#home-wrapper .news-section .technology-section .swiper-pagination-bullet-active,
#home-wrapper .news-section .ques-section .swiper-pagination-bullet-active {
  background: #2c63a9;
  border: 2px solid #2c63a9;
}
#home-wrapper .news-section .ques-section h3 {
  border-bottom: 1px solid #eee;
}
#home-wrapper .news-section .news-swiper .swiper-pagination {
  bottom: 24px;
  left: 30px;
  width: unset;
}
#home-wrapper .news-section .news-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #000;
  border: 2px solid #b5b5b5;
}
#home-wrapper .news-section .news-swiper .swiper-pagination-bullet-active {
  background: #fff;
  border: 2px solid #fff;
}
#home-wrapper .news-section .more-wrapper {
  margin-top: 40px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#home-wrapper .news-section .more-wrapper:hover button {
  background-color: #e56814;
}
#home-wrapper .news-section .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  transition: all 0.3s;
}

/** 产品中心 */

#product-wrapper .product-swiper {
  margin-top: 100px;
}

#product-wrapper .product-swiper .swiper-info {
  padding: 140px;
}

#product-wrapper .product-swiper .swiper-info .left-mes {
  width: calc(650 / 1400 * 100%);
}

#product-wrapper .product-swiper .swiper-info .left-mes h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

#product-wrapper .product-swiper .swiper-info .left-mes h3 {
  margin: 20px 0 40px;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 36px;
}

#product-wrapper .product-swiper .swiper-info .left-mes p {
  font-size: 18px;
  color: #fff;
}

#product-wrapper .product-swiper .swiper-info .right-img {
  width: calc(489 / 1400 * 100%);
}

#product-wrapper .product-swiper .swiper-pagination {
  bottom: 40px;
}
#product-wrapper .product-swiper .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.7);
}
#product-wrapper .product-swiper .swiper-pagination-bullet-active {
  background-color: #fff;
}

#product-wrapper .pagination-wrapper {
  margin-top: 40px;
}

/** 产品详情页 */
#detail-wrapper .product-detail {
  margin-top: 166px;
}

#detail-wrapper .product-detail .pro-title {
  padding: 60px 0 40px;
  text-align: center;
  font-size: 36px;
  color: #010101;
  font-weight: 700;
  border-top: 2px solid #2f64a6;
}

#detail-wrapper .detail-swiper {
  background-color: #f8f8f8;
}

#detail-wrapper .detail-swiper .swiper-slide {
  padding: 93px 0 153px;
}

#detail-wrapper .detail-swiper .swiper-slide img {
  display: block;
  margin: 0 auto;
}
#detail-wrapper .detail-swiper .swiper-pagination {
  bottom: 40px;
}
#detail-wrapper .detail-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #e5e5e5;
}
#detail-wrapper .detail-swiper .swiper-pagination-bullet-active {
  background-color: #2f64a6;
}
#detail-wrapper .product-desc {
  padding-top: 40px;
}
#detail-wrapper .product-desc > div {
  padding-bottom: 60px;
}

#detail-wrapper .product-desc p {
  font-size: 16px;
  color: #333;
  line-height: 24px !important;
  /* margin-bottom: 30px; */
}
#detail-wrapper .product-desc > p {
  margin-bottom: 30px;
}

#detail-wrapper .product-desc li p {
  margin-bottom: 0;
}

#detail-wrapper .product-desc p.highlight {
  color: #ff0000;
  font-weight: 700;
}
#detail-wrapper .product-desc h4 {
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 30px;
}
#detail-wrapper .product-desc ul li {
  position: relative;
  /* display: flex; */
  /* align-items: center; */
  font-size: 16px;
  color: #333;
  line-height: 30px;
  margin-bottom: 10px;
  padding-left: 16px;
}
/* #detail-wrapper .product-desc ul li span:first-child {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #2f64a6;
} */

#detail-wrapper .product-desc ul li::before {
  position: absolute;
  left: 0;
  top: 10px;
  /* transform: translateY(-50%); */
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #2f64a6;
}

#detail-wrapper .intro-swiper {
  padding-bottom: 195px;
}
#detail-wrapper .intro-swiper .swiper-pagination {
  bottom: 0;
}
#detail-wrapper .intro-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  background-color: rgba(229, 229, 229, 0.2);
}
#detail-wrapper .intro-swiper .swiper-pagination-bullet-active {
  background-color: #fff;
}

#detail-wrapper .rec-pro-wrapper {
  padding: 160px 0;
}
#detail-wrapper .rec-pro-wrapper h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
}

#detail-wrapper .product-list-wrapper,
#solution-detail-wrapper .product-list-wrapper {
  margin-top: 0;
  display: block;
}

/* 产品详情2 */
#detail-wrapper .top-breadcrumb {
  background-color: #eee;
  padding: 30px 0;
  font-size: 16px;
  color: #666;
  overflow-x: auto;
}
#detail-wrapper .top-breadcrumb::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

#detail-wrapper .top-breadcrumb a {
  flex-shrink: 0;
}

#detail-wrapper .top-breadcrumb .arrow-icon {
  margin: 0 20px;
}

#detail-wrapper .product-intro {
  padding: 194px 0 80px;
}
#detail-wrapper .intro-swiper {
  width: calc(800 / 1680 * 100%);
}

#detail-wrapper .intro-swiper .swiper-img {
  display: block;
  margin: 0 auto;
}

#detail-wrapper .right-mes {
  width: calc(740 / 1680 * 100%);
}

#detail-wrapper .right-mes .highlight-text {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6b9d 0%, #c846e0 35%, #6366f1 70%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 2px;
}
#detail-wrapper .right-mes h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  margin: 38px 0;
}
#detail-wrapper .right-mes p {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
}

#detail-wrapper .right-mes .btn-group {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
#detail-wrapper .right-mes .btn-group .btn {
  width: 160px;
  padding: 14px 20px;
  font-size: 16px;
  color: #010101;
  background-color: #fff;
  border-radius: 100px;
}

#detail-wrapper .product-feature .container {
  padding: 0 180px;
}

#detail-wrapper .product-feature .container.right {
  display: flex;
  flex-direction: row-reverse;
}

#detail-wrapper .product-feature .feature-content {
  width: calc(760 / 1680 * 100%);
  padding: 290px 0;
}

#detail-wrapper .product-feature .container.right .feature-content {
  width: auto;
}

#detail-wrapper .product-feature .feature-content h4 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 30px;
}

#detail-wrapper .product-feature .feature-content .intro-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}
#detail-wrapper .product-feature .feature-content .intro-list .intro-item {
  padding: 20px;
  border: 1px solid #bfc5d9;
}
#detail-wrapper .product-feature .feature-content .intro-list .intro-item img {
  width: 48px;
  height: 48px;
}
#detail-wrapper .product-feature .feature-content .intro-list .intro-item p {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}

#detail-wrapper .product-feature li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  line-height: 36px;
}
#detail-wrapper .product-feature li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2f64a6;
  margin-right: 10px;
}

#detail-wrapper .product-parameter {
  padding: 100px 0;
}
#detail-wrapper .product-parameter h4 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

#detail-wrapper .product-application {
  padding: 100px 0;
}
#detail-wrapper .product-application h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}
#detail-wrapper .product-application .content {
  margin: 38px 0;
  font-size: 24px;
  color: #333;
  line-height: 30px;
}

#detail-wrapper .product-application .apply-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
#detail-wrapper .product-application .apply-list .apply-item {
  padding: 30px 40px;
  background-color: #fff;
}
#detail-wrapper .product-application .apply-list .apply-item .icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: #2f64a6;
  border-radius: 50%;
}
#detail-wrapper .product-application .apply-list .apply-item .icon-wrap img {
  width: 40px;
}
#detail-wrapper .product-application .apply-list .apply-item p {
  margin-left: 20px;
  font-size: 18px;
  color: #000;
}

/** 解决方案 */
.icon-sel-wrapper .product-icon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: space-between;
}
.icon-sel-wrapper .product-icon .icon-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 14px;
  min-height: 103px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  z-index: 10;
  margin-left: -1px;
}
.icon-sel-wrapper .product-icon .icon-item .name {
  margin-top: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  text-align: center;
}
.icon-sel-wrapper .product-icon .icon-item img {
  height: 40px;
  object-fit: contain;
}

.icon-sel-wrapper .product-icon .icon-item.selected,
.icon-sel-wrapper .product-icon .icon-item:hover {
  z-index: 99;
  background-color: #2c63a9;
}
.icon-sel-wrapper .product-icon .icon-item.selected img,
.icon-sel-wrapper .product-icon .icon-item:hover img {
  filter: brightness(0) invert(1);
}
.icon-sel-wrapper .product-icon .icon-item.selected .name,
.icon-sel-wrapper .product-icon .icon-item:hover .name {
  color: #fff;
}

#solution-wrapper .solution-box {
  padding: 100px 0;
}
#solution-wrapper .solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 60px;
}
#solution-wrapper .solution-list .solution-item {
  display: block;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
#solution-wrapper .solution-list .solution-item .pop-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 38px 22px;
  background-color: #fff;
}
#solution-wrapper .solution-list .solution-item .pop-box .title {
  font-size: 24px;
  color: #000;
  font-weight: 700;
}
#solution-wrapper .solution-list .solution-item .pop-box .pop-content {
  display: none;
}
#solution-wrapper .solution-list .solution-item .pop-box .pop-content p {
  margin: 30px 0 40px;
}
#solution-wrapper .solution-list .solution-item .pop-box .more-wrapper {
  margin-top: 40px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#solution-wrapper .solution-list .solution-item .pop-box .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  transition: all 0.3s;
}

#solution-wrapper .product-list-wrapper {
  margin-top: 0;
  display: block;
}

#solution-wrapper .rec-pro-wrapper {
  padding: 40px 0;
  border-top: 1px solid #eee;
}
#solution-wrapper .rec-pro-wrapper h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
}

#solution-wrapper .pagination-wrapper {
  margin-top: 60px;
  padding-bottom: 0;
}

/**  解决方案详情*/
/* 
#solution-detail-wrapper .product-icon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: space-between;
}
#solution-detail-wrapper .product-icon .icon-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  min-height: 103px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  z-index: 10;
  margin-left: -1px;
}
#solution-detail-wrapper .product-icon .icon-item .name {
  margin-top: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#solution-detail-wrapper .product-icon .icon-item img {
  height: 40px;
  object-fit: contain;
}

#solution-detail-wrapper .product-icon .icon-item.selected,
#solution-detail-wrapper .product-icon .icon-item:hover {
  z-index: 99;
  background-color: #2c63a9;
}
#solution-detail-wrapper .product-icon .icon-item.selected img,
#solution-detail-wrapper .product-icon .icon-item:hover img {
  filter: brightness(0) invert(1);
}
#solution-detail-wrapper .product-icon .icon-item.selected .name,
#solution-detail-wrapper .product-icon .icon-item:hover .name {
  color: #fff;
} */

#solution-detail-wrapper .solution-detail {
  padding: 100px 0 160px;
}
#solution-detail-wrapper .left-mes {
  flex: 1;
  min-width: 0;
}
#solution-detail-wrapper .left-mes .content {
  text-align: center;
  padding: 60px 30px 50px;
  background-color: #f8f8f8;
  border-top: 2px solid #2f64a6;
}
#solution-detail-wrapper .left-mes .content h2 {
  font-size: 36px;
  color: #010101;
  font-weight: 700;
}
#solution-detail-wrapper .left-mes .info-box {
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}
#solution-detail-wrapper .left-mes .info-box .divider {
  width: 2px;
  height: 14px;
  background-color: #dcdcdc;
  margin: 0 20px;
}

#solution-detail-wrapper .right-mes {
  width: 360px;
  margin-left: 100px;
}

#solution-detail-wrapper .solution-content {
  margin-top: 30px;
}
#solution-detail-wrapper .solution-content p {
  font-size: 16px;
  color: #333;
  line-height: 24px;
  margin: 30px 0;
}
#solution-detail-wrapper .solution-content h2 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
}
#solution-detail-wrapper .rec-solution-swiper {
  padding-bottom: 52px;
}
#solution-detail-wrapper .rec-solution-swiper .swiper-pagination {
  bottom: 0;
}
#solution-detail-wrapper .rec-solution-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
#solution-detail-wrapper .rec-solution-swiper .swiper-pagination-bullet-active {
  background-color: #2f64a6;
}

#solution-detail-wrapper .page-box {
  margin-top: 100px;
}
#solution-detail-wrapper .related-product .header {
  background-position: left center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  padding: 18px;
  line-height: 1;
  margin-bottom: 30px;
}

#solution-detail-wrapper .related-product .rec-swiper-section {
  display: none;
}

#solution-detail-wrapper .related-product .product-item {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  background-color: #f8f8fa;
}
#solution-detail-wrapper .related-product .product-item:not(:last-child) {
  margin-bottom: 20px;
}

#solution-detail-wrapper .related-product .product-item .img-wrapper {
  padding: 48px 66px;
}
#solution-detail-wrapper .related-product .product-item .title {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 24px;
  padding: 18px;
  padding-right: 18px;
  background-color: #f2f2f2;
}
#solution-detail-wrapper .related-product .product-item:hover .pop-box {
  top: 0;
}
#solution-detail-wrapper .related-product .product-item .pop-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(to bottom, transparent, #2c63a9 50%);
}

#solution-detail-wrapper .related-product .product-item .pop-box h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e5ec;
}

#solution-detail-wrapper .related-product .product-item .pop-box p {
  font-size: 14px;
  color: #fff;
  margin: 20px 0 30px;

  /* 显示3行 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#solution-detail-wrapper .related-product .product-item .pop-box button {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e56814;
  color: #fff;
  transition: all 0.3s;
}

#solution-detail-wrapper .hot-search {
  margin-top: 60px;
}
#solution-detail-wrapper .hot-search .header {
  background-position: left center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  padding: 18px;
  line-height: 1;
  margin-bottom: 30px;
}

#solution-detail-wrapper .hot-search .search-list {
  font-size: 16px;
  color: #333;
  padding: 30px;
  line-height: 30px;
  border: 1px solid #e2e5ec;
}
#solution-detail-wrapper .hot-search .search-list .search-item {
  display: block;
  transition: all 0.3s;
}
#solution-detail-wrapper .hot-search .search-list .search-item:hover {
  color: #2c63a9;
}

#solution-detail-wrapper .rec-solution {
  padding-bottom: 160px;
}
#solution-detail-wrapper .rec-solution h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
}

#solution-detail-wrapper .solution-item {
  display: block;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
#solution-detail-wrapper .solution-item .pop-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 38px 22px;
  background-color: #fff;
}

#solution-detail-wrapper .solution-item .pop-box .title {
  font-size: 24px;
  color: #000;
  font-weight: 700;
}

#solution-detail-wrapper .solution-item .pop-box .pop-content {
  display: none;
}
#solution-detail-wrapper .solution-item .pop-box .pop-content p {
  margin: 30px 0 40px;
}
#solution-detail-wrapper .solution-item .pop-box .more-wrapper {
  margin-top: 40px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
#solution-detail-wrapper .solution-item .pop-box .more-wrapper button {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  transition: all 0.3s;
}

#solution-detail-wrapper .news-list {
  background-color: #fff;
  padding: 40px;
}

#solution-detail-wrapper .related-product-swiper {
  padding-bottom: 52px;
}

/** 新闻咨询页 */
#news-wrapper .layui-form-select .layui-input {
  border: none;
  height: auto;
}

#news-wrapper .tab-list {
  margin: 40px 0 76px;
}

#news-wrapper .search-area {
  margin-bottom: 40px;
}
#news-wrapper .search-area .layui-form {
  border-bottom: 3px solid #313131;
  padding-bottom: 20px;
  width: 600px;
}
#news-wrapper .search-area .input-wrapper {
  flex: 1;
  margin-left: 30px;
  position: relative;
}
#news-wrapper .search-area .input-wrapper input {
  width: 100%;
}
#news-wrapper .search-area img {
  width: 18px;
}

#news-wrapper .all-news {
  background-color: #f8f8f8;
}
#news-wrapper .all-news h2 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  padding: 40px 0 20px;

  border-bottom: 1px solid #434343;
}

#news-wrapper .rec-news {
  padding-bottom: 80px;
  gap: 40px;
}

#news-wrapper .rec-news .left-mes {
  width: calc(820 / 1680 * 100%);
  cursor: pointer;
}
#news-wrapper .rec-news .left-mes .img-wrapper {
  position: relative;
  overflow: hidden;
}
#news-wrapper .rec-news .left-mes .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1);
}
#news-wrapper .rec-news .left-mes .img-wrapper img:hover {
  transform: scale(1.1);
}

#news-wrapper .rec-news .left-mes .news-content {
  padding-top: 20px;
}
#news-wrapper .rec-news .left-mes .news-content .tag {
  font-size: 12px;
  color: #666;
  background-color: #ebf3fd;
  padding: 8px 12px;
  border-radius: 6px;
  width: max-content;
  margin-bottom: 20px;
}
#news-wrapper .rec-news .left-mes .news-content h3 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s;
}
#news-wrapper .rec-news .left-mes .news-content p {
  font-size: 16px;
  color: #333;
  line-height: 24px;
  margin: 20px 0 40px;
}
#news-wrapper .rec-news .left-mes .news-content .date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

#news-wrapper .rec-news-list .news-item {
  padding: 20px 0;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

#news-wrapper .rec-news-list {
  min-width: 0;
}

#news-wrapper .rec-news-list .news-item:first-child {
  padding-top: 0;
}

#news-wrapper .rec-news-list .news-item .img-wrapper {
  width: 250px;
  overflow: hidden;
  flex-shrink: 0;
}
#news-wrapper .rec-news-list .news-item .img-wrapper img:hover {
  transform: scale(1.1);
}
#news-wrapper .rec-news-list .news-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1);
}

#news-wrapper .rec-news-list .news-info {
  margin-left: 38px;
  flex: 1;
  min-width: 0;
}
#news-wrapper .rec-news-list .news-info .tag {
  font-size: 12px;
  color: #666;
  background-color: #ebf3fd;
  padding: 8px 12px;
  border-radius: 6px;
  width: max-content;
  margin-bottom: 20px;
}
#news-wrapper .rec-news-list .news-info h4 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin: 20px 0;
  line-height: 30px;
  transition: all 0.3s;
}
#news-wrapper .rec-news-list .news-info .date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

#news-wrapper .news-list {
  padding-top: 20px;
}
#news-wrapper .news-list .news-item {
  display: block;
  cursor: pointer;
  padding: 22px 0;
  transition: all 0.3;
}
#news-wrapper .news-list .news-item:hover {
  background-color: #2f64a6;
}

#news-wrapper .news-list .news-box {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 0;
}
#news-wrapper .news-list .img-wrapper {
  width: 500px;
  overflow: hidden;
  flex-shrink: 0;
}
#news-wrapper .news-list .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1);
}
#news-wrapper .news-list .img-wrapper img:hover {
  transform: scale(1.1);
}

#news-wrapper .news-list .news-content {
  margin-left: 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#news-wrapper .news-list .news-content h3 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s;
}
#news-wrapper .news-list .news-content p {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  margin: 20px 0 36px;
}
#news-wrapper .news-list .news-content .date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

#news-wrapper .news-list .news-item:hover .news-content h3 {
  color: #fff;
}
#news-wrapper .news-list .news-item:hover .news-content p {
  color: #fff;
}
#news-wrapper .news-list .news-item:hover .news-content .date {
  color: rgba(255, 255, 255, 0.4);
}
#news-wrapper .news-list .news-item:hover .more-wrapper {
  color: #fff;
}
#news-wrapper .news-list .news-item:hover .more-wrapper button {
  background-color: #fff;
}

#news-wrapper .news-list .news-item:hover .more-wrapper button img {
  filter: brightness(100) invert(1);
}
#news-wrapper .news-list .more-wrapper {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  margin-top: 40px;
  gap: 20px;
}

#news-wrapper .news-list .more-wrapper button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c63a9;
  transition: all 0.3s;
}
#news-wrapper .news-list .more-wrapper img {
  filter: brightness(0) invert(1);
}

#news-wrapper .pagination-wrapper {
  margin-top: 40px;
}

#news-wrapper .ques-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

#news-wrapper .ques-list .ques-item {
  padding: 20px;
  /* border-bottom: 1px solid #eee; */
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  background-color: #fff;
}
#news-wrapper .ques-list .ques-item .tag {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #2c63a9;
}
#news-wrapper .ques-list .ques-item p {
  margin-left: 20px;
  color: #000;
  min-width: 0;
  flex: 1;
}
#news-wrapper .ques-list .ques-item .content {
  margin-top: 10px;
}
#news-wrapper .ques-list .ques-item .content .tag {
  background-color: #e56814;
}
#news-wrapper .ques-list .ques-item .content p {
  font-size: 14px;
  color: #666;
  line-height: 20px;
}

/** 关于我们 */
#about-wrapper .about-intro {
  padding: 100px 0 160px;
}

#about-wrapper .about-intro img {
  width: calc(620 / 1680 * 100%);
}

#about-wrapper .about-intro .about-content {
  width: calc(930 / 1680 * 100%);
}
#about-wrapper .about-intro h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
}

#about-wrapper .about-intro h4 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin: 80px 0 36px;
}
#about-wrapper .about-intro h4 em {
  color: #2f64a6;
  font-style: normal;
}

#about-wrapper .about-intro p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
}
#about-wrapper .about-intro p:not(:last-child) {
  margin-bottom: 30px;
}

#about-wrapper .about-section {
  padding: 270px 0;
}
#about-wrapper .about-section .intro-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 20px;
  align-items: start;
}
#about-wrapper .about-section .intro-list .line {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  height: 2px;
  margin: 30px 0;
}
#about-wrapper .about-section .intro-list .intro-content {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

#about-wrapper .about-section .intro-list .intro-num {
  font-size: 80px;
  color: #fff;
  font-weight: 700;
}
#about-wrapper .about-section .intro-list .desc {
  font-size: 24px;
}

#about-wrapper .customer-section {
  padding: 160px 0 180px;
}

.page-box {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.page-box > a {
  padding: 18px 10px;
  font-size: 16px;
  color: #333;
  width: 48%;
}
.page-box > a .layui-icon-left {
  margin-right: 14px;
}
.page-box > a .layui-icon-right {
  margin-right: 14px;
}
.page-box > a:hover {
  color: #fff;
  background-color: #2c63a9;
  border-radius: 4px;
}

.ab-us-2 {
  padding: max(8.3333vw, 160px) 0;
  background-color: #fff;
}

.ab-us-2 .ab-us-title {
  font-size: 24px;
  color: #2f64a6;
  font-weight: 700;
  margin-bottom: 40px;
}

.ab-us-2 .contact-form-section {
  display: flex;
  align-items: stretch;
  background-color: #f2f2f2;
  border-radius: max(1.0417vw, 20px);
  overflow: hidden;
}

.ab-us-2 .contact-form-left {
  position: relative;
  flex: 0 0 auto;
  width: max(23.4375vw, 540px);
}

.ab-us-2 .contact-form-content {
  position: absolute;
  top: max(3.125vw, 60px);
  left: max(2.0833vw, 40px);
  color: #fff;
  z-index: 2;
}

.ab-us-2 .contact-form-content .category {
  margin-bottom: max(1.5625vw, 30px);
}

.ab-us-2 .contact-form-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.ab-us-2 .contact-form-right {
  flex: 1;
  padding: 60px 40px 48px;
}

.ab-us-2 .contact-form {
  width: 100%;
}

.ab-us-2 .form-row {
  display: flex;
  gap: max(1.0417vw, 20px);
  margin-bottom: max(1.0417vw, 20px);
}

.ab-us-2 .form-group {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: max(0.5208vw, 10px);
  /* overflow: hidden; */
}
.layui-form-select dl dd.layui-this {
  background-color: #2c63a9;
  color: #fff;
}
.layui-form-checkbox[lay-skin="primary"] > div {
  color: #888;
}

.layui-form-checkbox[lay-skin="primary"] > div a {
  color: #000;
}
.layui-form-checked i,
.layui-form-checked:hover i {
  color: #2c63a9;
}

.layui-form-checked[lay-skin="primary"] > i {
  background-color: #2c63a9;
  border-color: #2c63a9 !important;
}

.layui-form-checkbox[lay-skin="primary"]:hover > i {
  border-color: #2c63a9;
}

.ab-us-2 .form-group.full-width {
  flex: 1 1 100%;
}

.ab-us-2 .form-group input,
.ab-us-2 .form-group textarea {
  width: 100%;
  height: max(2.6042vw, 50px);
  padding: 0 max(0.7813vw, 15px);
  border: none;
  background-color: transparent;
  font-size: 16px;
  color: #333;
  outline: none;
  display: block;
  transition: background-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.ab-us-2 .form-group .layui-form-select {
  width: 100%;
}
.ab-us-2.layui-form-select .layui-edge {
  right: 15px;
}

.ab-us-2 .form-group textarea {
  padding: max(0.7813vw, 15px);
  resize: none;
  height: max(6.25vw, 120px);
}

.ab-us-2 .form-group input::-moz-placeholder,
.ab-us-2 .form-group textarea::-moz-placeholder {
  color: #888;
}

.ab-us-2 .form-group input::placeholder,
.ab-us-2 .form-group textarea::placeholder {
  color: #888;
}

.ab-us-2 .form-group .captcha-img {
  width: 140px;
  height: 100%;
  display: flex;
  background-color: #c9c9c9;
}

.ab-us-2 .form-checkbox {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: #888;
}

.ab-us-2 .form-checkbox a {
  color: #000;
  text-decoration: none;
}

.ab-us-2 .form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ab-us-2 .btn-component {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.ab-us-2 .btn-component .more-btn {
  flex-shrink: 0;
  margin-left: 20px;
  width: 40px;
  height: 40px;
  background-color: #2c63a9;
  border-radius: 50%;
  transition: all 0.3s;
}
.ab-us-2 .btn-component .more-btn:hover {
  background-color: #e56814;
}

@media screen and (max-width: 1280px) {
  .ab-us-2 .contact-form-left {
    width: max(23.4375vw, 300px);
  }
}

@media screen and (max-width: 1024px) {
  .ab-us-2 {
    padding: max(6vw, 80px) 0;
  }
  .ab-us-2 .contact-form-section {
    flex-direction: column;
    gap: max(4vw, 40px);
    height: auto;
  }
  .ab-us-2 .contact-form-left {
    width: 100%;
    height: max(25vw, 300px);
  }
  .ab-us-2 .contact-form-content {
    top: max(3vw, 30px);
    left: max(3vw, 30px);
  }
  .ab-us-2 .contact-form-content .category {
    font-size: max(1.2vw, 14px);
    margin-bottom: max(2vw, 20px);
  }
  .ab-us-2 .contact-form-title {
    font-size: max(4vw, 28px);
  }
  .ab-us-2 .contact-form-right {
    padding: max(4vw, 40px);
  }
  .ab-us-2 .form-row {
    flex-direction: column;
    gap: max(1.5vw, 15px);
    margin-bottom: max(1.5vw, 15px);
  }
  .ab-us-2 .form-group input,
  .ab-us-2 .form-group select {
    height: max(3vw, 45px);
  }
}
@media screen and (max-width: 768px) {
  .ab-us-2 {
    padding: max(6vw, 60px) 0;
  }
  .ab-us-2 .contact-form-section {
    gap: 30px;
  }
  .ab-us-2 .contact-form-left {
    height: 250px;
  }
  .ab-us-2 .contact-form-content {
    top: 24px;
    left: 24px;
  }
  .ab-us-2 .contact-form-content .category {
    font-size: 14px;
    padding: 0 16px;
    height: 32px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .ab-us-2 .contact-form-title {
    font-size: 24px;
  }
  .ab-us-2 .contact-form-right {
    padding: 30px 20px;
  }
  .ab-us-2 .form-row {
    gap: 12px;
    margin-bottom: 12px;
  }
  .ab-us-2 .form-group input,
  .ab-us-2 .form-group select {
    height: 44px;
    padding: 0 12px;
  }
  .ab-us-2 .form-group textarea {
    padding: 12px;
    min-height: 100px;
  }
}

@media screen and (max-width: 540px) {
  .ab-us-2 .ab-us-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ab-us-2 .form-submit {
    flex-wrap: wrap;
  }
  .ab-us-2 .btn-component {
    margin-left: auto;
    margin-top: 20px;
  }
}
.tab-list {
  border-radius: 100px;
  padding: 10px;
  border: 2px solid #e7e9ed;
  gap: 10px;
}
.tab-list .tab-item {
  font-size: 18px;
  color: #000;
  padding: 20px 36px;
  border-radius: 100px;
  transition: all 0.3s;
  line-height: 1;
}
.tab-list .tab-item.selected,
.tab-list .tab-item:hover {
  background-color: #2f64a6;
  color: #fff;
}

/** 侧边栏 */
.sidebar {
  position: fixed;
  z-index: 99;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.sidebar .icon-list .icon-item {
  background-color: #e46815;
  width: 60px;
  height: 70px;
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
}

.sidebar .icon-list .icon-item p {
  font-size: 14px;
  color: #fff;
  margin-top: 4px;
}

.sidebar .icon-list .icon-item:hover .icon-box {
  right: calc(100% + 20px);
}

.sidebar .icon-list .icon-item .icon-box {
  position: absolute;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e46815;
  border-radius: 10px;
  right: -500%;
  width: 140px;
  height: 140px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

.sidebar .icon-list .icon-item .icon-box::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-color: #e46815;
}

.sidebar .icon-list .icon-item .icon-box::after {
  content: "";
  position: absolute;
  height: 100%;
  left: 100%;
  width: 20px;
}

.sidebar .icon-list .icon-item .icon-box a:hover {
  color: #fff;
}

.sidebar .icon-list .icon-item .icon-box img {
  display: block;
  width: 100px;
  height: 100px;
}

.sidebar .icon-list .icon-item .phone-box {
  padding: 20px 10px;
  width: auto;
  height: auto;
}

.back-top {
  background-color: #e46815;
  position: absolute;
  width: 60px;
  height: 60px;
  top: 99999px;
  right: 0;
  z-index: 99;
  transition: all 0.3s;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.back-top p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

/* 联系我们 */
#contact-wrapper .contact-section {
  padding-top: 40px;
  padding-bottom: 100px;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

#contact-wrapper .contact-mes {
  padding: 100px 0 60px;
  text-align: center;
}

#contact-wrapper .contact-mes h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
}

#contact-wrapper .contact-mes .content {
  width: calc(880 / 1680 * 100%);
  margin: 20px auto 0;
  font-size: 16px;
  color: #666;
  line-height: 24px;
}

#contact-wrapper .contact-list {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

#contact-wrapper .contact-list .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 255px;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
}
#contact-wrapper .contact-list .contact-item:hover {
  background-color: #2f64a6;
}

#contact-wrapper .contact-list .contact-item img {
  height: 48px;
}
#contact-wrapper .contact-list .contact-item .title {
  margin: 40px 0 22px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
#contact-wrapper .contact-list .contact-item:hover :where(.title, p) {
  color: #fff;
}

#contact-wrapper .contact-list .contact-item p {
  text-align: center;
  font-size: 16px;
  color: #666;
}
