@charset "UTF-8";
/* 自定义常用 */
.flex,
.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;
}

/* 解决flex布局文本超出 */
.m0 {
  min-width: 0;
}

.bgf {
  background-color: #fff;
}

.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-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

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

.text-right {
  text-align: right;
}

::-webkit-scrollbar {
  width: 6px;
  /*滚动条宽度*/
  height: 6px;
  /*滚动条高度*/
}

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

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

a:hover {
  color: #20519f;
}

html {
  overflow-x: hidden;
}

body {
  min-width: 320px;
  font-family: "Microsoft YaHei";
  width: 100%;
  overflow-x: hidden;
}

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

.container {
  max-width: 1760px;
  padding: 0 100px;
  margin: 0 auto;
}

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

header .pc-header .pc-section,
header .pc-header .pc-section2 {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: #fff;
  border-bottom: 1px solid rgba(239, 239, 239, 0.1);
}
header .pc-header .pc-section .container,
header .pc-header .pc-section2 .container {
  height: 100px;
}
header .pc-header .pc-section .logo img,
header .pc-header .pc-section2 .logo img {
  width: 350px;
}
header .pc-header .pc-section .nav-section .nav-list > li,
header .pc-header .pc-section2 .nav-section .nav-list > li {
  font-size: 18px;
  color: #232323;
  font-weight: 400;
  position: relative;
  margin-left: 10px;
}
header .pc-header .pc-section .nav-section .nav-list > li.active,
header .pc-header .pc-section .nav-section .nav-list > li:hover,
header .pc-header .pc-section2 .nav-section .nav-list > li.active,
header .pc-header .pc-section2 .nav-section .nav-list > li:hover {
  border-radius: 100px;
  background-color: #20519f;
  color: #fff;
}
#home-wrapper .home-swiper .swiper-button-prev {
  left: 70px;
  --swiper-navigation-size: 20px;
  padding: 20px;
  border-radius: 50%;
  background-color: #20519f;
  --swiper-navigation-color: #fff;
}
#home-wrapper .home-swiper .swiper-button-next {
  right: 70px;
  border-radius: 50%;
  --swiper-navigation-size: 20px;
  padding: 20px;
  background-color: #20519f;
  --swiper-navigation-color: #fff;
}
header .pc-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
}
header .pc-header .pc-section .nav-section .nav-list > li:hover a {
  color: #fff;
}
header .pc-header .pc-section .nav-section .nav-list > li > a,
header .pc-header .pc-section2 .nav-section .nav-list > li > a {
  padding: 15px 25px;
  display: block;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list {
  display: none;
  position: fixed;
  z-index: 100;
  top: 100px;
  left: 0;
  right: 0;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .left-menu,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .left-menu {
  width: 500px;
  background-color: #eaedf2;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .left-menu .menu-list,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .left-menu .menu-list {
  padding: 52px 80px 52px 0;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-bottom: 50px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(52, 83, 127, 0.2);
  cursor: pointer;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li.active,
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li:hover,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li.active,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li:hover {
  color: #20519f;
  border-color: #0a2f7e;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li .circle,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li .circle {
  width: 10px;
  height: 10px;
  background-color: #0a2f7e;
  margin-right: 15px;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li:last-child,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .left-menu .menu-list li:last-child {
  margin-bottom: 0;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content {
  padding: 52px 50px;
  flex: 1;
  background-color: #fff;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item {
  width: 30%;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item h2,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item h2 {
  font-size: 20px;
  color: #0a2f7e;
  font-weight: 700;
  margin-bottom: 35px;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a {
  margin-bottom: 28px;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a:hover,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a:hover {
  color: #0a2f7e;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a:hover img,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a:hover img {
  display: block;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a img,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a img {
  display: none;
  margin-right: 8px;
  width: 6px;
  height: 10px;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a:last-child,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item > a:last-child {
  margin-bottom: 0;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item .img-list .img-item,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item .img-list .img-item {
  text-align: center;
  width: calc(50% - 5px);
  padding: 30px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
header .pc-header .pc-section .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item .img-list .img-item:hover,
header .pc-header .pc-section2 .nav-section .nav-list > li .dropdown-list .right-content .content-box .content-item .img-list .img-item:hover {
  color: #fff;
}
header .pc-header .pc-section .nav-section button,
header .pc-header .pc-section2 .nav-section button {
  margin-left: 30px;
  width: 130px;
  height: 46px;
  border-radius: 23px;
  background-color: #fff;
  font-size: 18px;
  color: #232323;
  font-weight: 400;
}
header .pc-header .pc-section2 {
  display: none;
  background-color: #fff;
  box-shadow: 0 8px 10px rgba(2, 115, 255, 0.1);
}
header .pc-header .pc-section2 .nav-section .nav-list {
  width: 800px;
}
header .pc-header .pc-section2 .nav-section .nav-list li a {
  padding: 0;
}
header .pc-header .pc-section2 .nav-section .nav-list li.hover a,
header .pc-header .pc-section2 .nav-section .nav-list li.active a {
  color: #0a2f7e;
}
header .pc-header .pc-section2 .nav-list > li.active::after,
header .pc-header .pc-section2 .nav-list > li:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50%;
  height: 4px;
  border-radius: 2px;
  background-color: #0a2f7e;
}
header .pc-header .pc-section2 .nav-section .nav-list li > a {
  line-height: 100px;
  color: #232323;
}
header .pc-header .pc-section2 .nav-section .nav-list li > a:hover {
  color: #0a2f7e;
}
header .pc-header .pc-section2 .nav-section button {
  background-color: #0a2f7e;
  color: #fff;
}
header .mb-header {
  display: none;
}
header .mb-header::after {
  display: block;
  content: "";
  height: 70px;
}
header .mb-header .top-mes {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 70px;
  padding: 0 20px;
  z-index: 99;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
header .mb-header .top-mes .logo img {
  width: 200px;
}
header .mb-header .top-mes .cool-menu {
  display: flex;
  align-items: center;
  height: 70px;
}
header .mb-header .top-mes .cool-menu .lang-info {
  padding-right: 10px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  cursor: pointer;
}
header .mb-header .top-mes .cool-menu .lang-info i {
  font-size: 20px;
  margin-right: 4px;
}
header .mb-header .top-mes .cool-menu .line-wrap {
  cursor: pointer;
  position: relative;
  z-index: 100;
}
header .mb-header .top-mes .cool-menu .line-wrap div[class^="line"] {
  transition: all 0.3s ease;
  width: 28px;
  border-top: 2px solid #000;
  margin-bottom: 8px;
}
header .mb-header .top-mes .cool-menu .line-wrap div.line3 {
  margin-bottom: 0;
}
header .mb-header .top-mes .menu-box {
  position: fixed;
  top: 70px;
  width: 100%;
  bottom: 0;
  left: 100%;
  z-index: 10;
  background-color: #f8f8f8;
  overflow: hidden;
  transition: left 0.3s;
}
header .mb-header .top-mes .menu-box.active {
  left: 0;
}
header .mb-header .top-mes .menu-box .menu-list {
  padding: 20px 20px 0;
}
header .mb-header .top-mes .menu-box .menu-list li {
  position: relative;
}
header .mb-header .top-mes .menu-box .menu-list li .sub-nav {
  display: none;
  padding: 0 15px;
}
header .mb-header .top-mes .menu-box .menu-list li .sub-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
}
header .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;
}
header .mb-header .top-mes .menu-box .menu-list .menu-item .layui-icon {
  font-weight: 400;
}
header .mb-header .top-mes .menu-box .menu-list .menu-item:hover {
  color: #20519f;
}

footer .pc-footer {
  background-color: #f4f7fc;
}
footer .pc-footer .footer-top {
  padding: 73px 0 144px;
}
footer .pc-footer .footer-top .link-list dl {
  margin-right: 70px;
}
footer .pc-footer .footer-top .link-list dl:last-child {
  margin-right: 0;
}
footer .pc-footer .footer-top .link-list dl dt {
  font-size: 30px;
  color: #374567;
  font-weight: 700;
  margin-bottom: 40px;
}
footer .pc-footer .footer-top .link-list dl dd {
  margin-bottom: 36px;
  font-size: 18px;
  color: #7a8ba6;
  font-weight: 400;
}
footer .pc-footer .footer-top .link-list dl dd:last-child {
  margin-bottom: 0;
}
footer .pc-footer .footer-top .contact-box {
  margin-left: 30px;
}
footer .pc-footer .footer-top .contact-box h5 {
  font-size: 30px;
  color: #374567;
  font-weight: 700;
}
footer .pc-footer .footer-top .contact-box p {
  font-size: 18px;
  color: #7a8ba6;
  font-weight: 400;
  margin: 20px 0 55px;
}
footer .pc-footer .footer-top .contact-box img {
  width: 82px;
  height: 82px;
}
footer .pc-footer .footer-bottom {
  border-top: 1px solid rgba(122, 139, 166, 0.2);
  padding-top: 20px;
}
footer .pc-footer .footer-bottom .friend-link {
  margin-bottom: 20px;
  font-size: 16px;
  color: #374567;
  font-weight: 400;
}
footer .pc-footer .footer-bottom .friend-link .tit {
  flex-shrink: 0;
}
footer .pc-footer .footer-bottom .friend-link .link-box {
  overflow-x: auto;
}
footer .pc-footer .footer-bottom .friend-link .link-box::-webkit-scrollbar {
  width: 0;
  /*滚动条宽度*/
  height: 0;
  /*滚动条高度*/
}
footer .pc-footer .footer-bottom .friend-link .link-box a {
  flex-shrink: 0;
}
footer .pc-footer .footer-bottom .friend-link .link-box .divider {
  height: 12px;
  margin: 0 14px;
  width: 1px;
  background-color: #374567;
}
footer .pc-footer .footer-bottom .copyright {
  font-size: 16px;
  color: #374567;
  font-weight: 400;
}
footer .pc-footer .footer-bottom .copyright > div {
  padding-bottom: 20px;
  word-break: break-all;
}
footer .pc-footer .footer-bottom .copyright .other-mes .divider {
  width: 1px;
  height: 12px;
  margin: 0 14px;
  flex-shrink: 0;
  background-color: #374567;
}
footer .mb-footer {
  display: none;
  padding: 30px;
  padding-bottom: 0;
}
footer .mb-footer .contact-box {
  text-align: center;
  padding-bottom: 20px;
}
footer .mb-footer .contact-box h5 {
  font-size: 24px;
  color: #374567;
  font-weight: 700;
}
footer .mb-footer .contact-box p {
  font-size: 14px;
  color: #7a8ba6;
  font-weight: 400;
  margin: 20px 0;
}
footer .mb-footer .contact-box img {
  width: 82px;
  height: 82px;
}
footer .mb-footer .footer-bottom {
  border-top: 1px solid rgba(122, 139, 166, 0.2);
  padding-top: 20px;
}
footer .mb-footer .footer-bottom .friend-link {
  margin-bottom: 20px;
  font-size: 14px;
  color: #374567;
  font-weight: 400;
}
footer .mb-footer .footer-bottom .friend-link .tit {
  flex-shrink: 0;
}
footer .mb-footer .footer-bottom .friend-link .link-box {
  overflow-x: auto;
}
footer .mb-footer .footer-bottom .friend-link .link-box::-webkit-scrollbar {
  width: 0;
  /*滚动条宽度*/
  height: 0;
  /*滚动条高度*/
}
footer .mb-footer .footer-bottom .friend-link .link-box a {
  flex-shrink: 0;
}
footer .mb-footer .footer-bottom .friend-link .link-box .divider {
  height: 12px;
  margin: 0 6px;
  width: 1px;
  flex-shrink: 0;
  background-color: #374567;
}
footer .mb-footer .footer-bottom .copyright {
  font-size: 14px;
  color: #374567;
  font-weight: 400;
}
footer .mb-footer .footer-bottom .copyright > div {
  padding-bottom: 20px;
}
footer .mb-footer .footer-bottom .copyright .other-mes .divider {
  width: 1px;
  height: 12px;
  margin: 0 14px;
  background-color: #374567;
}

.top-banner .banner-info {
  max-width: 540px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-banner .banner-info h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}
.top-banner .banner-info p {
  margin-top: 30px;
  line-height: 36px;
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}
.top-banner .banner-info .try-btn {
  margin-top: 30px;
  font-size: 14px;
  color: #20519f;
  background-color: #fff;
  border-radius: 4px;
  line-height: 36px;
  border: 1px solid #20519f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 120px;
}
.top-banner .banner-info .try-btn:hover {
  background-color: #20519f;
  color: #fff;
}

.nav-wrapper {
  background-color: #f5f5f5;
}
.nav-wrapper .nav-list {
  overflow: auto;
}
.nav-wrapper .nav-list .nav-item {
  position: relative;
  font-size: 20px;
  color: #232323;
  font-weight: 400;
  margin-right: 60px;
  flex-shrink: 0;
  height: 80px;
  line-height: 80px;
}
.nav-wrapper .nav-list .nav-item:hover,
.nav-wrapper .nav-list .nav-item.active {
  color: #0a2f7e;
}
.nav-wrapper .nav-list .nav-item:hover::after,
.nav-wrapper .nav-list .nav-item.active::after {
  width: 100%;
}
.nav-wrapper .nav-list .nav-item:last-child {
  margin-right: 0;
}
.nav-wrapper .nav-list .nav-item::after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  left: 0;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
  background-color: #0a2f7e;
  width: 0;
}
.nav-wrapper .breadcrumb {
  height: 80px;
  font-size: 16px;
  color: #0a2f7e;
  font-weight: 400;
}
.nav-wrapper .breadcrumb .home-icon {
  margin-right: 4px;
}
.nav-wrapper .breadcrumb .arrow-icon {
  width: 6px;
  height: 10px;
  margin: 0 12px;
}

.nav-wrapper2 {
  background-color: rgba(243, 243, 243, 0.22);
}

.pagination-wrapper {
  padding-bottom: 130px;
}
.pagination-wrapper .page-list li {
  margin-left: 23px;
  width: 50px;
  height: 50px;
  background-color: #f4f7fc;
  font-size: 20px;
  color: #0a2f7e;
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
}
.pagination-wrapper .page-list li a {
  display: block;
}
.pagination-wrapper .page-list li:hover,
.pagination-wrapper .page-list li.active {
  background-color: #0a2f7e;
  color: #fff !important;
}

.page-section {
  padding: 60px 0 100px;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
.page-section .prev-page {
  flex: 1;
  min-width: 0;
}
.page-section .prev-page img {
  margin-right: 14px;
  width: 9px;
  height: 15px;
}
.page-section .back {
  margin: 0 30px;
  width: 117px;
  height: 36px;
  border-radius: 18px;
  background-color: #f3f3f3;
  cursor: pointer;
}
.page-section .back:hover {
  color: #20519f;
}
.page-section .back img {
  width: 19px;
  height: 18px;
  margin-right: 10px;
}
.page-section .next-page {
  flex: 1;
  min-width: 0;
}
.page-section .next-page img {
  width: 9px;
  height: 15px;
  margin-left: 14px;
}

.sidebar {
  position: fixed;
  z-index: 99;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.sidebar .icon-list .buy-info {
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  width: 50px;
  height: 116px;
  border-radius: 5px;
  background: #20519f;
  writing-mode: vertical-lr;
  letter-spacing: 6px;
  margin-bottom: 5px;
}
.sidebar .icon-list .icon-item {
  background-color: #20519f;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
}
.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: #20519f;
  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: #20519f;
}
.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;
}
.sidebar .icon-list .back-top {
  display: none;
}

#home-wrapper .header .title h2 {
  display: inline-block;
  position: relative;
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  background-image: linear-gradient(to right, #05125f, #1ca1f8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#home-wrapper .header .title h2 .adorn-icon {
  position: absolute;
  z-index: 9;
  left: 100%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
}
#home-wrapper .header .title p {
  margin-top: 26px;
  font-size: 20px;
  color: #b0bac9;
  font-weight: 400;
}
#home-wrapper .header .more-info {
  width: 186px;
  height: 56px;
  font-size: 18px;
  color: #20519f;
  font-weight: 400;
  background-image: linear-gradient(to right, #05125f, #1ca1f8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 3px solid;
  -o-border-image: linear-gradient(to right, #05125f, #1ca1f8) 2;
  border-image: linear-gradient(to right, #05125f, #1ca1f8) 2;
}
#home-wrapper .header .more-info img {
  margin-left: 8px;
  width: 24px;
  height: 7px;
}
#home-wrapper .home-swiper {
  position: relative;
}
#home-wrapper .home-swiper img {
  width: 100%;
  /* height: 600px; */
  min-height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

#home-wrapper .home-swiper img[src=""],
#home-wrapper .home-swiper img:not([src]) {
  opacity: 0;
}
#home-wrapper .home-swiper .swiper-info {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#home-wrapper .home-swiper .swiper-info h2 {
  font-size: 72px;
  color: #1debf6;
  font-weight: 700;
}
#home-wrapper .home-swiper .swiper-info p {
  margin-top: 30px;
  font-size: 48px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .home-swiper .swiper-info .look-btn {
  margin-top: 60px;
  background-color: #fff;
  width: 170px;
  height: 50px;
  border-radius: 25px;
  font-size: 20px;
  color: #061664;
  font-weight: 400;
}
#home-wrapper .home-swiper .swiper-info .look-btn span {
  margin-right: 14px;
}
#home-wrapper .home-swiper .swiper-pagination {
  bottom: 40px;
  text-align: left;
}
#home-wrapper .home-swiper .swiper-pagination-bullet {
  margin: 0;
  text-align: left;
  opacity: 1;
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .home-swiper .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  transition: all 0.3s;
  display: inline-block;
  height: 1px;
  background-color: #fff;
  margin: 0 6px;
}
#home-wrapper .home-swiper .swiper-pagination-bullet-active::after {
  width: 30px;
}
#home-wrapper .product-wrapper {
  background-color: #fff;
  padding: 100px 0 35px;
}
#home-wrapper .product-wrapper .tab-list {
  position: relative;
  margin-top: 80px;
  border-bottom: 1px solid #efefef;
  overflow: auto;
}
#home-wrapper .product-wrapper .tab-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
#home-wrapper .product-wrapper .tab-list .tab-item {
  flex-shrink: 0;
  font-size: 24px;
  color: #000;
  font-weight: 400;
  padding-bottom: 26px;
  margin-right: 180px;
  cursor: pointer;
  transition: color 0.3s;
}

