@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;
}

::-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: #028bff;
}

body {
  min-width: 320px;
  font-family: "PingFang SC";
  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;
}

.swiper-pagination-bullet:only-child {
  display: block !important;
}

/* 头部区域 */
header .pc-header .top-mes {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header .pc-header .top-mes .logo {
  height: 100px;
  flex-shrink: 0;
}
header .pc-header .top-mes .logo img {
  width: 340px;
}
header .pc-header .top-mes .right-nav .nav-list {
  width: 800px;
}
header .pc-header .top-mes .right-nav .nav-list .nav-item {
  cursor: pointer;
  position: relative;
  height: 100px;
  font-size: 16px;
  color: #232323;
  font-weight: 700;
}
header .pc-header .top-mes .right-nav .nav-list .nav-item::after {
  position: absolute;
  opacity: 0;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
}
header .pc-header .top-mes .right-nav .nav-list .nav-item:hover {
  color: #028bff;
  overflow: visible;
}
header .pc-header .top-mes .right-nav .nav-list .nav-item:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}
header .pc-header .top-mes .right-nav .nav-list .nav-item .sub-nav {
  border-radius: 10px;
  transition: all 0.36s;
  position: absolute;
  top: calc(100% + 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  min-width: 180px;
  width: auto;
  height: auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
}
header .pc-header .top-mes .right-nav .nav-list .nav-item .sub-nav > a {
  font-size: 16px;
  color: #262626;
  font-weight: 400;
  transition: all 0.3s;
  display: block;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
}
header .pc-header .top-mes .right-nav .nav-list .nav-item .sub-nav > a:hover {
  color: #fff;
  background-color: #028bff;
}
header .pc-header .top-mes .right-nav .tool-list {
  margin-left: 30px;
  color: #232323;
  cursor: pointer;
}
header .pc-header .top-mes .right-nav .tool-list i {
  font-size: 20px;
}
header .pc-header .top-mes .right-nav .tool-list .search-box {
  padding: 4px 10px;
  border-radius: 100px;
}
header .pc-header .top-mes .right-nav .tool-list .search-box:hover,
header .pc-header .top-mes .right-nav .tool-list .search-box.active {
  background-color: #0087ff;
}
header .pc-header .top-mes .right-nav .tool-list .search-box:hover i,
header .pc-header .top-mes .right-nav .tool-list .search-box.active i {
  color: #fff;
}
header .pc-header .top-mes .right-nav .tool-list .divider {
  margin: 0 10px;
  width: 1px;
  height: 16px;
  background-color: #ccc;
}
header .pc-header .top-mes .right-nav .tool-list .lang-box {
  font-size: 16px;
  color: #232323;
  font-weight: 700;
}
header .pc-header .top-mes .right-nav .tool-list .lang-box:hover {
  color: #028bff;
}
header .pc-header .top-mes .right-nav .tool-list .lang-box .lang-text {
  margin-left: 5px;
}
header .pc-header::after {
  content: "";
  display: block;
  height: 100px;
}
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: #028bff;
}
header .mask-layer {
  display: none;
  width: 100vw;
  background: #f7f7f7;
  position: fixed;
  z-index: 9999;
}
header .mask-layer .icon-wrap:hover {
  cursor: pointer;
  color: #028bff;
}
header .mask-layer .mask {
  position: fixed;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
header .mask-layer .search-wrapper {
  position: relative;
  z-index: 2;
  padding: 40px 100px;
}
header .mask-layer .search-wrapper h3 {
  font-size: 24px;
  color: #232323;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
header .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;
}
header .mask-layer .search-wrapper button {
  width: calc(10% - 20px);
  margin-left: 20px;
  align-self: stretch;
  border: none;
  background-color: #0087ff;
  color: white;
}

/* 底部 */
footer .pc-footer {
  background-color: #f3f8ff;
}
footer .pc-footer .footer-top {
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}
footer .pc-footer .footer-top .friend-link {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
footer .pc-footer .footer-top .friend-link .tit {
  flex-shrink: 0;
}
footer .pc-footer .footer-top .friend-link .link-box {
  overflow-x: auto;
}
footer .pc-footer .footer-top .friend-link .link-box::-webkit-scrollbar {
  width: 0;
  /*滚动条宽度*/
  height: 0;
  /*滚动条高度*/
}
footer .pc-footer .footer-top .friend-link .link-box a {
  flex-shrink: 0;
}
footer .pc-footer .footer-top .friend-link .link-box .divider {
  height: 12px;
  margin: 0 14px;
  width: 1px;
  background-color: #999;
}
footer .pc-footer .footer-top .icon-list .icon-item {
  margin-left: 20px;
  cursor: pointer;
}
footer .pc-footer .footer-top .icon-list .icon-item img {
  width: 42px;
  height: 42px;
}
footer .pc-footer .footer-center {
  padding: 50px 0 137px;
}
footer .pc-footer .footer-center .link-list dl {
  margin-right: 90px;
}
footer .pc-footer .footer-center .link-list dl:last-child {
  margin-right: 0;
}
footer .pc-footer .footer-center .link-list dl dt {
  font-size: 24px;
  color: #232323;
  font-weight: 700;
  margin-bottom: 35px;
}
footer .pc-footer .footer-center .link-list dl dd {
  margin-bottom: 20px;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
footer .pc-footer .footer-center .link-list dl dd:last-child {
  margin-bottom: 0;
}
footer .pc-footer .footer-center .contact-box {
  text-align: center;
  margin-left: 30px;
  font-size: 16px;
  color: #023232;
  font-weight: 400;
}
footer .pc-footer .footer-center .contact-box img {
  width: 200px;
  /* height: 112px;
  margin-bottom: 20px; */
}
footer .pc-footer .footer-bottom {
  border-top: 1px solid rgba(122, 139, 166, 0.2);
  padding-top: 20px;
}
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: #999;
}
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;
}

/* banner */
.top-banner .breadcrumb-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  /* color: #fff; */
  font-weight: 400;
}
.top-banner .breadcrumb-box .breadcrumb {
  height: 60px;
}
.top-banner .breadcrumb-box .breadcrumb a:hover {
  color: #000;
}
.top-banner .breadcrumb-box .home-icon {
  margin-right: 6px;
  filter: invert(1);
}
.top-banner .breadcrumb-box .arrow-icon {
  margin: 0 20px;
  filter: invert(1);
}
.top-banner .banner-info {
  max-width: 800px;
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.top-banner .banner-info button {
  width: 136px;
  height: 48px;
  border-radius: 24px;
  border-radius: 24px;
  border: 1px solid #000;
  font-size: 20px;
  color: #000;
  font-weight: 400;
}
.top-banner .banner-info p {
  margin-top: 10px;
  line-height: 60px;
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}

/* 导航模块 */
.nav-wrapper {
  background-color: #f3f3f3;
}
.nav-wrapper .tab-list {
  position: relative;
  flex-wrap: wrap;
}
.nav-wrapper .tab-list .tab-item {
  position: relative;
  margin-right: 50px;
  line-height: 80px;
  font-size: 18px;
  color: #232323;
  font-weight: 700;
}
.nav-wrapper .tab-list .tab-item:hover,
.nav-wrapper .tab-list .tab-item.active {
  color: #028bff;
}
.nav-wrapper .tab-list .tab-item:hover::after,
.nav-wrapper .tab-list .tab-item.active::after {
  width: 100%;
}
.nav-wrapper .tab-list .tab-item::after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  width: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
  background-color: #028bff;
}
.nav-wrapper .tab-list .tab-item:last-child {
  margin-right: 0;
}