#home-wrapper .product-wrapper .tab-list .tab-item:hover,
#home-wrapper .product-wrapper .tab-list .tab-item.active {
  color: #20519f;
  font-weight: 700;
}
#home-wrapper .product-wrapper .tab-list .tab-item:last-child {
  margin-right: 0;
}
#home-wrapper .product-wrapper .tab-list .tab-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(#1ca1f8, #05125f);
}
#home-wrapper .product-wrapper .product-list {
  display: none;
  margin-top: 55px;
}
#home-wrapper .product-wrapper .product-list .product-item {
  width: 22%;
  margin-bottom: 95px;
}
#home-wrapper .product-wrapper .product-list .product-item .product-icon {
  height: 39px;
}
#home-wrapper .product-wrapper .product-list .product-item h4 {
  margin: 18px 0;
  font-size: 20px;
  color: #20519f;
  font-weight: 700;
}
#home-wrapper .product-wrapper .product-list .product-item p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 30px;
}
#home-wrapper .product-wrapper .product-list i {
  width: 22%;
}
#home-wrapper .solution-wrapper {
  padding-top: 100px;
  position: relative;
}
#home-wrapper .solution-wrapper .header .title h2 {
  color: #fff;
}
#home-wrapper .solution-wrapper .menu-list {
  margin-top: 60px;
}
#home-wrapper .solution-wrapper .menu-list .menu-item {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
  cursor: pointer;
}
#home-wrapper .solution-wrapper .menu-list .menu-item:hover,
#home-wrapper .solution-wrapper .menu-list .menu-item.active {
  font-weight: 700;
}
#home-wrapper .solution-wrapper .menu-list .menu-item:hover span,
#home-wrapper .solution-wrapper .menu-list .menu-item.active span {
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
}
#home-wrapper .solution-wrapper .bottom-mes .toggle-btn a {
  width: 52px;
  height: 52px;
  border-radius: 4px 4px 4px 4px;
  background: #092775;
}
#home-wrapper .solution-wrapper .bottom-mes .toggle-btn a:last-child {
  background-color: #f6f6f6;
  margin-left: 14px;
}
#home-wrapper .solution-wrapper .bottom-mes .menu-content {
  background-position: right bottom;
  background-repeat: no-repeat;
  max-width: 880px;
  height: 390px;
  padding: 40px 60px;
  box-sizing: border-box;
  border-radius: 63px 0 0 0;
  background-color: #092775;
}
#home-wrapper .solution-wrapper .bottom-mes .menu-content h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
#home-wrapper .solution-wrapper .bottom-mes .menu-content p {
  margin: 40px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 40px;
}
#home-wrapper .solution-wrapper .bottom-mes .menu-content .more-info {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .solution-wrapper .bottom-mes .menu-content .more-info img {
  width: 24px;
  height: 7px;
  margin-left: 8px;
}
#home-wrapper .case-wrapper {
  padding: 143px 0 120px;
}
#home-wrapper .case-wrapper .case-list {
  margin-top: 56px;
}
#home-wrapper .case-wrapper .case-list .case-item {
  width: calc((100% - 72px) / 3);
  margin-bottom: 45px;
}
#home-wrapper .case-wrapper .case-list .case-item .img-wrapper {
  position: relative;
  padding-bottom: 74%;
}
#home-wrapper .case-wrapper .case-list i {
  width: calc((100% - 72px) / 3);
}
#home-wrapper .news-wrapper {
  background: linear-gradient(#f3f6fd, #f4f7fc);
  padding: 160px 0;
}
#home-wrapper .news-wrapper .news-box {
  margin: 70px 0;
}
#home-wrapper .news-wrapper .news-box .news-img {
  width: 48%;
}
#home-wrapper .news-wrapper .news-box .news-img .img-wrapper {
  position: relative;
  padding-bottom: 56%;
}
#home-wrapper .news-wrapper .news-box .news-info {
  width: 48%;
}
#home-wrapper .news-wrapper .news-box .news-info h4 {
  font-size: 30px;
  color: #232323;
  font-weight: 700;
}
#home-wrapper .news-wrapper .news-box .news-info .time-info {
  font-size: 20px;
  color: #20519f;
  font-weight: 400;
  margin: 25px 0 44px;
}
#home-wrapper .news-wrapper .news-box .news-info .time-info img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
}
#home-wrapper .news-wrapper .news-box .news-info p {
  font-size: 18px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#home-wrapper .news-wrapper .news-box .news-info .more-info {
  display: inline-flex;
  position: relative;
  margin-top: 70px;
  padding: 0 4px 10px;
  font-size: 20px;
  color: #20519f;
  font-weight: 400;
  padding-bottom: 10px;
}
#home-wrapper .news-wrapper .news-box .news-info .more-info::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(#1ca1f8, #05125f);
}
#home-wrapper .news-wrapper .news-box .news-info .more-info img {
  width: 24px;
  height: 7px;
  margin-left: 6px;
}
#home-wrapper .news-wrapper .news-list .news-item {
  width: 28%;
}
#home-wrapper .news-wrapper .news-list .news-item h4 {
  font-size: 24px;
  color: #232323;
  font-weight: 700;
}
#home-wrapper .news-wrapper .news-list .news-item .time-info {
  font-size: 16px;
  color: #20519f;
  font-weight: 400;
  margin: 20px 0;
}
#home-wrapper .news-wrapper .news-list .news-item .time-info img {
  margin-right: 6px;
  width: 20px;
  height: 20px;
}
#home-wrapper .news-wrapper .news-list .news-item p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#home-wrapper .news-wrapper .news-list .news-item .more-info {
  display: inline-flex;
  margin-top: 50px;
  font-size: 16px;
  color: #20519f;
  font-weight: 400;
}
#home-wrapper .news-wrapper .news-list .news-item .more-info img {
  width: 24px;
  height: 7px;
  margin-left: 6px;
}
#home-wrapper .news-wrapper .news-list i {
  width: 28%;
}
#home-wrapper .decoration-wrapper {
  padding: 88px 0;
}
#home-wrapper .decoration-wrapper .decoration-swiper .decoration-item {
  flex-shrink: 0;
  width: 144px;
  height: 57px;
}

#product-wrapper {
  padding: 100px 0;
}
#product-wrapper .pro-list .pro-item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 100px) / 3);
  background-color: #fff;
  padding: 35px;
  box-shadow: 0 4px 24px rgba(0, 114, 255, 0.1);
  margin-bottom: 40px;
}
#product-wrapper .pro-list .pro-item:hover .name {
  color: #20519f;
}
#product-wrapper .pro-list .pro-item:hover .look-btn {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  border: 1px solid #0a2f7e;
  background-color: #0a2f7e;
}
#product-wrapper .pro-list .pro-item .name {
  font-size: 24px;
  color: #232323;
  font-weight: 700;
  padding-bottom: 22px;
  border-bottom: 1px solid #efefef;
}
#product-wrapper .pro-list .pro-item .name img {
  /* width: 32px; */
  height: 30px;
  /* height: 34px; */
  margin-right: 13px;
}
#product-wrapper .pro-list .pro-item p {
  flex-grow: 1;
  margin: 10px 0 30px;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#product-wrapper .pro-list .pro-item .look-btn {
  transition: all 0.3s;
  width: 100%;
  font-size: 18px;
  color: #565656;
  font-weight: 400;
  border: 1px solid #565656;
  background-color: #fff;
  box-sizing: border-box;
  height: 50px;
}
#product-wrapper .pro-list i {
  width: calc((100% - 100px) / 3);
}

.common-box {
  padding: 100px 0 130px;
  background-color: #fff;
}
.common-box h3 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

#product-detail .intro-wrapper {
  padding: 50px 0 94px;
  background-color: #fff;
}
#product-detail .intro-wrapper .intro-info {
  width: 46%;
}
#product-detail .intro-wrapper .intro-info h3 {
  font-size: 30px;
  color: #232323;
  font-weight: 700;
  margin-bottom: 32px;
}
#product-detail .intro-wrapper .intro-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#product-detail .intro-wrapper .img-wrapper {
  position: relative;
  width: 44%;
}
#product-detail .intro-wrapper2 {
  padding: 90px 0 103px;
  background-color: #f3f7ff;
}
#product-detail .intro-wrapper2 .intro-info {
  width: 46%;
}
#product-detail .intro-wrapper2 .intro-info h3 {
  font-size: 30px;
  color: #232323;
  font-weight: 700;
  margin-bottom: 32px;
}
#product-detail .intro-wrapper2 .intro-info .content-list {
  position: relative;
  padding-right: 100px;
  box-sizing: border-box;
  height: 300px;
  overflow: auto;
}
#product-detail .intro-wrapper2 .intro-info .content-list p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 28px;
}
#product-detail .intro-wrapper2 .intro-info .content-list .content-item {
  margin-bottom: 30px;
  font-size: 20px;
  color: #232323;
  font-weight: 700;
}
#product-detail .intro-wrapper2 .intro-info .content-list .content-item p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 44px;
}
#product-detail .intro-wrapper2 .intro-info .content-list .adorn {
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 100%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.7), transparent);
}
#product-detail .intro-wrapper2 .img-wrapper {
  position: relative;
  width: 41%;
}
#product-detail .cost-wrapper {
  background-color: #f3f7ff;
}
#product-detail .cost-wrapper p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#product-detail .function-wrapper h3 {
  margin-bottom: 0;
}
#product-detail .function-wrapper h5 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}
#product-detail .function-wrapper .tab-list {
  position: relative;
  margin: 60px 0;
  border-bottom: 1px solid #efefef;
  overflow: auto;
}
#product-detail .function-wrapper .tab-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
#product-detail .function-wrapper .tab-list .tab-item {
  flex-shrink: 0;
  font-size: 20px;
  color: #000;
  font-weight: 400;
  padding-bottom: 26px;
  margin-right: 30px;
  cursor: pointer;
  transition: color 0.3s;
}
#product-detail .function-wrapper .tab-list .tab-item:hover,
#product-detail .function-wrapper .tab-list .tab-item.active {
  color: #20519f;
  font-weight: 700;
}
#product-detail .function-wrapper .tab-list .tab-item:last-child {
  margin-right: 0;
}
#product-detail .function-wrapper .tab-list .tab-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(#1ca1f8, #05125f);
}
#product-detail .function-wrapper .function-box {
  display: none;
}
#product-detail .function-wrapper .function-box:first-child {
  display: flex;
}
#product-detail .function-wrapper .function-box .function-info {
  width: 50%;
  min-width: 0;
  padding: 40px;
  background-color: #fff;
}
#product-detail .function-wrapper .function-box .function-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#product-detail .function-wrapper .function-box .img-wrapper {
  position: relative;
  width: 50%;
}
#product-detail .custom-wrapper .custom-swiper {
  padding-bottom: 28px;
}
#product-detail .custom-wrapper .custom-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(10, 47, 126, 0.3);
}
#product-detail .custom-wrapper .custom-swiper .swiper-pagination-bullet-active {
  width: 30px;
  background-color: rgb(10, 47, 126);
}
#product-detail .custom-wrapper .custom-swiper .swiper-pagination-bullet:only-child,
#product-detail .custom-wrapper .custom-swiper .swiper-pagination-lock {
  display: flex !important;
  justify-content: center;
}
#product-detail .custom-wrapper .custom-swiper .custom-list {
  padding: 8px;
}
#product-detail .custom-wrapper .custom-swiper .custom-list .custom-item {
  padding: 20px 40px;
  box-shadow: 2px 4px 10px rgba(2, 115, 255, 0.1);
  margin-bottom: 25px;
}
#product-detail .custom-wrapper .custom-swiper .custom-list i {
  width: calc((100% - 120px) / 5);
}
#product-detail .case-wrapper {
  background-color: #fff;
}
#product-detail .case-wrapper .case-list .case-item {
  width: calc((100% - 60px) / 4);
  transition-property: all;
  transition-duration: 0.3s;
}
#product-detail .case-wrapper .case-list .case-item:hover {
  box-shadow: 0 4px 20px rgba(2, 115, 255, 0.1);
}
#product-detail .case-wrapper .case-list .case-item:hover .img-wrapper img {
  transform: scale(1.03);
}
#product-detail .case-wrapper .case-list .case-item .img-wrapper {
  position: relative;
  padding-bottom: 63%;
  overflow: hidden;
}
#product-detail .case-wrapper .case-list .case-item .case-info {
  padding: 26px 30px 44px 23px;
}
#product-detail .case-wrapper .case-list .case-item .case-info .name {
  font-size: 20px;
  color: #0a2f7e;
  font-weight: 700;
}
#product-detail .case-wrapper .case-list .case-item .case-info .line {
  margin: 10px 0 30px;
  width: 33px;
  height: 4px;
  background-color: #0a2f7e;
}
#product-detail .case-wrapper .case-list .case-item .case-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
#product-detail .case-wrapper .case-list .case-item .case-info .more-icon {
  margin-top: 12px;
  width: 26px;
  height: 8px;
}
#product-detail .case-wrapper .case-list i {
  width: calc((100% - 60px) / 4);
}