.pagination-wrapper {
  padding-bottom: 130px;
}
.pagination-wrapper .page-list .prev-btn {
  margin-left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: #eeefef;
  color: #777;
  font-weight: 700;
}
.pagination-wrapper .page-list .prev-btn:hover {
  background-color: #028bff;
  color: #fff;
}
.pagination-wrapper .page-list li {
  margin-left: 20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  font-size: 20px;
  color: #023232;
  font-weight: 400;
  border-radius: 4px;
  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: #0087ff;
  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: #028bff;
}
.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 .icon-item {
  background-color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 29px;
  box-shadow: -3px 0 10px 0 rgba(4, 4, 4, 0.1294117647);
  margin-bottom: 8px;
  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;
}

/* 通用顶部区域 */
.common-wrapper {
  padding: 100px 0 130px;
}
.common-wrapper .header {
  position: relative;
}
.common-wrapper .header .title h3 {
  font-size: 46px;
  color: #232323;
  font-weight: 700;
}
.common-wrapper .header .title p {
  margin-top: 30px;
  font-size: 20px;
  color: #0f83f3;
  font-weight: 400;
}
.common-wrapper .header .more-info {
  border-radius: 100px;
  padding: 14px 40px;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  background-color: #028bff;
  transition: all 0.3s;
}
.common-wrapper .header .more-info:hover {
  opacity: 0.8;
}
.common-wrapper .header .more-info img {
  margin-left: 15px;
  width: 24px;
  height: 24px;
}
.common-wrapper .header .tab-list {
  position: relative;
  width: 800px;
}
.common-wrapper .header .tab-list .tab-item {
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  color: #232323;
  font-weight: 400;
  padding-bottom: 14px;
}
.common-wrapper .header .tab-list .tab-item:hover,
.common-wrapper .header .tab-list .tab-item.active {
  color: #028bff;
}
.common-wrapper .header .tab-list .tab-line {
  position: absolute;
  transition: width 0.3s;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: #028bff;
}

/* 首页 */
#home-wrapper .home-swiper {
  position: relative;
}
#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: 70px;
  color: #000;
  font-weight: 700;
  letter-spacing: 9px;
}
#home-wrapper .home-swiper .swiper-info p {
  max-width: 640px;
  margin: 30px 0 60px;
  font-size: 24px;
  color: #000;
  font-weight: 400;
  line-height: 40px;
}
#home-wrapper .home-swiper .swiper-info .more-info {
  background-color: #000;
  width: 160px;
  height: 50px;
  border-radius: 25px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .home-swiper .swiper-info .more-info:hover {
  opacity: 0.8;
}
#home-wrapper .home-swiper .swiper-info .more-info .circle {
  margin-left: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
}
#home-wrapper .home-swiper .swiper-info .more-info .circle img {
  width: 15px;
  height: 5px;
}
#home-wrapper .home-swiper .swiper-pagination {
  bottom: 40px;
}
#home-wrapper .home-swiper .swiper-pagination-bullet {
  opacity: 1;
  transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 20px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
}
#home-wrapper .home-swiper .swiper-pagination-bullet-active {
  width: 50px;
}
#home-wrapper .product-wrapper {
  background-color: #fff;
}
#home-wrapper .product-wrapper .product-box {
  margin-top: 60px;
}
#home-wrapper .product-wrapper .product-box .product-list .product-item {
  min-height: 340px;
  width: calc((100% - 50px) / 2);
  padding: 48px 40px;
  font-size: 24px;
  color: #232323;
  font-weight: 700;
  margin-bottom: 45px;
  transition: all 0.3s;
  background-color: #f8f8f8;
}
#home-wrapper .product-wrapper .product-box .product-list .product-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item:hover
  .left-mes
  .more-info {
  background-color: #0087ff;
  color: #fff;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item:hover
  .left-mes
  .more-info
  img:nth-of-type(1) {
  display: none;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item:hover
  .left-mes
  .more-info
  img:nth-of-type(2) {
  display: block;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item:hover
  .left-mes
  p {
  color: #028bff;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item:nth-child(2),
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item:nth-child(3) {
  background-color: #eef1f9;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .left-mes {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .left-mes
  h3 {
  width: 100%;
  font-size: 24px;
  color: #232323;
  font-weight: 700;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .left-mes
  p {
  margin: 10px 0;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 28px;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .left-mes
  .more-info {
  border-radius: 100px;
  padding: 14px;
  padding-left: 36px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  background-color: #fff;
  transition: all 0.3s;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .left-mes
  .more-info
  img {
  margin-left: 22px;
  width: 24px;
  height: 24px;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .left-mes
  .more-info
  img:nth-of-type(2) {
  display: none;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .right-img {
  align-self: center;
  margin-left: 30px;
  width: 40%;
}
#home-wrapper
  .product-wrapper
  .product-box
  .product-list
  .product-item
  .right-img
  img {
  width: 100%;
}
#home-wrapper .about-wrapper {
  padding: 66px 0 76px;
}
#home-wrapper .about-wrapper .about-info {
  width: 45.4%;
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#home-wrapper .about-wrapper .about-info .en-text {
  font-size: 24px;
  color: #0f83f3;
  font-weight: 400;
}
#home-wrapper .about-wrapper .about-info h3 {
  margin: 30px 0;
  font-size: 48px;
  color: #232323;
  font-weight: 700;
}
#home-wrapper .about-wrapper .about-info .content {
  margin-top: 40px;
}
#home-wrapper .about-wrapper .about-info .content p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 30px;
}
#home-wrapper .about-wrapper .about-info .intro-list {
  width: 80%;
  margin: 30px 0 80px;
}
#home-wrapper .about-wrapper .about-info .intro-list .intro-item {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
#home-wrapper .about-wrapper .about-info .intro-list .intro-item .desc-info {
  margin-bottom: 4px;
  font-size: 16px;
  color: #232323;
  font-weight: 700;
}
#home-wrapper
  .about-wrapper
  .about-info
  .intro-list
  .intro-item
  .desc-info
  .count {
  font-size: 36px;
}
#home-wrapper .about-wrapper .about-info .more-info {
  border-radius: 100px;
  padding: 14px 40px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  background-color: #028bff;
  transition: all 0.3s;
}
#home-wrapper .about-wrapper .about-info .more-info img {
  margin-left: 20px;
  width: 24px;
  height: 24px;
}
#home-wrapper .about-wrapper .about-info .more-info img:nth-of-type(2) {
  display: none;
}
#home-wrapper .about-wrapper .about-info .more-info:hover {
  background-color: #fff;
  color: #232323;
}
#home-wrapper .about-wrapper .about-info .more-info:hover img:nth-of-type(1) {
  display: none;
}
#home-wrapper .about-wrapper .about-info .more-info:hover img:nth-of-type(2) {
  display: block;
}
#home-wrapper .about-wrapper .img-wrapper {
  width: 48%;
}
#home-wrapper .about-wrapper .img-wrapper .img-item {
  position: relative;
  margin-bottom: 35px;
}
#home-wrapper .about-wrapper .img-wrapper .img-item:last-child {
  margin-bottom: 0;
}
#home-wrapper .about-wrapper .img-wrapper .img-item .img-info {
  position: absolute;
  top: 40px;
  left: 20px;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