#solution-wrapper {
  padding: 80px 0 176px;
}
#solution-wrapper .solution-list .solution-item {
  background-color: #f9f9f9;
  padding: 30px 60px;
  margin-bottom: 63px;
}
#solution-wrapper .solution-list .solution-item:last-child {
  margin-bottom: 0;
}
#solution-wrapper .solution-list .solution-item:nth-child(2n) {
  flex-direction: row-reverse;
}
#solution-wrapper .solution-list .solution-item .img-wrapper {
  width: 37%;
  position: relative;
  padding-bottom: 32%;
}
#solution-wrapper .solution-list .solution-item .solution-info {
  width: 45.4%;
}
#solution-wrapper .solution-list .solution-item .solution-info h3 {
  font-size: 34px;
  color: #0a2f7e;
  font-weight: 700;
}
#solution-wrapper .solution-list .solution-item .solution-info p {
  margin: 30px 0 43px;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 44px;
}
#solution-wrapper .solution-list .solution-item .solution-info button {
  width: 198px;
  height: 62px;
  background-color: #0a2f7e;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}
#solution-wrapper .solution-list .solution-item .solution-info button img {
  width: 24px;
  height: 7px;
  margin-left: 13px;
}

#solution-detail .intro-wrapper {
  padding: 100px 0 130px;
}
#solution-detail .intro-wrapper .intro-info {
  width: 39.4%;
}
#solution-detail .intro-wrapper .intro-info h3 {
  font-size: 34px;
  color: #070506;
  font-weight: 700;
  margin-bottom: 20px;
}
#solution-detail .intro-wrapper .intro-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 44px;
}
#solution-detail .intro-wrapper .intro-info .more-info {
  display: block;
  margin-top: 30px;
  font-size: 18px;
  color: #7a8ba6;
  font-weight: 400;
}
#solution-detail .intro-wrapper .intro-info .more-info img {
  width: 24px;
  height: 7px;
  margin-left: 13px;
}
#solution-detail .intro-wrapper .img-wrapper {
  position: relative;
  width: 55%;
  padding-bottom: 27%;
}
#solution-detail .industry-wrapper {
  background-color: #f3f7ff;
  padding: 100px 0 180px;
  text-align: center;
}
#solution-detail .industry-wrapper h2 {
  font-size: 40px;
  color: #232323;
  font-weight: 700;
}
#solution-detail .industry-wrapper .line {
  width: 41px;
  height: 6px;
  background-color: #232323;
  margin: 20px auto 60px;
}
#solution-detail .industry-wrapper .industry-list .industry-item {
  position: relative;
  top: 66px;
  box-sizing: border-box;
  padding: 38px 26px;
  width: 18%;
  background-color: #fff;
  margin-right: 2.5%;
}
#solution-detail .industry-wrapper .industry-list .industry-item:last-child {
  margin-right: 0;
}
#solution-detail .industry-wrapper .industry-list .industry-item:nth-child(2n) {
  top: -54px;
}
#solution-detail .industry-wrapper .industry-list .industry-item .icon-wrap {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(-82deg, #05125f 0%, #1ca1f8 100%);
}
#solution-detail .industry-wrapper .industry-list .industry-item .icon-wrap img {
  width: 30px;
  height: 28px;
}
#solution-detail .industry-wrapper .industry-list .industry-item h4 {
  margin: 20px 0;
  font-size: 24px;
  color: #20519f;
  font-weight: 700;
}
#solution-detail .industry-wrapper .industry-list .industry-item p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#solution-detail .industry-wrapper .industry-list i {
  width: calc((100% - 160px) / 5);
}
#solution-detail .industry-wrapper .industry-info {
  display: none;
  background-color: #fff;
  padding: 20px;
}
#solution-detail .industry-wrapper .industry-info .icon-wrap {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(-82deg, #05125f 0%, #1ca1f8 100%);
}
#solution-detail .industry-wrapper .industry-info .icon-wrap img {
  width: 30px;
  height: 28px;
}
#solution-detail .industry-wrapper .industry-info h4 {
  margin: 20px 0;
  font-size: 16px;
  color: #20519f;
  font-weight: 700;
}
#solution-detail .industry-wrapper .industry-info p {
  font-size: 14px;
  color: #565656;
  font-weight: 400;
  line-height: 24px;
}
#solution-detail .core-wrapper .header {
  padding-top: 100px;
  box-shadow: -1px 5px 24px 5px rgba(104, 153, 214, 0.09);
  text-align: center;
}
#solution-detail .core-wrapper .header h2 {
  font-size: 40px;
  color: #232323;
  font-weight: 700;
}
#solution-detail .core-wrapper .header .tab-list {
  margin-top: 76px;
  overflow-x: auto;
}
#solution-detail .core-wrapper .header .tab-list .tab-item {
  flex-shrink: 0;
  position: relative;
  margin-right: 210px;
  font-size: 20px;
  color: #374567;
  font-weight: 400;
  padding-bottom: 28px;
  cursor: pointer;
}
#solution-detail .core-wrapper .header .tab-list .tab-item.active {
  color: #0a2f7e;
}
#solution-detail .core-wrapper .header .tab-list .tab-item.active::after,
#solution-detail .core-wrapper .header .tab-list .tab-item:hover::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #0a2f7e;
  border-radius: 2px;
  bottom: 0;
}
#solution-detail .core-wrapper .header .tab-list .tab-item:last-child {
  margin-right: 0;
}
#solution-detail .core-wrapper .img-wrapper {
  display: none;
  padding: 50px 0 139px;
}
#solution-detail .core-wrapper p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#solution-detail .scene-wrapper {
  position: relative;
  background: linear-gradient(180deg, #f3f7ff 0%, #f3f7ff 50%, #fff 100%);
  padding: 100px 0;
  text-align: center;
}
#solution-detail .scene-wrapper h2 {
  font-size: 40px;
  color: #232323;
  font-weight: 700;
}
#solution-detail .scene-wrapper .line {
  width: 41px;
  height: 6px;
  background-color: #232323;
  margin: 20px auto 60px;
}
#solution-detail .scene-wrapper .scene-list .scene-item {
  width: 21%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  text-align: left;
  margin-right: 5.3333333333%;
}
#solution-detail .scene-wrapper .scene-list .scene-item:last-child {
  margin-right: 0;
}
#solution-detail .scene-wrapper .scene-list .scene-item .img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.640625%;
}
#solution-detail .scene-wrapper .scene-list .scene-item h4 {
  margin: 20px 0;
  font-size: 24px;
  color: #232323;
  font-weight: 700;
}
#solution-detail .scene-wrapper .scene-list .scene-item p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#solution-detail .scene-wrapper .scene-list .scene-item .num {
  position: absolute;
  line-height: 1;
  z-index: -1;
  font-size: 196px;
  color: #dae4f8;
  font-weight: 400;
  right: 0;
  bottom: 0;
}
#solution-detail .scene-wrapper .scene-list i {
  width: 21%;
}
#solution-detail .scene-wrapper .scene-box p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}

#case-wrapper {
  background-color: #fff;
  padding: 30px 0 120px;
}
#case-wrapper .case-list {
  margin-bottom: -52px;
}
#case-wrapper .case-list .case-item {
  background-color: #0a2f7e;
  width: calc((100% - 60px) / 3);
  transition: all 0.3s;
  margin-bottom: 52px;
}
#case-wrapper .case-list .case-item:hover {
  box-shadow: 0 4px 20px rgba(2, 115, 255, 0.1);
}
#case-wrapper .case-list .case-item:hover .img-wrapper img {
  transform: scale(1.03);
}
#case-wrapper .case-list .case-item .img-wrapper {
  position: relative;
  padding-bottom: 63%;
  overflow: hidden;
}
#case-wrapper .case-list .case-item .case-info {
  padding: 26px 30px 44px 23px;
}
#case-wrapper .case-list .case-item .case-info .name {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
#case-wrapper .case-list .case-item .case-info .line {
  margin: 20px 0;
  width: 44px;
  height: 4px;
  background-color: #fff;
}
#case-wrapper .case-list .case-item .case-info p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 36px;
}
#case-wrapper .case-list .case-item .case-info .more-icon {
  margin-top: 22px;
  width: 24px;
  height: 7px;
}
#case-wrapper .case-list i {
  width: calc((100% - 60px) / 3);
}

#case-detail h3 {
  font-size: 36px;
  color: #232323;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
#case-detail .detail-wrapper {
  padding: 74px 74px 0;
  background-color: #fff;
}
#case-detail .detail-wrapper h3 {
  font-size: 26px;
  color: #232323;
  font-weight: 700;
}
#case-detail .detail-wrapper .time-info {
  margin: 37px 0 34px;
  font-size: 20px;
  color: #20519f;
  font-weight: 400;
}
#case-detail .detail-wrapper .time-info img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
#case-detail .detail-wrapper .intro {
  margin-bottom: 30px;
  padding: 26px 30px;
  background-color: #f3f3f3;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#case-detail .detail-wrapper .content p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}