#home-wrapper .about-wrapper .img-wrapper .img-item .img-info .line {
  margin-top: 14px;
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
}
#home-wrapper .intro-wrapper {
  padding: 100px 0 50px;
  background-color: #fff;
  text-align: center;
}
#home-wrapper .intro-wrapper .en-text {
  font-size: 20px;
  color: #028bff;
  font-weight: 400;
}
#home-wrapper .intro-wrapper h3 {
  margin: 30px 0 80px;
  font-size: 48px;
  color: #232323;
  font-weight: 700;
}
#home-wrapper .intro-wrapper .intro-list .intro-item {
  padding: 50px 66px;
  width: 29%;
  box-shadow: 0 4px 13px 0 rgba(2, 139, 255, 0.15);
}
#home-wrapper .intro-wrapper .intro-list .intro-item img {
  width: 70px;
  height: 70px;
}
#home-wrapper .intro-wrapper .intro-list .intro-item h4 {
  margin: 12px 0 26px;
  font-size: 30px;
  color: #028bff;
  font-weight: 700;
}
#home-wrapper .intro-wrapper .intro-list .intro-item p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#home-wrapper .intro-wrapper .intro-list i {
  width: 29%;
}
#home-wrapper .video-wrapper {
  position: relative;
}
#home-wrapper .video-wrapper video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#home-wrapper .video-wrapper .video-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#home-wrapper .video-wrapper .video-info .play-icon {
  cursor: pointer;
  font-size: 80px;
  color: #fff;
}
#home-wrapper .video-wrapper .video-info img {
  width: 80px;
  height: 80px;
}
#home-wrapper .company-wrapper .company-list {
  margin-top: 80px;
}
#home-wrapper .company-wrapper .company-list .company-item {
  width: 30%;
  position: relative;
  padding-bottom: calc((100% - 72px) / 3 * 0.69);
}
#home-wrapper .company-wrapper .company-list i {
  width: 30%;
}
#home-wrapper .patent-wrapper {
  background-color: rgb(243, 249, 255);
  background-position: left bottom;
}
#home-wrapper .patent-wrapper .patent-swiper {
  margin-top: 60px;
  padding-bottom: 60px;
}
#home-wrapper .patent-wrapper .patent-swiper .swiper-pagination {
  bottom: 0;
}
#home-wrapper .patent-wrapper .patent-swiper .swiper-pagination-bullet {
  opacity: 1;
  transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 20px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
}
#home-wrapper .patent-wrapper .patent-swiper .swiper-pagination-bullet-active {
  width: 50px;
}
#home-wrapper .patent-wrapper .patent-swiper .img-wrapper {
  position: relative;
  padding-bottom: 133%;
}
#home-wrapper .patent-wrapper .patent-swiper p {
  padding: 0 30px;
  text-align: center;
  margin-top: 10px;
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .news-wrapper .news-list {
  margin-top: 80px;
}
#home-wrapper .news-wrapper .news-list .news-item {
  width: 32%;
  box-shadow: 0 7px 21px 3px rgba(14, 128, 246, 0.07);
}
#home-wrapper .news-wrapper .news-list .news-item:hover .img-wrapper img {
  transform: scale(1.1);
}
#home-wrapper .news-wrapper .news-list .news-item .img-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 62.7811860941%;
}
#home-wrapper .news-wrapper .news-list .news-item .news-info {
  padding: 22px 28px 48px;
}
#home-wrapper .news-wrapper .news-list .news-item .news-info h2 {
  font-size: 26px;
  color: #232323;
  font-weight: 700;
}
#home-wrapper .news-wrapper .news-list .news-item .news-info .time-info {
  margin: 24px 0;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
#home-wrapper .news-wrapper .news-list .news-item .news-info .time-info img {
  width: 21px;
  height: 21px;
  margin-right: 10px;
}
#home-wrapper .news-wrapper .news-list .news-item .news-info p {
  font-size: 16px;
  color: #717171;
  font-weight: 400;
  line-height: 30px;
}
#home-wrapper .news-wrapper .news-list .news-item .news-info .detail {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #efefef;
}
#home-wrapper .news-wrapper .news-list i {
  width: 32%;
}

/* 企业简介 */
#about-us .header .title h3 {
  font-size: 36px;
}
#about-us .header .title p {
  color: #028bff;
  font-weight: 700;
}
#about-us .about-wrapper {
  padding: 66px 0 76px;
}
#about-us .about-wrapper .about-info {
  width: 46%;
  padding: 60px 0;
}
#about-us .about-wrapper .about-info h3 {
  font-size: 36px;
  color: #232323;
  font-weight: 700;
}
#about-us .about-wrapper .about-info .en-text {
  margin-top: 15px;
  font-size: 18px;
  color: #0f83f3;
  font-weight: 400;
}
#about-us .about-wrapper .about-info .content {
  margin-top: 40px;
}
#about-us .about-wrapper .about-info .content p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 30px;
}
#about-us .about-wrapper .about-info .intro-list {
  width: 80%;
  margin: 30px 0 80px;
}
#about-us .about-wrapper .about-info .intro-list .intro-item {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
#about-us .about-wrapper .about-info .intro-list .intro-item .desc-info {
  margin-bottom: 4px;
  font-size: 16px;
  color: #232323;
  font-weight: 700;
}
#about-us .about-wrapper .about-info .intro-list .intro-item .desc-info .count {
  font-size: 36px;
}
#about-us .about-wrapper .img-wrapper {
  position: relative;
  width: 51%;
  padding-bottom: 51%;
}
#about-us .swiper-pagination {
  bottom: 0;
}
#about-us .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(2, 139, 255, 0.3);
}
#about-us .swiper-pagination-bullet-active {
  background-color: #028bff;
}
#about-us .honor-wrapper {
  background-color: #f8fcff;
}
#about-us .honor-wrapper .sub-title {
  margin: 40px 0 26px;
  font-size: 18px;
  color: #666;
  font-weight: 400;
}
#about-us .honor-wrapper .sub-title .line {
  margin-left: 10px;
  flex: 1;
  height: 1px;
  background-color: #ececec;
}
#about-us .honor-wrapper .honor-swiper {
  padding-bottom: 52px;
}
#about-us .honor-wrapper .honor-swiper .honor-info .img-wrapper {
  position: relative;
  padding-bottom: 141%;
}
#about-us .honor-wrapper .develop-wrapper {
  margin-top: 58px;
}
#about-us .honor-wrapper .develop-wrapper .prev-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}
#about-us .honor-wrapper .develop-wrapper .prev-btn:hover,
#about-us .honor-wrapper .develop-wrapper .prev-btn.active {
  background-color: #0087ff;
  color: #fff;
}
#about-us .honor-wrapper .develop-wrapper .year-wrapper {
  margin: 40px 0 50px;
}
#about-us .honor-wrapper .develop-wrapper .year-wrapper .year-list {
  flex: 1;
  margin: 0 30px;
}
#about-us .honor-wrapper .develop-wrapper .year-wrapper .year-list .year-item {
  width: 16.6666666667%;
  text-align: center;
  font-size: 20px;
  color: #666;
  font-weight: 400;
  cursor: pointer;
}
#about-us
  .honor-wrapper
  .develop-wrapper
  .year-wrapper
  .year-list
  .year-item:hover,