#case-detail .intro-wrapper {
  padding: 100px 0 130px;
  background-color: #f3f7ff;
  border-radius: 10px;
}
#case-detail .intro-wrapper .intro-swiper {
  width: 62%;
}
#case-detail .intro-wrapper .intro-swiper img {
  width: 100%;
}
#case-detail .intro-wrapper .intro-swiper .swiper-button-prev,
#case-detail .intro-wrapper .intro-swiper .swiper-button-next {
  color: #fff;
}
#case-detail .intro-wrapper .intro-info {
  width: 38%;
  background-color: #fff;
  padding: 30px 40px 0;
}
#case-detail .intro-wrapper .intro-info p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#case-detail .intro-wrapper p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}

#news-detail {
  padding: 100px 0 155px;
  background-color: rgba(243, 243, 243, 0.22);
}
#news-detail .detail-wrapper {
  padding: 74px 74px 0;
  background-color: #fff;
}
#news-detail .detail-wrapper h3 {
  font-size: 26px;
  color: #232323;
  font-weight: 700;
}
#news-detail .detail-wrapper .time-info {
  margin: 37px 0 34px;
  font-size: 20px;
  color: #20519f;
  font-weight: 400;
}
#news-detail .detail-wrapper .time-info img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
#news-detail .detail-wrapper .intro {
  margin-bottom: 30px;
  padding: 26px 30px;
  background-color: #f3f3f3;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#news-detail .detail-wrapper .content p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

#news-wrapper {
  padding-top: 100px;
}
#news-wrapper .news-box {
  margin: 70px 0;
}
#news-wrapper .news-box .news-img {
  width: 48%;
}
#news-wrapper .news-box .news-img .img-wrapper {
  position: relative;
  padding-bottom: 56%;
}
#news-wrapper .news-box .news-info {
  width: 48%;
}
#news-wrapper .news-box .news-info h4 {
  font-size: 30px;
  color: #232323;
  font-weight: 700;
}
#news-wrapper .news-box .news-info .time-info {
  font-size: 20px;
  color: #20519f;
  font-weight: 400;
  margin: 25px 0 44px;
}
#news-wrapper .news-box .news-info .time-info img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
}
#news-wrapper .news-box .news-info p {
  font-size: 18px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#news-wrapper .news-box .news-info .more-info {
  display: inline-flex;
  position: relative;
  margin-top: 70px;
  padding: 0 4px 10px;
  font-size: 20px;
  color: #20519f;
  font-weight: 400;
  padding-bottom: 10px;
}
#news-wrapper .news-box .news-info .more-info::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(#1ca1f8, #05125f);
}
#news-wrapper .news-box .news-info .more-info img {
  width: 24px;
  height: 7px;
  margin-left: 6px;
}
#news-wrapper .news-list .news-item {
  width: 28%;
  margin-bottom: 100px;
}
#news-wrapper .news-list .news-item h4 {
  font-size: 24px;
  color: #232323;
  font-weight: 700;
}
#news-wrapper .news-list .news-item .time-info {
  font-size: 16px;
  color: #20519f;
  font-weight: 400;
  margin: 20px 0;
}
#news-wrapper .news-list .news-item .time-info img {
  margin-right: 6px;
  width: 20px;
  height: 20px;
}
#news-wrapper .news-list .news-item p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#news-wrapper .news-list .news-item .more-info {
  display: inline-flex;
  margin-top: 50px;
  font-size: 16px;
  color: #20519f;
  font-weight: 400;
}
#news-wrapper .news-list .news-item .more-info img {
  width: 24px;
  height: 7px;
  margin-left: 6px;
}
#news-wrapper .news-list i {
  width: 28%;
}

#about-us .about-wrapper {
  padding: 100px 0 130px;
}
#about-us .about-wrapper .img-wrapper {
  width: 34%;
}
#about-us .about-wrapper .about-info {
  width: 60%;
}
#about-us .about-wrapper .about-info h2 {
  font-size: 48px;
  color: #232323;
  font-weight: 700;
}
#about-us .about-wrapper .about-info .content {
  margin: 40px 0 70px;
}
#about-us .about-wrapper .about-info .content p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#about-us .about-wrapper .about-info .txt-list .txt-item {
  width: 25.6%;
  margin-bottom: 55px;
}
#about-us .about-wrapper .about-info .txt-list .txt-item .tit {
  font-size: 18px;
  color: #20519f;
  font-weight: 700;
  margin-bottom: 20px;
}
#about-us .about-wrapper .about-info .txt-list .txt-item p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 30px;
}
#about-us .about-wrapper .about-info .txt-list i {
  width: 25.6%;
}
#about-us .corporate-wrapper {
  padding: 100px 0 175px;
  text-align: center;
}
#about-us .corporate-wrapper .swiper-slide {
  height: auto;
  align-self: stretch;
  background: #fff;
}
#about-us .corporate-wrapper h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}
#about-us .corporate-wrapper .en {
  font-size: 18px;
  color: #bbb;
  font-weight: 400;
  margin: 30px 0 60px;
}
#about-us .corporate-wrapper .intro-info {
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
}
#about-us .corporate-wrapper .intro-info h4 {
  font-size: 30px;
  color: #0a2f7e;
  font-weight: 700;
  margin-bottom: 40px;
}
#about-us .corporate-wrapper .intro-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#about-us .develop-wrapper {
  padding: 100px 0 180px;
  text-align: center;
}
#about-us .develop-wrapper h2 {
  font-size: 48px;
  color: #232323;
  font-weight: 700;
}
#about-us .develop-wrapper .desc {
  margin-top: 36px;
  font-size: 18px;
  color: #787878;
  font-weight: 400;
  line-height: 24px;
}
#about-us .develop-wrapper .intro-content {
  position: relative;
  display: none;
  margin: 113px 0 90px;
}
#about-us .develop-wrapper .intro-content .year {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 340px;
  color: #f5f5f5;
  font-weight: 700;
}
#about-us .develop-wrapper .intro-content .detail {
  height: 250px;
  padding: 0 30px;
  overflow: auto;
}
#about-us .develop-wrapper .intro-content .detail p {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin-bottom: 28px;
}
#about-us .develop-wrapper .year-wrapper .left,
#about-us .develop-wrapper .year-wrapper .right {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  background-color: #999;
}
#about-us .develop-wrapper .year-wrapper .left img,
#about-us .develop-wrapper .year-wrapper .right img {
  width: 7px;
  height: 13px;
}
#about-us .develop-wrapper .year-wrapper .left:hover,
#about-us .develop-wrapper .year-wrapper .right:hover {
  background-color: #20519f;
}
#about-us .develop-wrapper .year-wrapper .year-box {
  position: relative;
  top: 11px;
  flex: 1;
  min-width: 0;
}
#about-us .develop-wrapper .year-wrapper .year-box::-webkit-scrollbar {
  width: 0;
  height: 0;
}
#about-us .develop-wrapper .year-wrapper .year-box .line {
  position: absolute;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  border-radius: 2px;
  background-color: #d0d0d0;
}
#about-us .develop-wrapper .year-wrapper .year-box .year-list {
  padding: 0 20px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
#about-us .develop-wrapper .year-wrapper .year-box .year-list::-webkit-scrollbar {
  height: 0;
}
#about-us .develop-wrapper .year-wrapper .year-box .year-list .year-item {
  position: relative;
  font-size: 16px;
  color: #232323;
  font-weight: 700;
  cursor: pointer;
  padding: 18px 30px 0;
  border-top: 4px solid transparent;
}
#about-us .develop-wrapper .year-wrapper .year-box .year-list .year-item:hover,
#about-us .develop-wrapper .year-wrapper .year-box .year-list .year-item.active {
  border-top: 4px solid #20519f;
  color: #20519f;
}

#advantage-wrapper {
  padding: 100px 0 130px;
}
#advantage-wrapper .advantage-box .img-wrapper {
  width: 34%;
}
#advantage-wrapper .advantage-box .advantage-info {
  width: 60%;
}
#advantage-wrapper .advantage-box .advantage-info h2 {
  font-size: 48px;
  color: #232323;
  font-weight: 700;
  margin-bottom: 60px;
}
#advantage-wrapper .advantage-box .advantage-info .content h4 {
  font-size: 24px;
  color: #20519f;
  font-weight: 700;
}
#advantage-wrapper .advantage-box .advantage-info .content p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}

#honor-wrapper {
  padding: 100px 0;
  position: relative;
}
#honor-wrapper h2 {
  text-align: center;
  font-size: 36px;
  color: #20519f;
  font-weight: 700;
  margin-bottom: 65px;
}
#honor-wrapper .honor-list {
  margin-bottom: 40px;
}
#honor-wrapper .honor-list .honor-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32%;
  box-sizing: border-box;
  margin-bottom: 30px;
  text-align: center;
}
#honor-wrapper .honor-list .honor-item:hover .mask {
  opacity: 1;
}
#honor-wrapper .honor-list .honor-item .honor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px 30px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
#honor-wrapper .honor-list .honor-item .mask {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}
#honor-wrapper .honor-list .honor-item .mask .layui-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
#honor-wrapper .honor-list .honor-item .img-wrapper {
  position: relative;
}
#honor-wrapper .honor-list .honor-item .img-wrapper img {
  width: 160px;
}
#honor-wrapper .honor-list .honor-item .text {
  padding-top: 30px;
  font-size: 18px;
  color: #e1b275;
  font-weight: 700;
  letter-spacing: 2px;
}
#honor-wrapper .honor-list i {
  width: 30%;
}
#honor-wrapper .honor-swiper .honor-item {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: #f5f5f5;
  margin-bottom: 40px;
}
#honor-wrapper .honor-swiper .honor-item:hover .mask {
  opacity: 1;
}
#honor-wrapper .honor-swiper .honor-item .mask {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#honor-wrapper .honor-swiper .honor-item .mask .layui-icon {
  font-size: 20px;
  margin-bottom: 10px;
}
#honor-wrapper .honor-swiper .honor-item .img-wrapper {
  position: relative;
  padding-bottom: 124%;
}
#honor-wrapper .honor-swiper .honor-item p {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
#honor-wrapper .toggle-btn button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #20519f;
}
#honor-wrapper .toggle-btn .swiper-button-prev {
  left: 10px;
}
#honor-wrapper .toggle-btn .swiper-button-next {
  right: 10px;
}
#honor-wrapper .toggle-btn .swiper-button-prev:after,
#honor-wrapper .toggle-btn .swiper-button-next:after {
  font-size: 20px;
  color: #fff;
}
#honor-wrapper .toggle-btn .swiper-button-prev.swiper-button-disabled,
#honor-wrapper .toggle-btn .swiper-button-next.swiper-button-disabled {
  opacity: 0.8;
}

#contact-us {
  padding: 100px 0 170px;
}
#contact-us h2 {
  text-align: center;
  font-size: 36px;
  color: #20519f;
  font-weight: 700;
  margin-bottom: 65px;
}
#contact-us .contact-wrapper .form-box {
  padding: 13px 0 40px;
  width: 48%;
  font-size: 20px;
  color: #20519f;
  font-weight: 700;
}
#contact-us .contact-wrapper .form-box h3 {
  margin: 15px 0 30px;
  font-size: 45px;
  color: #333333;
  font-weight: 700;
}
#contact-us .contact-wrapper .form-box p {
  font-size: 17px;
  color: #ccc;
  font-weight: 400;
  line-height: 30px;
}
#contact-us .contact-wrapper .form-box .form-wrapper {
  margin-top: 40px;
}
#contact-us .contact-wrapper .form-box .form-wrapper .form-item {
  margin-bottom: 48px;
  font-size: 18px;
  color: #666;
  font-weight: 400;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
#contact-us .contact-wrapper .form-box .form-wrapper .form-item:last-child {
  margin-bottom: 26px;
}
#contact-us .contact-wrapper .form-box .form-wrapper .form-item input {
  width: 100%;
}
#contact-us .contact-wrapper .form-box .form-wrapper .form-item textarea {
  height: 120px;
  outline: none;
  border: none;
  width: 100%;
}
#contact-us .contact-wrapper .form-box .form-wrapper button {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  width: 250px;
  height: 60px;
  background-color: #20519f;
}
#contact-us .contact-wrapper .contact-box {
  width: 46.5%;
  padding: 108px 60px 0;
  border-radius: 24px;
  background-color: #0a2f7e;
}
#contact-us .contact-wrapper .contact-box h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}
#contact-us .contact-wrapper .contact-box > p {
  margin: 20px 0 70px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item {
  margin-bottom: 50px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item:last-child {
  margin-bottom: 0;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item .icon-wrap {
  min-width: 58px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item .icon-wrap .addr-icon {
  width: 58px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item .icon-wrap .phone-icon {
  width: 47px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item .icon-wrap .email-icon {
  width: 58px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item .contact-info {
  flex: 1;
  min-width: 0;
  margin-left: 30px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item .contact-info .tit {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
#contact-us .contact-wrapper .contact-box .contact-list .contact-item .contact-info p {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}

/* 下载模块 */
#download-wrapper .download-list .download-item {
  position: relative;
  /* width: calc(100% / 3 - 30px); */
  width: 24%;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #f5eafa;

  margin-bottom: 30px;
}
#download-wrapper .download-list i {
  width: 24%;
}

/* #download-wrapper .download-list .download-item::before {
  position: absolute;
  left: 30px;
  top: 0;
  content: "";
  width: 50px;
  height: 6px;
  background-color: #20519f;
  border-radius: 0 0 6px 6px;
} */
#download-wrapper .download-list .download-item .info-wrapper {
  padding: 20px;
}

#download-wrapper .download-list .download-item .base-info {
  /* font-size: 24px; */
  font-size: 20px;
  color: #374567;
  font-weight: 700;
}

#download-wrapper .download-list .download-item .img-wrapper {
  position: relative;
  padding-bottom: 63%;
  overflow: hidden;
}

#download-wrapper .download-list .download-item .base-info .price {
  /* font-size: 20px; */
  font-size: 16px;
  color: #ff0000;
  font-weight: 700;
}

#download-wrapper .download-list .download-item .base-info .price .big-text {
  /* font-size: 36px; */
  font-size: 20px;
}

#download-wrapper .download-list .download-item .desc-wrapper {
  /* margin: 30px 0 20px; */
  margin: 14px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
  font-size: 16px;
  color: #7a8ba6;
  font-weight: 400;
}

#download-wrapper .download-list .download-item .desc-wrapper .divider {
  display: inline-block;
  margin: 0 10px;
  width: 1px;
  background-color: #ededed;
}

#download-wrapper .download-list .download-item .download-btn {
  /* font-size: 18px; */
  font-size: 14px;
  color: #20519f;
  font-weight: 200;
  background-color: #fff;
  border-radius: 4px;
  line-height: 30px;
  border: 1px solid #20519f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 40%;
}

#download-wrapper .download-list .download-item .download-btn:hover {
  color: #fff;
  background-color: #20519f;
}

/* 服务模块 */
#service-wrapper .content p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}
#service-wrapper .case-wrapper {
  background-color: #fff;
}
#service-wrapper .case-wrapper .case-list .case-item {
  width: 32%;
  transition-property: all;
  transition-duration: 0.3s;
  box-shadow: 0 4px 20px rgba(2, 115, 255, 0.1);
}
/* #service-wrapper .case-wrapper .case-list .case-item:hover {
  box-shadow: 0 4px 20px rgba(2, 115, 255, 0.1);
} */
#service-wrapper .case-wrapper .case-list .case-item:hover .img-wrapper img {
  transform: scale(1.03);
}
#service-wrapper .case-wrapper .case-list .case-item .img-wrapper {
  position: relative;
  padding-bottom: 63%;
  overflow: hidden;
}
#service-wrapper .case-wrapper .case-list .case-item .case-info {
  /* padding: 26px 30px 44px 23px; */
  padding: 20px;
}
#service-wrapper .case-wrapper .case-list .case-item .case-info .name {
  margin-top: 20px;
  font-size: 14px;
  color: #0a2f7e;
  font-weight: 700;
}
#service-wrapper .case-wrapper .case-list .case-item .case-info .line {
  margin: 10px 0 30px;
  width: 33px;
  height: 4px;
  background-color: #0a2f7e;
}
#service-wrapper .case-wrapper .case-list .case-item .case-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
#service-wrapper .case-wrapper .case-list .case-item .case-info .more-icon {
  margin-top: 12px;
  width: 26px;
  height: 8px;
}
#service-wrapper .case-wrapper .case-list i {
  width: 32%;
}

/* #download-wrapper .download-list::after {
  content: "";
  width: calc(100% / 3 - 48px);
} */