#about-us
  .honor-wrapper
  .develop-wrapper
  .year-wrapper
  .year-list
  .year-item.active {
  color: #028bff;
}
#about-us .honor-wrapper .develop-wrapper .tab-wrapper .tab-list {
  padding: 10px 0;
  border-right: 1px solid #ecefef;
  width: 170px;
}
#about-us .honor-wrapper .develop-wrapper .tab-wrapper .tab-list .tab-item {
  cursor: pointer;
  font-size: 24px;
  color: #666;
  font-weight: 700;
  padding-bottom: 35px;
}
#about-us
  .honor-wrapper
  .develop-wrapper
  .tab-wrapper
  .tab-list
  .tab-item:last-child {
  padding-bottom: 0;
}
#about-us
  .honor-wrapper
  .develop-wrapper
  .tab-wrapper
  .tab-list
  .tab-item.active,
#about-us
  .honor-wrapper
  .develop-wrapper
  .tab-wrapper
  .tab-list
  .tab-item:hover {
  color: #028bff;
}
#about-us .honor-wrapper .develop-wrapper .tab-wrapper .tab-section {
  flex: 1;
  min-width: 0;
}
#about-us
  .honor-wrapper
  .develop-wrapper
  .tab-wrapper
  .tab-section
  .content-item {
  display: none;
  padding-left: 28px;
  max-height: 500px;
  overflow: auto;
}
#about-us
  .honor-wrapper
  .develop-wrapper
  .tab-wrapper
  .tab-section
  .content-item::-webkit-scrollbar {
  width: 0;
  height: 0;
}
#about-us
  .honor-wrapper
  .develop-wrapper
  .tab-wrapper
  .tab-section
  .content-item
  .tab-box
  p {
  font-size: 18px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#about-us .company-wrapper {
  background-color: #fff;
}
#about-us .company-wrapper .company-swiper {
  padding: 50px 0;
}
#about-us .company-wrapper .company-swiper .img-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 68.9655172414%;
}
#about-us .company-wrapper .sub-title {
  margin-top: 45px;
  font-size: 24px;
  color: #028bff;
  font-weight: 700;
}
#about-us .company-wrapper .sub-title > span:nth-child(2) {
  font-size: 16px;
}
#about-us .company-wrapper .sub-title .line {
  align-self: center;
  margin-left: 10px;
  flex: 1;
  height: 1px;
  background-color: #ececec;
}
#about-us .company-wrapper .team-swiper {
  padding: 34px 0 55px;
}
#about-us .company-wrapper .team-swiper .img-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 68.9655172414%;
}

/* 专利认证 */
#patent-wrapper {
  padding: 90px 0;
}
#patent-wrapper .patent-list .patent-item {
  width: 24.1%;
  margin-bottom: 38px;
}
#patent-wrapper .patent-list .patent-item .img-wrapper {
  position: relative;
  padding-bottom: 146.9333333333%;
}
#patent-wrapper .patent-list .patent-item p {
  margin-top: 10px;
  padding: 0 20px;
  font-size: 24px;
  color: #232323;
  font-weight: 700;
}
#patent-wrapper .patent-list i {
  width: 24.1%;
}

/* 产品中心 */
#product-wrapper .product-list .product-item {
  width: 31.4%;
  margin-bottom: 50px;
  text-align: center;
}
#product-wrapper .product-list .product-item .img-wrapper {
  background: linear-gradient(-90deg, #b7e0fc, #e7f7fe);
  padding-bottom: 66.5%;
  position: relative;
  margin-bottom: 90px;
}
#product-wrapper .product-list .product-item .img-wrapper img {
  position: absolute;
  top: 74px;
  transform: translate(-50%);
  width: calc(100% - 120px);
  text-align: center;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  left: 50%;
}
#product-wrapper .product-list .product-item p {
  padding: 0 20px;
  font-size: 22px;
  color: #232323;
  font-weight: 700;
}
#product-wrapper .product-list i {
  width: 31.4%;
}

/* 产品详情 */
#product-detail .product-content .product-img {
  width: 45.1%;
  padding: 60px;
  background-color: #efefef;
}
#product-detail .product-content .product-img img {
  width: 100%;
}
#product-detail .product-content .product-mes {
  width: 40%;
}
#product-detail .product-content .product-mes h3 {
  font-size: 30px;
  color: #232323;
  font-weight: 700;
}
#product-detail .product-content .product-mes p {
  margin: 30px 0 100px;
  font-size: 18px;
  color: #565656;
  font-weight: 400;
  line-height: 40px;
}
#product-detail .product-content .product-mes .img-list img {
  margin-bottom: 45px;
  cursor: pointer;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}
#product-detail .product-content .product-mes .img-wrapper {
  display: none;
  margin: 30px 0;
  text-align: center;
}
#product-detail .product-content .product-mes .img-wrapper img {
  width: 50%;
}
#product-detail .product-content .product-mes .contact-info {
  display: inline-flex;
  background-color: #028bff;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 20px 54px;
}
#product-detail .product-content .product-mes .contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 16px;
}
#product-detail .product-intro {
  margin-top: 100px;
  border-bottom: 2px solid #efefef;
  font-size: 24px;
  color: #028bff;
  font-weight: 700;
}
#product-detail .product-intro span {
  display: inline-block;
  padding: 20px 0;
  position: relative;
}
#product-detail .product-intro span::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -2px;
  height: 2px;
  background-color: #028bff;
}
#product-detail .product-message .content-wrapper {
  margin: 40px 0 80px;
}
#product-detail .product-message .content-wrapper .content {
  margin-bottom: 50px;
}
#product-detail .product-message .content-wrapper .content .tit {
  font-size: 24px;
  color: #232323;
  font-weight: 700;
  margin-bottom: 10px;
}
#product-detail .product-message .content-wrapper .content p {
  font-size: 18px;
  color: #232323;
  font-weight: 400;
  line-height: 40px;
}
#product-detail .page-box {
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
}
#product-detail .page-box > a {
  padding: 18px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
#product-detail .page-box > a .layui-icon-left {
  margin-right: 14px;
}
#product-detail .page-box > a .layui-icon-right {
  margin-right: 14px;
}
#product-detail .page-box > a:hover {
  color: #fff;
  background-color: #028bff;
  border-radius: 4px;
}
#product-detail .rec-product h4 {
  margin: 38px 0 24px;
  font-size: 20px;
  color: #232323;
  font-weight: 700;
}
#product-detail .rec-product .product-info {
  text-align: center;
}
#product-detail .rec-product .product-info .img-wrapper {
  background: linear-gradient(-90deg, #b7e0fc, #e7f7fe);
  padding-bottom: 66.5%;
  position: relative;
  margin-bottom: 90px;
}
#product-detail .rec-product .product-info .img-wrapper img {
  position: absolute;
  top: 74px;
  transform: translate(-50%);
  width: calc(100% - 120px);
  text-align: center;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  left: 50%;
}
#product-detail .rec-product .product-info p {
  padding: 0 20px;
  font-size: 22px;
  color: #232323;
  font-weight: 700;
}