@media screen and (max-width: 1500px) {
  /* 导航栏 */
  header .pc-header .pc-section .logo img,
  header .pc-header .pc-section2 .logo img {
    width: 200px;
  }
  header .pc-header .pc-section .nav-section .nav-list li > a,
  header .pc-header .pc-section2 .nav-section .nav-list li > a {
    font-size: 16px;
  }
  header .pc-header .pc-section .nav-section button,
  header .pc-header .pc-section2 .nav-section button {
    font-size: 16px;
    width: 100px;
    margin-left: 16px;
  }
  header .pc-header .pc-section2 .nav-section .nav-list {
    width: 600px;
  }
}
@media screen and (max-width: 1400px) {
  #contact-us .contact-wrapper .form-box {
    width: 30%;
  }
  #contact-us .contact-wrapper .contact-box {
    width: 60%;
  }
  #solution-detail .scene-wrapper .scene-list .scene-item .num {
    font-size: 140px;
  }
  /* 底部模块 */
  footer .pc-footer .footer-top .link-list dl {
    margin-right: 30px;
  }
  footer .pc-footer .footer-top .link-list dl dt {
    font-size: 24px;
    margin-bottom: 30px;
  }
  footer .pc-footer .footer-top .link-list dl dd {
    font-size: 16px;
    margin-bottom: 30px;
  }
  footer .pc-footer .footer-top .contact-box h5 {
    font-size: 24px;
  }
  footer .pc-footer .footer-top .contact-box p {
    margin: 30px 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 1300px) {
  header .pc-header .pc-section .nav-section .nav-list li a {
    padding: 15px 20px;
  }
  #honor-wrapper .honor-list .honor-item {
    width: 48%;
  }
}
@media screen and (max-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  .hidden-lg {
    display: none !important;
  }
  /* 底部模块 */
  footer .pc-footer .footer-top .link-list {
    width: 100%;
    justify-content: space-between;
  }
  footer .pc-footer .footer-top .contact-box {
    text-align: center;
    margin-top: 30px;
    margin-left: 0;
    width: 100%;
  }
  /* 首页模块 */
  #home-wrapper .news-wrapper .news-box .news-info .time-info {
    margin: 20px 0;
  }
  #home-wrapper .news-wrapper .news-box .news-info p {
    font-size: 16px;
    line-height: 30px;
  }
  #home-wrapper .news-wrapper .news-box .news-info .more-info {
    margin-top: 30px;
  }
  #home-wrapper .solution-wrapper .bottom-mes .menu-content {
    max-width: 660px;
  }
  /* 产品模块 */
  #product-wrapper .pro-list .pro-item {
    width: 48%;
  }
  /* 解决方案模块 */
  #solution-detail .intro-wrapper .intro-info {
    width: 100%;
  }
  #solution-detail .intro-wrapper .img-wrapper {
    margin-top: 30px;
    width: 100%;
  }
  /* 新闻模块 */
  #news-wrapper .news-box .news-info .time-info {
    margin: 20px 0;
  }
  #news-wrapper .news-box .news-info p {
    font-size: 16px;
    line-height: 30px;
  }
  #news-wrapper .news-box .news-info .more-info {
    margin-top: 30px;
  }
  /* 关于我们-联深优势 */
  #advantage-wrapper .advantage-box .advantage-info h2 {
    margin-bottom: 30px;
  }
  #advantage-wrapper .advantage-box .advantage-info .content .content-item {
    margin-bottom: 30px;
  }
  #advantage-wrapper .advantage-box .advantage-info .content .content-item p {
    line-height: 28px;
  }
  /* 关于我们-荣誉资质 */

  /* 下载中心模块 */
  #download-wrapper .download-list .download-item {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  /* 底部模块 */
  footer .pc-footer .footer-top {
    padding: 60px 0;
  }
  .container {
    padding: 0 60px;
  }
  /* 首页模块 */
  #home-wrapper .home-swiper .swiper-info h2 {
    font-size: 36px;
  }
  #home-wrapper .home-swiper .swiper-info p {
    font-size: 24px;
  }
  #home-wrapper .home-swiper .swiper-info .look-btn {
    font-size: 16px;
  }
  #home-wrapper .home-swiper .swiper-pagination {
    bottom: 30px;
    text-align: center;
  }
  #home-wrapper .home-swiper .swiper-pagination-bullet {
    font-size: 16px;
  }
  #home-wrapper .home-swiper .swiper-pagination-bullet-active::after {
    width: 20px;
  }
  #home-wrapper .product-wrapper,
  #home-wrapper .case-wrapper,
  #home-wrapper .news-wrapper {
    padding: 60px 0;
  }
  #home-wrapper .product-wrapper .tab-list {
    flex-wrap: nowrap;
    overflow: auto;
  }
  #home-wrapper .product-wrapper .tab-list .tab-item {
    margin-right: 60px;
  }
  #home-wrapper .product-wrapper .product-list .product-item {
    width: 48%;
    margin-bottom: 30px;
  }
  #home-wrapper .case-wrapper .case-list .case-item {
    width: 48%;
    margin-bottom: 30px;
  }
  #home-wrapper .solution-wrapper {
    padding-top: 60px;
  }
  /* 产品详情 */
  #product-detail .intro-wrapper .img-wrapper,
  #product-detail .intro-wrapper .intro-info {
    width: 100%;
  }
  #product-detail .intro-wrapper .img-wrapper {
    margin-top: 80px;
  }
  #home-wrapper .solution-wrapper .bottom-mes {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #home-wrapper .solution-wrapper .menu-list {
    display: flex;
    overflow: auto;
    align-items: center;
  }
  #home-wrapper .solution-wrapper .menu-list::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  #home-wrapper .solution-wrapper .menu-list .menu-item {
    margin-right: 30px;
    flex-shrink: 0;
  }
  #home-wrapper .solution-wrapper .bottom-mes .toggle-btn {
    padding: 30px 0;
    justify-content: center;
    width: 100%;
  }
  #home-wrapper .solution-wrapper .bottom-mes .menu-content {
    width: 100%;
    max-width: 100%;
    border-radius: 63px;
  }
  #product-detail .intro-wrapper2 .img-wrapper,
  #product-detail .intro-wrapper2 .intro-info {
    width: 100%;
  }
  #product-detail .intro-wrapper2 .img-wrapper {
    margin-bottom: 80px;
    padding-bottom: 100%;
  }
  #product-detail .intro-wrapper2 .intro-info .content-list {
    height: auto;
    padding-right: 0;
  }
  #product-detail .intro-wrapper2 .intro-info .content-list .adorn {
    display: none;
  }
  #product-detail .case-wrapper .case-list .case-item,
  #product-detail .case-wrapper .case-list i {
    width: 30%;
    margin-bottom: 20px;
  }
  #product-detail .function-wrapper .function-box .function-info,
  #product-detail .function-wrapper .function-box .img-wrapper {
    width: 100%;
  }
  #product-detail .function-wrapper .function-box .function-info {
    padding: 0;
    margin-bottom: 30px;
  }
  #solution-detail .scene-wrapper .scene-list .scene-item .num {
    font-size: 120px;
  }
  /* 解决方案模块 */
  #solution-detail .intro-wrapper,
  #solution-detail .industry-wrapper,
  #solution-detail .scene-wrapper {
    padding: 60px 0;
  }
  #solution-detail .core-wrapper .header {
    padding-top: 60px;
  }
  #solution-detail .industry-wrapper .industry-list,
  #solution-detail .industry-wrapper .adorn-img {
    display: none;
  }
  #solution-detail .industry-wrapper .industry-info {
    display: block;
  }
  #solution-detail .core-wrapper .header .tab-list {
    justify-content: space-between;
  }
  #solution-detail .core-wrapper .header .tab-list .tab-item {
    margin-right: 0;
    padding-bottom: 14px;
    font-size: 16px;
  }
  #solution-detail .core-wrapper .img-wrapper {
    padding: 60px 0;
  }
  /* 案例模块 */
  #case-wrapper .case-list {
    margin-bottom: 0;
  }
  #case-wrapper .case-list .case-item,
  #case-wrapper .case-list i {
    width: 48%;
    margin-bottom: 30px;
  }
  #case-detail .intro-wrapper {
    padding: 60px 0;
  }
  #case-detail .intro-wrapper .intro-info,
  #case-detail .intro-wrapper .intro-swiper {
    width: 100%;
  }
  #case-detail .intro-wrapper .intro-info {
    margin-top: 30px;
    padding: 0;
  }
  /* 关于我们-公司介绍 */
  #about-us .about-wrapper,
  #about-us .corporate-wrapper,
  #about-us .develop-wrapper {
    padding: 60px 0;
  }
  #about-us .about-wrapper .about-info {
    width: 100%;
  }
  #about-us .about-wrapper .img-wrapper {
    display: none;
  }
  #about-us .about-wrapper .advantage-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #about-us .develop-wrapper .intro-content .year {
    font-size: 260px;
  }
  /* 关于我们-联深优势 */
  #advantage-wrapper {
    padding: 60px 0;
  }
  #advantage-wrapper .advantage-box {
    background-image: url(../images/about-us/images/about-img2.png);
    padding: 30px;
  }
  #advantage-wrapper .advantage-box .img-wrapper,
  #advantage-wrapper .advantage-box .advantage-info {
    width: 100%;
  }
  #advantage-wrapper .advantage-box .img-wrapper {
    display: none;
  }
  #advantage-wrapper .advantage-box .advantage-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  /* 关于我们-荣誉资质 */
  #honor-wrapper {
    padding: 60px 0;
  }
  #honor-wrapper .honor-list .honor-item .img-wrapper img {
    width: 140px;
  }
  /* 关于我们-联系我们 */
  #contact-us {
    padding: 60px 0;
  }
  #contact-us .contact-wrapper {
    flex-direction: column-reverse;
  }
  #contact-us .contact-wrapper .form-box {
    margin-top: 30px;
    border-radius: 24px;
    padding: 60px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #contact-us .contact-wrapper .contact-box {
    width: 100%;
    padding: 60px;
  }
  .common-box {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .visible-sm {
    display: block !important;
  }
  .hidden-sm {
    display: none !important;
  }
  #home-wrapper .home-swiper .swiper-info .look-btn {
    margin-top: 30px;
  }
  #home-wrapper .home-swiper .swiper-pagination {
    bottom: 10px;
  }
  /* 首页模块 */
  #home-wrapper .header .title h2 {
    font-size: 24px;
  }
  #home-wrapper .header .title p {
    font-size: 16px;
  }
  #home-wrapper .header .more-info {
    font-size: 16px;
    width: unset;
    height: unset;
    border: 0;
  }
  #home-wrapper .product-wrapper .tab-list {
    margin-top: 30px;
    text-align: center;
  }
  #home-wrapper .product-wrapper .tab-list .tab-item {
    margin-right: 20px;
    font-size: 16px;
    padding-bottom: 10px;
  }
  #home-wrapper .product-wrapper .product-list .product-item h4 {
    font-size: 16px;
    margin: 10px 0;
  }
  #home-wrapper .product-wrapper .product-list .product-item p {
    font-size: 14px;
    line-height: 24px;
  }

  #home-wrapper .news-wrapper .news-box .news-info,
  #home-wrapper .news-wrapper .news-box .news-img {
    width: 100%;
  }
  #home-wrapper .solution-wrapper .bottom-mes .menu-content {
    height: auto;
  }
  #home-wrapper .news-wrapper .news-box .news-info {
    margin-top: 30px;
  }
  #home-wrapper .news-wrapper .news-box .news-info h4,
  #home-wrapper .news-wrapper .news-list .news-item h4 {
    font-size: 20px;
  }
  #home-wrapper .news-wrapper .news-box .news-info .time-info {
    font-size: 16px;
  }
  #home-wrapper .news-wrapper .news-box .news-info p,
  #home-wrapper .news-wrapper .news-list .news-item p {
    font-size: 14px;
    line-height: 24px;
  }
  #home-wrapper .news-wrapper .news-box .news-info .more-info {
    font-size: 16px;
  }

  #home-wrapper .news-wrapper .news-list .news-item {
    width: 48%;
    margin-bottom: 30px;
  }
  #home-wrapper .news-wrapper .news-list .news-item .more-info {
    margin-top: 30px;
  }
  #home-wrapper .decoration-wrapper {
    padding: 30px 0;
  }
  /* 导航栏模块 */
  .nav-wrapper .nav-list {
    width: 100%;
    overflow: auto;
  }
  .nav-wrapper .breadcrumb {
    font-size: 14px;
  }
  .nav-wrapper .breadcrumb .arrow-icon {
    margin: 0 6px;
  }
  .nav-wrapper .nav-list .nav-item {
    font-size: 14px;
    height: 60px;
    line-height: 60px;
    margin-right: 30px;
  }
  .nav-wrapper .nav-list .nav-item:hover::after,
  .nav-wrapper .nav-list .nav-item.active::after {
    width: 0;
  }
  .sidebar {
    display: none;
  }
  .top-banner .banner-info {
    height: 300px;
  }
  .top-banner .banner-info h2 {
    font-size: 30px;
  }
  .top-banner .banner-info p {
    font-size: 16px;
    line-height: 28px;
  }
  /* 分页模块 */
  .pagination-wrapper {
    padding-bottom: 60px;
  }
  .pagination-wrapper .page-list li {
    margin-left: 10px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  /* 产品模块 */
  #product-wrapper {
    padding: 30px 0;
  }
  #product-wrapper .pro-list .pro-item {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
  #product-wrapper .pro-list .pro-item .name {
    font-size: 20px;
  }
  #product-wrapper .pro-list .pro-item p {
    line-height: 24px;
    margin: 12px 0;
  }
  #product-wrapper .pro-list .pro-item .look-btn {
    font-size: 16px;
    height: 44px;
  }
  /* 产品详情 */
  #product-detail .intro-wrapper .intro-info p,
  #product-detail .function-wrapper .function-box .function-info p,
  #product-detail .cost-wrapper p {
    font-size: 16px;
    line-height: 30px;
  }
  #product-detail .case-wrapper .case-list .case-item,
  #product-detail .case-wrapper .case-list i {
    width: 48%;
  }
  /* 解决方案 */
  #solution-wrapper {
    padding: 30px 0;
  }
  #solution-wrapper .solution-list .solution-item {
    margin-bottom: 30px;
    padding: 30px;
  }
  #solution-wrapper .solution-list .solution-item .solution-info,
  #solution-wrapper .solution-list .solution-item .img-wrapper {
    width: 100%;
  }
  #solution-wrapper .solution-list .solution-item .img-wrapper {
    margin-top: 30px;
  }
  #solution-wrapper .solution-list .solution-item .solution-info h3 {
    font-size: 24px;
  }
  #solution-wrapper .solution-list .solution-item .solution-info p {
    line-height: 30px;
    margin: 20px 0;
  }
  #solution-wrapper .solution-list .solution-item .solution-info button {
    font-size: 16px;
    width: 198px;
    height: 44px;
  }
  #solution-detail .intro-wrapper,
  #solution-detail .industry-wrapper,
  #solution-detail .scene-wrapper {
    padding: 30px 0;
  }
  #solution-detail .core-wrapper .header {
    padding-top: 30px;
  }
  #solution-detail .intro-wrapper .intro-info h3,
  #solution-detail .industry-wrapper h2,
  #solution-detail .core-wrapper .header h2,
  #solution-detail .scene-wrapper h2 {
    font-size: 24px;
  }
  #solution-detail .intro-wrapper .intro-info p,
  #solution-detail .scene-wrapper .scene-list .scene-item p {
    font-size: 14px;
    line-height: 24px;
  }
  #solution-detail .scene-wrapper .scene-list .scene-item {
    width: 100%;
    margin-bottom: 20px;
  }
  #solution-detail .scene-wrapper .scene-box {
    margin-top: 30px;
  }
  #solution-detail .scene-wrapper .scene-box .img-wrapper {
    width: 100%;
  }
  #solution-detail .scene-wrapper .scene-box .scene-info {
    margin-top: 30px;
    width: 100%;
  }
  #solution-detail .scene-wrapper .scene-box .scene-info h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #solution-detail .scene-wrapper .scene-box .scene-info p {
    font-size: 16px;
    line-height: 24px;
  }
  #solution-detail .core-wrapper .header .tab-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
  }
  #solution-detail .core-wrapper .header .tab-list .tab-item {
    margin-right: 30px;
  }
  /* 案例模块 */
  #case-wrapper {
    padding: 30px 0;
  }
  #case-wrapper .case-list .case-item .case-info {
    padding: 20px;
  }
  #case-wrapper .case-list .case-item .case-info p {
    line-height: 24px;
  }
  /* 案例详情 */
  #news-detail {
    padding: 60px 0;
  }
  #case-detail .intro-wrapper {
    padding: 60px 0;
  }
  #case-detail h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #case-detail .detail-wrapper,
  #news-detail .detail-wrapper {
    background-color: transparent;
    padding: 0;
  }
  /* 新闻模块 */
  #news-wrapper {
    padding-top: 60px;
  }
  #news-wrapper .news-box {
    margin-top: 0;
  }
  #news-wrapper .news-box .news-info,
  #news-wrapper .news-box .news-img {
    width: 100%;
  }
  #news-wrapper .news-box .news-info {
    margin-top: 30px;
  }
  #news-wrapper .news-box .news-info h4 {
    font-size: 24px;
  }
  #news-wrapper .news-list .news-item {
    width: 48%;
    margin-bottom: 30px;
  }
  #news-wrapper .news-list .news-item .more-info {
    margin-top: 30px;
  }
  /* 关于我们-公司简介 */
  #about-us .about-wrapper .about-info h2 {
    font-size: 24px;
  }
  #about-us .about-wrapper .about-info .content {
    margin: 30px 0;
  }
  #about-us .about-wrapper .about-info .content p,
  #about-us .about-wrapper .about-info .txt-list .txt-item p,
  #about-us .corporate-wrapper .intro-info p {
    line-height: 24px;
  }
  #about-us .about-wrapper .about-info .txt-list .txt-item {
    width: 48%;
    margin-bottom: 30px;
  }
  #about-us .corporate-wrapper h2,
  #about-us .develop-wrapper h2 {
    font-size: 30px;
  }
  #about-us .corporate-wrapper .intro-info h4 {
    font-size: 24px;
  }
  #about-us .develop-wrapper .intro-content .year {
    font-size: 120px;
  }
  #about-us .develop-wrapper .intro-content {
    margin: 30px 0;
  }
  #about-us .develop-wrapper .intro-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
  /* 关于我们-联深优势 */
  #advantage-wrapper .advantage-box .advantage-info h2 {
    font-size: 30px;
    text-align: center;
  }
  #advantage-wrapper .advantage-box {
    padding: 0;
    background-image: none;
  }
  #advantage-wrapper .advantage-box .advantage-info {
    padding: 0;
    box-shadow: none;
  }
  /* 关于我们-荣誉资质 */
  #honor-wrapper h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  #honor-wrapper .honor-list .honor-item .img-wrapper img {
    width: 100px;
  }
  #honor-wrapper .honor-list .honor-item .text {
    font-size: 16px;
  }
  #contact-us {
    padding: 30px 0;
  }
  #contact-us h2 {
    margin-bottom: 30px;
  }
  #contact-us .contact-wrapper .form-box p {
    line-height: 24px;
    font-size: 14px;
  }
  #contact-us .contact-wrapper .form-box .form-wrapper .form-item {
    font-size: 14px;
    padding-bottom: 14px;
  }
  .page-section {
    padding: 30px 0;
  }
  .page-section .next-page,
  .page-section .prev-page {
    width: 100%;
    flex: none;
  }
  .page-section .back {
    margin: 20px 0;
  }
  .common-box {
    padding: 30px 0;
  }
  .container {
    padding: 0 30px;
  }

  /* 下载中心模块 */
  #download-wrapper .download-list .download-item {
    width: 100%;
  }

  /* 服务模块 */
  #service-wrapper .case-wrapper .case-list .case-item,
  #service-wrapper .case-wrapper .case-list i {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 540px) {
  /* 首页模块 */
  #home-wrapper .home-swiper img {
    min-height: unset;
  }
  #home-wrapper .case-wrapper .case-list .case-item {
    width: 100%;
  }
  #home-wrapper .news-wrapper .news-list .news-item {
    width: 100%;
  }
  #home-wrapper .news-wrapper .news-list .news-item .more-info {
    margin-top: 30px;
  }
  #home-wrapper .solution-wrapper .menu-list .menu-item {
    font-size: 14px;
  }
  #home-wrapper .solution-wrapper .bottom-mes .menu-content p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 26px;
  }
  /* 产品详情 */
  #product-detail .case-wrapper .case-list .case-item {
    width: 100%;
  }
  #product-detail .function-wrapper .tab-list .tab-item {
    font-size: 16px;
    margin-right: 10px;
    padding-bottom: 20px;
    margin-right: 20px;
  }
  /* 案例模块 */
  #case-wrapper .case-list .case-item {
    width: 100%;
  }
  #case-wrapper .case-list .case-item:last-of-type {
    margin-bottom: 0;
  }
  /* 案例详情 */
  #news-detail {
    padding: 30px 0;
  }
  #case-detail .intro-wrapper {
    padding: 30px 0;
  }
  #case-detail .detail-wrapper .time-info,
  #news-detail .detail-wrapper .time-info {
    margin: 20px 0;
  }
  #case-detail .detail-wrapper .intro,
  #news-detail .detail-wrapper .intro {
    font-size: 14px;
    line-height: 24px;
  }
  #case-detail .detail-wrapper .content p,
  #news-detail .detail-wrapper .content p {
    line-height: 24px;
    margin-bottom: 20px;
  }
  /* 新闻模块 */
  #news-wrapper .news-list .news-item {
    width: 100%;
  }
  #news-wrapper .news-list .news-item .more-info {
    margin-top: 30px;
  }
  /* 关于我们-荣誉资质 */
  #honor-wrapper .honor-list .honor-item {
    width: 100%;
  }
  /* 关于我们-联系我们 */
  #contact-us .contact-wrapper .contact-box,
  #contact-us .contact-wrapper .form-box {
    padding: 30px;
  }
  #contact-us .contact-wrapper .contact-box h3 {
    font-size: 24px;
    text-align: center;
  }
  #contact-us .contact-wrapper .contact-box > p {
    margin: 20px 0;
  }
  #contact-us .contact-wrapper .form-box {
    text-align: center;
  }
  #contact-us .contact-wrapper .form-box h3 {
    font-size: 24px;
  }
  #contact-us .contact-wrapper .form-box .form-wrapper button {
    width: 100%;
    height: 44px;
    font-size: 16px;
  }
  #contact-us .contact-wrapper .form-box .form-wrapper .form-item {
    margin-bottom: 20px;
  }
  #contact-us .contact-wrapper .contact-box .contact-list .contact-item .icon-wrap {
    min-width: 30px;
  }
  #contact-us .contact-wrapper .contact-box .contact-list .contact-item img {
    width: 30px !important;
  }
  #contact-us .contact-wrapper .contact-box .contact-list .contact-item {
    align-items: stretch;
  }
  #contact-us .contact-wrapper .contact-box .contact-list .contact-item .contact-info p {
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 20px;
  }
  #home-wrapper .home-swiper .swiper-button-prev {
    left: 5px;
  }
  #home-wrapper .home-swiper .swiper-button-next {
    right: 5px;
  }

  /* 服务模块 */
  #service-wrapper .case-wrapper .case-list .case-item,
  #service-wrapper .case-wrapper .case-list i {
    width: 100%;
  }
}