/* 品质保证 */
#quality-wrapper .quality-list .quality-item {
  margin-bottom: 60px;
}
#quality-wrapper .quality-list .quality-item:last-child {
  margin-bottom: 0;
}
#quality-wrapper .quality-list .quality-item:nth-child(2n) {
  flex-direction: row-reverse;
  margin-left: unset;
  margin-right: auto;
}
#quality-wrapper .quality-list .quality-item .left-mes {
  padding: 54px 0;
  background-color: #f4f4f4;
  flex: 1;
  min-width: 0;
}
#quality-wrapper .quality-list .quality-item .left-mes .header {
  margin-bottom: 22px;
}
#quality-wrapper .quality-list .quality-item .left-mes .header .num {
  width: 80px;
  height: 80px;
  background-color: #0193de;
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}
#quality-wrapper .quality-list .quality-item .left-mes .header .desc {
  flex: 1;
  padding-left: 23px;
  background-color: #fff;
  align-items: flex-start;
}
#quality-wrapper .quality-list .quality-item .left-mes .header .desc h2 {
  font-size: 32px;
  color: #0092dd;
  font-weight: 700;
}
#quality-wrapper .quality-list .quality-item .left-mes .header .desc .en-text {
  font-size: 16px;
  color: #bbb;
  font-weight: 400;
  line-height: 32px;
}
#quality-wrapper .quality-list .quality-item .left-mes p {
  padding-left: 80px;
  padding-right: 60px;
  font-size: 17px;
  color: #565656;
  font-weight: 400;
  line-height: 40px;
}
#quality-wrapper .quality-list .quality-item .img-wrapper {
  width: 55%;
  position: relative;
  padding-bottom: 29.21875%;
}

/* 新闻模块 */
#news-wrapper .news-list .news-item {
  width: 32%;
  margin-bottom: 80px;
}
#news-wrapper .news-list .news-item:hover .img-wrapper img {
  transform: scale(1.1);
}
#news-wrapper .news-list .news-item:hover .news-info h2,
#news-wrapper .news-list .news-item:hover .news-info .time-info {
  color: #028bff;
}
#news-wrapper .news-list .news-item .img-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 69.5296523517%;
}
#news-wrapper .news-list .news-item .news-info {
  padding-top: 33px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
#news-wrapper .news-list .news-item .news-info h2 {
  margin: 24px 0;
  font-size: 20px;
  color: #232323;
  font-weight: 700;
}
#news-wrapper .news-list .news-item .news-info .time-info {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
#news-wrapper .news-list .news-item .news-info .time-info img {
  width: 21px;
  height: 21px;
  margin-right: 10px;
}
#news-wrapper .news-list .news-item .news-info p {
  font-size: 16px;
  color: #717171;
  font-weight: 400;
  line-height: 30px;
}
#news-wrapper .news-list .news-item .news-info .detail {
  padding-top: 20px;
  border-top: 1px solid #efefef;
}
#news-wrapper .news-list .news-item .news-info .detail img {
  width: 15px;
  margin-left: 8px;
}
#news-wrapper .news-list i {
  width: 32%;
}

/* 新闻详情 */
#news-detail {
  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 .base-info {
  margin: 37px 0 34px;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
}
#news-detail .detail-wrapper .base-info > div {
  margin-right: 40px;
}
#news-detail .detail-wrapper .base-info > div img {
  width: 22px;
  height: 22px;
  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: 10px;
}

/* 联系我们 */
#contact-us h3 {
  text-align: center;
  font-size: 30px;
  color: #028bff;
  font-weight: 700;
}
#contact-us .icon-list {
  margin: 78px 0 112px;
}
#contact-us .icon-list .icon-item {
  background-color: #f7f7f7;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}
#contact-us .icon-list .icon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#contact-us .icon-list .icon-item .icon-wrap {
  width: 48px;
  margin-right: 18px;
}
#contact-us .icon-list .icon-item .base-info h4 {
  font-size: 20px;
  color: #6b6b6b;
  margin-bottom: 10px;
}
#contact-us .icon-list .icon-item .base-info p {
  font-size: 28px;
  color: #262626;
  font-weight: 700;
  line-height: 1.6;
}
#contact-us .icon-list .icon-item .title h4 {
  font-size: 26px;
  color: #232323;
  font-weight: 700;
  margin-left: 20px;
}
#contact-us .icon-list .icon-item .text {
  margin-top: 15px;
  font-size: 18px;
  color: #565656;
  font-weight: 400;
  line-height: 36px;
}
#contact-us #map {
  height: 460px;
} /*# sourceMappingURL=style.css.map */
