@charset "UTF-8";
::-webkit-scrollbar {
  width: 6px;
  /*滚动条宽度*/
  height: 6px;
  /*滚动条高度*/
}

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

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

a:hover {
  color: #028bff;
}

body {
  min-width: 320px;
}

/* 自定义常用样式 */
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-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}

/* 处理轮播图只有一个不显示 */
.swiper-pagination-bullet:only-child {
  display: inline-block !important;
}

.swiper-pagination-bullet {
  transition: all 0.3s;
  width: 30px;
  height: 12px;
  border-radius: 6px;
  background-color: #aecce6;
  opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 5px;
}

.swiper-pagination-bullet-active {
  width: 54px;
  height: 12px;
  background-color: #028bff;
}

.pagination-wrapper {
  padding-bottom: 140px;
}
.pagination-wrapper .pagination > a {
  margin-left: 8px;
  width: 50px;
  height: 50px;
  text-align: center;
  transition: all 0.3s;
  font-size: 16px;
  color: #787878;
  font-weight: 400;
}
.pagination-wrapper .pagination > a:hover, .pagination-wrapper .pagination > a.active {
  color: #fff;
  background-color: #028bff;
}
.pagination-wrapper .pagination > a img {
  width: 23px;
  height: 14px;
}
.pagination-wrapper .pagination .prev,
.pagination-wrapper .pagination .next {
  width: 50px;
  height: 50px;
  background-color: #e8e8e8;
}

.top-banner {
  position: relative;
  height: 400px;
}
.top-banner h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}
.top-banner .breadcrumb {
  margin-top: 40px;
  padding: 0 20px;
}
.top-banner .breadcrumb a {
  flex-shrink: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
}
.top-banner .breadcrumb a:hover {
  color: #028bff;
}
.top-banner .breadcrumb .arrow-icon {
  width: 5px;
  height: 8px;
  margin: 0 16px 10px;
}

header .pc-header::after {
  content: "";
  height: 100px;
  display: block;
}
header .pc-header .top-mes {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  z-index: 99;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header .pc-header .top-mes .logo img {
  width: 200px;
}
header .pc-header .top-mes .nav-list {
  width: 800px;
}
header .pc-header .top-mes .nav-list .nav-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  line-height: 100px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
header .pc-header .top-mes .nav-list .nav-item.active {
  color: #028bff;
}
header .pc-header .top-mes .nav-list .nav-item:hover {
  color: #028bff;
  overflow: visible;
}
header .pc-header .top-mes .nav-list .nav-item:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}
header .pc-header .top-mes .nav-list .nav-item .main-tit {
  position: relative;
  transition: all ease-out 0.3s;
}
header .pc-header .top-mes .nav-list .nav-item .main-tit::after {
  opacity: 0;
  content: attr(data-title);
  position: absolute;
  color: #028bff;
  left: 0px;
  top: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100%;
}
header .pc-header .top-mes .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 .nav-list .nav-item .sub-nav > a {
  line-height: 1;
  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 .nav-list .nav-item .sub-nav > a:hover {
  color: #fff;
  background-color: #028bff;
}
header .pc-header .top-mes .tool-wrapper .input-wrapper .search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
header .pc-header .top-mes .tool-wrapper .input-wrapper input {
  width: 0;
  padding-bottom: 4px;
  transition: width 0.3s;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  border-bottom: 1px solid #028bff;
}
header .pc-header .top-mes .tool-wrapper .input-wrapper input.active {
  width: 200px;
  margin: 0 10px;
}
header .pc-header .top-mes .tool-wrapper .divider {
  margin: 0 20px;
  width: 1px;
  height: 16px;
  background-color: #ccc;
}
header .pc-header .top-mes .tool-wrapper .lang-info {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  cursor: pointer;
}
header .pc-header .top-mes .tool-wrapper .lang-info:hover {
  color: #028bff;
}
header .pc-header .top-mes .tool-wrapper .lang-info .lang-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
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: 120px;
}
header .mb-header .top-mes .search-wrapper {
  position: fixed;
  z-index: 100;
  top: -100%;
  left: 20px;
  right: 20px;
  transition: all 0.3s;
}
header .mb-header .top-mes .search-wrapper.active {
  top: 80px;
}
header .mb-header .top-mes .search-wrapper.active .mask {
  display: block;
}
header .mb-header .top-mes .search-wrapper .search-box {
  position: relative;
  z-index: 100;
  border-radius: 100px;
  padding: 0 10px;
  background-color: #fff;
}
header .mb-header .top-mes .search-wrapper .search-box .input-wrapper {
  width: 100%;
}
header .mb-header .top-mes .search-wrapper .search-box img {
  width: 20px;
  height: 20px;
}
header .mb-header .top-mes .search-wrapper .search-box input {
  margin: 0 10px;
  padding: 10px 0;
  flex: 1;
  font-size: 14px;
  color: #232323;
  font-weight: 400;
}
header .mb-header .top-mes .search-wrapper .mask {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
header .mb-header .top-mes .menu-info .search-icon {
  margin: 0 10px;
}
header .mb-header .top-mes .menu-info .cate-icon {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
header .mb-header .top-mes .menu-info .cate-info div[class^=line] {
  width: 22px;
  height: 2px;
  margin-top: 4px;
  background-color: #000;
}
header .mb-header .top-mes .menu-box {
  position: fixed;
  top: 70px;
  bottom: 0;
  left: 100%;
  right: 0;
  z-index: 10;
  background-color: #f8f8f8;
  overflow: auto;
  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;
}
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 .mb-header .top-mes .menu-box .lang-info {
  margin-top: 10px;
  padding: 0 20px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  cursor: pointer;
}
header .mb-header .top-mes .menu-box .lang-info:hover {
  color: #028bff;
}
header .mb-header .top-mes .menu-box .lang-info .lang-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
header .mask-layer {
  width: 100vw;
  padding: 30px 0;
  background: #f7f7f7;
  position: fixed;
  z-index: 9999;
  display: none;
}
header .mask-layer .container {
  text-align: right;
}
header .mask-layer h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
header .mask-layer .layui-icon {
  font-size: 30px;
  color: #000;
  cursor: pointer;
}
header .mask-layer .layui-icon:hover {
  color: #028bff;
}
header .mask-layer 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: 14px;
}
header .mask-layer button {
  width: calc(10% - 20px);
  margin-left: 20px;
  align-self: stretch;
  border: none;
  background: #028bff;
  color: #fff;
}

footer .pc-footer {
  padding-top: 70px;
  background-color: #232323;
}
footer .pc-footer .link-wrapper {
  padding: 0 180px 160px;
}
footer .pc-footer .link-wrapper .link-list {
  margin-bottom: 20px;
}
footer .pc-footer .link-wrapper .link-list dl {
  flex-shrink: 0;
  margin-right: 50px;
}
footer .pc-footer .link-wrapper .link-list dl dt {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
footer .pc-footer .link-wrapper .link-list dl dd {
  font-size: 14px;
  color: #bbb;
  font-weight: 400;
  margin-bottom: 20px;
}
footer .pc-footer .link-wrapper .link-list dl dd > a:hover {
  color: #028bff;
}
footer .pc-footer .link-wrapper .website-info .info-item {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}
footer .pc-footer .link-wrapper .website-info .info-item:last-child {
  margin-bottom: 0;
}
footer .pc-footer .link-wrapper .website-info .info-item img {
  width: 28px;
  margin-right: 18px;
}
footer .pc-footer .link-wrapper .qrcode-wrapper {
  margin-left: 60px;
}
footer .pc-footer .link-wrapper .qrcode-wrapper img {
  width: 130px;
  height: 130px;
}
footer .pc-footer .copyright-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 180px;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
footer .pc-footer .copyright-wrapper .copyright .record-num {
  margin-left: 20px;
  cursor: pointer;
}
footer .pc-footer .copyright-wrapper .copyright .record-num:hover {
  color: #028bff;
}
footer .pc-footer .copyright-wrapper .contact-list .contact-item {
  margin-left: 10px;
}
footer .pc-footer .copyright-wrapper .contact-list .contact-item img {
  width: 40px;
  height: 40px;
}
footer .mb-footer {
  display: none;
  padding: 0 20px;
  background-color: #232323;
}
footer .mb-footer .footer-list .footer-item h3 {
  padding: 20px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .mb-footer .footer-list .footer-item .nav {
  display: none;
}
footer .mb-footer .footer-list .footer-item .nav li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
footer .mb-footer .footer-list .footer-item .nav li > a {
  display: block;
}
footer .mb-footer .website-info {
  margin-top: 20px;
}
footer .mb-footer .website-info .info-item {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}
footer .mb-footer .website-info .info-item img {
  width: 20px;
  margin-right: 10px;
}
footer .mb-footer .qrcode-wrapper {
  text-align: center;
}
footer .mb-footer .qrcode-wrapper img {
  width: 130px;
  height: 130px;
}
footer .mb-footer .icon-list {
  padding: 20px 0;
}
footer .mb-footer .icon-list .icon-item {
  margin-right: 10px;
  cursor: pointer;
}
footer .mb-footer .icon-list .icon-item img {
  width: 35px;
  height: 35px;
}
footer .mb-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 14px;
  color: #787878;
  font-weight: 400;
}

.common-box {
  padding: 100px 0;
}

.common-wrapper {
  padding: 100px 0;
}
.common-wrapper .header .title h3 {
  font-size: 48px;
  color: #232323;
  font-weight: 700;
}
.common-wrapper .header .title p {
  margin-top: 30px;
  font-size: 20px;
  color: #01a2fd;
  font-weight: 400;
}
.common-wrapper .header .more-info {
  width: 225px;
  height: 57px;
  padding: 0 60px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  background-image: url(../images/common/more-bg.png);
  transition: all 0.3s;
}
.common-wrapper .header .more-info:hover {
  padding: 0 30px;
}
.common-wrapper .header .more-info img {
  width: 14px;
  height: 7px;
}

#home-wrapper .home-swiper .progress-info {
  position: absolute;
  z-index: 10;
  bottom: 60px;
  left: 0;
  right: 0;
}
#home-wrapper .home-swiper .progress-info .progress-item {
  position: relative;
  width: 80px;
  height: 8px;
  border-radius: 4px;
  border: 1px solid #fff;
  background-color: transparent;
}
#home-wrapper .home-swiper .progress-info .progress-item .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
}
#home-wrapper .home-swiper .swiper-pagination-bullets {
  bottom: 60px;
}
#home-wrapper .home-swiper .swiper-pagination-bullet {
  position: relative;
  width: 80px;
  height: 8px;
  border-radius: 4px;
  border: 1px solid #fff;
  background-color: transparent;
}
#home-wrapper .home-swiper .swiper-pagination-bullet::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
}
#home-wrapper .home-swiper .swiper-pagination-bullet-active::before {
  transition: width 3s;
  width: 100%;
  background-color: #fff;
}
#home-wrapper .industry-wrapper {
  background-color: #f4faff;
}
#home-wrapper .industry-wrapper .industry-img {
  margin-top: -10px;
  padding: 0 60px;
}
#home-wrapper .industry-wrapper .industry-list {
  margin-top: 70px;
}
#home-wrapper .industry-wrapper .industry-list .industry-item {
  width: calc((100% - 120px) / 5);
  background: #fff url(../images/home/tag-bg.png) no-repeat right bottom;
  padding: 26px;
  font-size: 30px;
  color: #232323;
  font-weight: 400;
}
#home-wrapper .industry-wrapper .industry-list .industry-item:hover {
  box-shadow: 0 0 10px rgba(19, 125, 237, 0.2);
}
#home-wrapper .industry-wrapper .industry-list .industry-item img {
  width: 42px;
  height: 26px;
  margin-bottom: 58px;
}
#home-wrapper .about-wrapper .about-info {
  padding: 130px;
  background-image: url(../images/home/about-bg.png);
}
#home-wrapper .about-wrapper .about-info .title {
  margin-bottom: 30px;
  position: relative;
  font-size: 60px;
  color: #28529f;
  font-weight: 700;
}
#home-wrapper .about-wrapper .about-info .title::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "ABOUT US";
  font-size: 16px;
  color: #48bdff;
  font-weight: 400;
}
#home-wrapper .about-wrapper .about-info h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}
#home-wrapper .about-wrapper .about-info p {
  word-break: break-all;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 36px;
}
#home-wrapper .about-wrapper .about-info .desc-list {
  margin-top: 30px;
}
#home-wrapper .about-wrapper .about-info .desc-list .desc-item {
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
#home-wrapper .about-wrapper .about-info .desc-list .desc-item:first-child .count {
  font-size: 30px;
}
#home-wrapper .about-wrapper .about-info .desc-list .desc-item .count {
  font-size: 60px;
}
#home-wrapper .about-wrapper .about-info .desc-list .desc-item .sign {
  font-size: 20px;
}
#home-wrapper .about-wrapper .about-info .desc-list .desc-item .desc-info {
  margin-top: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .about-wrapper .about-info .desc-list .desc-item .desc-info img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
#home-wrapper .about-wrapper > img {
  width: 42%;
}
#home-wrapper .product-wrapper .product-swiper {
  padding-bottom: 70px;
  margin-top: 80px;
  margin-right: -180px;
}
#home-wrapper .product-wrapper .swiper-box {
  position: relative;
  overflow: hidden;
}
#home-wrapper .product-wrapper .swiper-box .img-wrapper {
  position: relative;
  padding-bottom: 60%;
}
#home-wrapper .product-wrapper .swiper-box .swiper-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent, rgb(10, 43, 99));
  padding: 20px 30px;
}
#home-wrapper .product-wrapper .swiper-box .swiper-info .name {
  padding-bottom: 10px;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.43);
}
#home-wrapper .product-wrapper .swiper-box .swiper-info .name .en-text {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .product-wrapper .swiper-box .swiper-info .tag-list {
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .product-wrapper .swiper-box .swiper-info .tag-list .tag-item {
  margin-bottom: 20px;
}
#home-wrapper .product-wrapper .swiper-box .swiper-info .tag-list .divider {
  width: 1px;
  margin: 0 30px 20px;
  background-color: #fff;
}
#home-wrapper .qualification-wrapper h3 {
  color: #fff !important;
}
#home-wrapper .qualification-wrapper .qualification-swiper {
  margin-top: 80px;
  padding-bottom: 140px;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-info {
  padding: 30px;
  background-color: rgba(10, 43, 99, 0.44);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-info .img-wrapper {
  position: relative;
  padding-bottom: 133%;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-info .name {
  position: relative;
  margin-top: -30px;
  margin-left: -30px;
  display: inline-flex;
  background-color: #028bff;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 10px 20px;
  width: 100%;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-info p {
  margin: 10px 0 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-info .arrow-icon {
  width: 23px;
  height: 6px;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-button-prev,
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-button-next {
  position: unset;
  width: 56px;
  height: 40px;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-button-prev {
  background-color: #028bff;
  background-image: url(../images/home/left-arrow.png);
  background-size: 20px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-button-next {
  background-color: #0a2b63;
  background-image: url(../images/home/right-arrow.png);
  background-size: 20px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-button-prev:after,
#home-wrapper .qualification-wrapper .qualification-swiper .swiper-button-next:after {
  display: none;
}
#home-wrapper .news-wrapper {
  padding-bottom: 200px;
}
#home-wrapper .news-wrapper .news-content {
  margin-top: 100px;
  position: relative;
}
#home-wrapper .news-wrapper .news-content .news-box {
  position: relative;
  width: 41%;
  padding-bottom: 41%;
}
#home-wrapper .news-wrapper .news-content .news-box .news-info {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 50px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#home-wrapper .news-wrapper .news-content .news-box .news-info h4 {
  font-size: 36px;
  color: #fff;
  font-weight: 400;
}
#home-wrapper .news-wrapper .news-content .news-box .news-info p {
  margin: 50px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}
#home-wrapper .news-wrapper .news-content .news-box .news-info .more-info {
  width: 225px;
  height: 57px;
  padding: 0 60px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  background-image: url(../images/common/more-bg.png);
  transition: all 0.3s;
}
#home-wrapper .news-wrapper .news-content .news-box .news-info .more-info:hover {
  padding: 0 30px;
}
#home-wrapper .news-wrapper .news-content .news-box .news-info .more-info img {
  width: 14px;
  height: 7px;
}
#home-wrapper .news-wrapper .news-content .right-swiper {
  box-shadow: 0 0 8px rgba(12, 90, 219, 0.1);
  position: absolute;
  padding-left: 14%;
  width: 71%;
  right: 0;
  top: 80px;
  padding-bottom: 60px;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper {
  padding: 30px;
  padding-bottom: 60px;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .swiper-pagination-bullets {
  bottom: 0;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ddeff6;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .swiper-pagination-bullet-active {
  background-color: #028bff;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .img-wrapper {
  position: relative;
  padding-bottom: 60%;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .name {
  margin: 20px 0;
  font-size: 28px;
  color: #232323;
  font-weight: 700;
  line-height: 36px;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .time-info {
  font-size: 18px;
  color: #565656;
  font-weight: 400;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .time-info img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info p {
  margin: 30px 0;
  font-size: 16px;
  color: #717171;
  font-weight: 400;
  line-height: 30px;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  padding-bottom: 18px;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info:hover {
  color: #028bff;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info:hover img:last-of-type {
  display: block;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info:hover img:nth-of-type(1) {
  display: none;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info:hover::after {
  width: 100%;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info img {
  width: 14px;
  height: 7px;
  margin-left: 8px;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info img:last-of-type {
  display: none;
}
#home-wrapper .news-wrapper .news-content .right-swiper .news-swiper .news-info .more-info::after {
  transition: width 0.3s;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
  background-color: #028bff;
  content: "";
}
#home-wrapper .video-wrapper video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 关于模块 */
#about-wrapper .honor-list .honor-item,
#about-wrapper .honor-list .honor-item2 {
  width: calc((100% - 120px) / 4);
  margin-bottom: 40px;
  padding: 30px;
  background-color: #0a2b63;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#about-wrapper .honor-list .honor-item .img-wrapper,
#about-wrapper .honor-list .honor-item2 .img-wrapper {
  position: relative;
}
#about-wrapper .honor-list .honor-item .name,
#about-wrapper .honor-list .honor-item2 .name {
  position: relative;
  margin-top: -30px;
  margin-left: -30px;
  display: inline-flex;
  background-color: #028bff;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 10px 20px;
  width: 100%;
}
#about-wrapper .honor-list .honor-item p,
#about-wrapper .honor-list .honor-item2 p {
  margin: 10px 0 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}
#about-wrapper .honor-list .honor-item .arrow-icon,
#about-wrapper .honor-list .honor-item2 .arrow-icon {
  width: 23px;
  height: 6px;
}
#about-wrapper .honor-list .honor-item2 .img-wrapper {
  padding-bottom: 72%;
}
#about-wrapper .honor-list i {
  width: calc((100% - 120px) / 4);
}
#about-wrapper .library-list .library-item {
  position: relative;
  margin-bottom: 120px;
}
#about-wrapper .library-list .library-item:hover p,
#about-wrapper .library-list .library-item:hover .name {
  color: #028bff !important;
}
#about-wrapper .library-list .library-item:hover .adorn {
  background-color: #028bff !important;
}
#about-wrapper .library-list .library-item:last-child {
  margin-bottom: 0;
}
#about-wrapper .library-list .library-item:nth-child(2n) .library-info {
  left: 0;
  right: unset;
}
#about-wrapper .library-list .library-item .img-wrapper {
  position: relative;
  padding-bottom: 26%;
  min-height: 200px;
}
#about-wrapper .library-list .library-item .library-info {
  position: absolute;
  z-index: 2;
  width: 50%;
  padding: 50px;
  background-color: #fff;
  top: 33%;
  right: 0;
  box-shadow: 0 0 18px rgba(61, 61, 61, 0.2);
}
#about-wrapper .library-list .library-item .library-info .name {
  font-size: 24px;
  color: #232323;
  font-weight: 700;
}
#about-wrapper .library-list .library-item .library-info .adorn {
  margin: 10px 0 26px;
  width: 34px;
  height: 6px;
  border-radius: 3px;
  background-color: #232323;
}
#about-wrapper .library-list .library-item .library-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 30px;
}
#about-wrapper .library-list .library-item .library-info .more-info {
  display: inline-flex;
  padding: 12px 48px;
  margin-top: 40px;
  background-color: #028bff;
}
#about-wrapper .library-list .library-item .library-info .more-info img {
  width: 26px;
  height: 16px;
}
#about-wrapper .device-list {
  margin-bottom: -42px;
}
#about-wrapper .device-list i {
  width: calc((100% - 92px) / 3);
}
#about-wrapper .device-list .device-item {
  width: calc((100% - 92px) / 3);
  position: relative;
  margin-bottom: 42px;
}
#about-wrapper .device-list .device-item::after {
  position: absolute;
  z-index: -1;
  top: 6px;
  right: -6px;
  bottom: -6px;
  left: 6px;
  content: "";
  background-color: rgba(2, 139, 255, 0.2);
}
#about-wrapper .device-list .device-item .img-wrapper {
  position: relative;
  padding-bottom: 71%;
}
#about-wrapper .device-list .device-item .device-info {
  position: absolute;
  bottom: 35px;
  left: 26px;
  right: 26px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
#about-wrapper .device-list .device-item .device-info .adorn {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  margin-bottom: 20px;
}
#about-wrapper .about-section .about-box .about-info {
  width: 55%;
  padding-left: 180px;
  padding-right: 100px;
}
#about-wrapper .about-section .about-box .about-info .title {
  margin-bottom: 30px;
  position: relative;
  font-size: 60px;
  color: #e6efff;
  font-weight: 700;
}
#about-wrapper .about-section .about-box .about-info .title::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "ABOUT US";
  font-size: 16px;
  color: #48bdff;
  font-weight: 400;
}
#about-wrapper .about-section .about-box .about-info h3 {
  font-size: 36px;
  color: #232323;
  font-weight: 700;
}
#about-wrapper .about-section .about-box .about-info > p {
  margin: 40px auto 40px;
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
}
#about-wrapper .about-section .about-box .about-info .icon-list .icon-item {
  width: 40%;
  margin-bottom: 84px;
}
#about-wrapper .about-section .about-box .about-info .icon-list .icon-item img {
  width: 60px;
  height: 60px;
}
#about-wrapper .about-section .about-box .about-info .icon-list .icon-item .icon-info {
  margin-left: 18px;
  font-size: 18px;
  color: #232323;
  font-weight: 700;
}
#about-wrapper .about-section .about-box .about-info .icon-list .icon-item .icon-info .name {
  margin-bottom: 18px;
}
#about-wrapper .about-section .about-box .about-info .icon-list .icon-item .icon-info p {
  font-size: 14px;
  color: #565656;
  font-weight: 400;
  line-height: 24px;
}
#about-wrapper .about-section .about-box .about-info .icon-list .icon-item:nth-child(n+3) {
  margin-bottom: 0;
}
#about-wrapper .about-section .about-box > img {
  width: 45%;
}
#about-wrapper .about-section .qualification-wrapper h3 {
  color: #fff !important;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper {
  margin-top: 40px;
  padding-bottom: 120px;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-info {
  padding: 30px;
  background-color: rgba(10, 43, 99, 0.44);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-info .img-wrapper {
  position: relative;
  padding-bottom: 133%;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-info .name {
  position: relative;
  margin-top: -30px;
  margin-left: -30px;
  display: inline-flex;
  background-color: #028bff;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 10px 20px;
  width: 100%;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-info p {
  margin: 10px 0 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-info .arrow-icon {
  width: 23px;
  height: 6px;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-button-prev,
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-button-next {
  position: unset;
  width: 56px;
  height: 40px;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-button-prev {
  background-color: #028bff;
  background-image: url(../images/home/left-arrow.png);
  background-size: 20px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-button-next {
  background-color: #0a2b63;
  background-image: url(../images/home/right-arrow.png);
  background-size: 20px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-button-prev:after,
#about-wrapper .about-section .qualification-wrapper .qualification-swiper .swiper-button-next:after {
  display: none;
}
#about-wrapper .about-section .device-wrapper .device-box {
  margin-top: 80px;
  position: relative;
}
#about-wrapper .about-section .device-wrapper .device-box::after {
  position: absolute;
  z-index: -1;
  top: 6px;
  right: -6px;
  bottom: -6px;
  left: 6px;
  content: "";
  background-color: rgba(2, 139, 255, 0.2);
}
#about-wrapper .about-section .device-wrapper .device-box .img-wrapper {
  position: relative;
  padding-bottom: 70%;
}
#about-wrapper .about-section .device-wrapper .device-box .device-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 26px;
  left: 0;
  right: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(to bottom, transparent, #142e59);
}
#about-wrapper .about-section .device-wrapper .device-box .device-info .adorn {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  margin-bottom: 20px;
}
#about-wrapper .about-section .device-wrapper .device-swiper {
  padding-bottom: 80px;
  margin-right: -180px;
}
#about-wrapper .about-section .device-wrapper .device-swiper .swiper-pagination {
  bottom: 0;
  top: unset;
  height: 1px;
  width: calc(100% - 180px);
}
#about-wrapper .about-section .device-wrapper .device-swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 4px;
  border-radius: 2px;
  background-color: #028bff;
  bottom: 0;
  top: unset;
}
#about-wrapper .about-section .culture-wrapper {
  background-color: #f8faff;
}
#about-wrapper .about-section .culture-wrapper .culture-list {
  margin-top: 80px;
}
#about-wrapper .about-section .culture-wrapper .culture-list .culture-item {
  transition: all 0.3s;
  position: relative;
  flex: 1;
  padding-bottom: 46%;
}
#about-wrapper .about-section .culture-wrapper .culture-list .culture-item:hover {
  flex: 1.3;
}
#about-wrapper .about-section .culture-wrapper .culture-list .culture-item .culture-info {
  position: absolute;
  top: 20%;
  left: 45px;
  right: 45px;
  text-align: center;
}
#about-wrapper .about-section .culture-wrapper .culture-list .culture-item .culture-info h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 40px;
}
#about-wrapper .about-section .culture-wrapper .culture-list .culture-item .culture-info p {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 36px;
}

.tab-control {
  background-color: #f6f6f6;
}
.tab-control .tab-list {
  position: relative;
  overflow: auto;
}
.tab-control .tab-list .tab-item {
  position: relative;
  flex-shrink: 0;
  line-height: 80px;
  margin-right: 96px;
  font-size: 16px;
  color: #232323;
  font-weight: 700;
}
.tab-control .tab-list .tab-item:last-of-type {
  margin-right: 0;
}
.tab-control .tab-list .tab-item:hover, .tab-control .tab-list .tab-item.active {
  font-size: 16px;
  color: #028bff;
  font-weight: 700;
}
.tab-control .tab-list .tab-item:hover::after, .tab-control .tab-list .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 6px;
  border-radius: 3px;
  background-color: #028bff;
}
/* 全球布局 */
#global-wrapper h3 {
  font-size: 40px;
  color: #142e59;
  font-weight: 700;
  text-align: center;
}
#global-wrapper .desc {
  word-break: break-all;
  margin: 50px 0 70px;
  position: relative;
  background-color: #f6f6f6;
  font-size: 18px;
  color: #142e59;
  font-weight: 400;
  line-height: 36px;
  padding: 30px;
}
#global-wrapper .desc::after {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #142e59;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
#global-wrapper .map-wrapper {
  position: relative;
}
#global-wrapper .map-wrapper .point-info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
#global-wrapper .map-wrapper .point-info .center img {
  position: relative;
  width: 33px;
  height: 40px;
}
#global-wrapper .map-wrapper .point-info .center .content {
  left: 70px;
}
#global-wrapper .map-wrapper .point-info .center .content::before {
  top: 48px;
}
#global-wrapper .map-wrapper .point-info li {
  position: absolute;
  top: 83%;
  left: 29%;
}
#global-wrapper .map-wrapper .point-info li .tit {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: -24px;
  font-size: 16px;
  color: #142e59;
  white-space: nowrap;
}
#global-wrapper .map-wrapper .point-info li::before {
  content: "";
  border-top: 1px dashed #028bff;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 68px;
  transform-origin: top left;
  transform: rotate(54deg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.36s;
}
#global-wrapper .map-wrapper .point-info li.on {
  z-index: 3;
}
#global-wrapper .map-wrapper .point-info li.on::before {
  opacity: 1;
  pointer-events: all;
}
#global-wrapper .map-wrapper .point-info li.on span::before,
#global-wrapper .map-wrapper .point-info li.on span::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(2, 139, 255, 0.2);
}
#global-wrapper .map-wrapper .point-info li.on span::before {
  animation: boderM 3s 1.5s infinite;
}
#global-wrapper .map-wrapper .point-info li.on span::after {
  animation: boderM 3s infinite;
}
#global-wrapper .map-wrapper .point-info li.on .content {
  display: block;
}
#global-wrapper .map-wrapper .point-info li span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #028bff;
  display: block;
  position: relative;
  cursor: pointer;
}
#global-wrapper .map-wrapper .point-info li span::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(2, 139, 255, 0.2);
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
#global-wrapper .map-wrapper .point-info .content {
  position: absolute;
  width: 280px;
  border-radius: 4px;
  background: #028bff;
  top: 26px;
  left: 60px;
  padding: 20px;
  display: none;
  color: #fff;
}
#global-wrapper .map-wrapper .point-info .content h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
#global-wrapper .map-wrapper .point-info .content::before {
  content: "";
  width: 15px;
  height: 1px;
  position: absolute;
  top: 35px;
  right: 100%;
  border-top: 1px dashed #028bff;
}
#global-wrapper .line-wrapper .line {
  position: absolute;
  width: 0;
  top: calc(19.31% + 6px);
  height: 209px;
  right: calc(20.5% + 6px);
  transition: all 2s;
  overflow: hidden;
}
#global-wrapper .line-wrapper .line:nth-child(2) {
  top: 14.5%;
  height: 258px;
}
#global-wrapper .line-wrapper .line:nth-child(2).active {
  width: 981px;
}
#global-wrapper .line-wrapper .line:nth-child(2) img {
  width: 981px;
}
#global-wrapper .line-wrapper .line:nth-child(3) {
  top: 25.4%;
  height: 161px;
}
#global-wrapper .line-wrapper .line:nth-child(3).active {
  width: 940px;
}
#global-wrapper .line-wrapper .line:nth-child(3) img {
  width: 940px;
}
#global-wrapper .line-wrapper .line:nth-child(4) {
  top: 41%;
  height: 265px;
}
#global-wrapper .line-wrapper .line:nth-child(4).active {
  width: 730px;
}
#global-wrapper .line-wrapper .line:nth-child(4) img {
  width: 730px;
}
#global-wrapper .line-wrapper .line:nth-child(5) {
  top: 43.5%;
  height: 330px;
}
#global-wrapper .line-wrapper .line:nth-child(5).active {
  width: 410px;
}
#global-wrapper .line-wrapper .line:nth-child(5) img {
  width: 410px;
}
#global-wrapper .line-wrapper .line:nth-child(6) {
  top: 43%;
  height: 368px;
}
#global-wrapper .line-wrapper .line:nth-child(6).active {
  width: 785px;
}
#global-wrapper .line-wrapper .line:nth-child(6) img {
  width: 785px;
}
#global-wrapper .line-wrapper .line:nth-child(7) {
  top: 42%;
  height: 62px;
}
#global-wrapper .line-wrapper .line:nth-child(7).active {
  width: 382px;
}
#global-wrapper .line-wrapper .line:nth-child(7) img {
  width: 382px;
}
#global-wrapper .line-wrapper .line:nth-child(8) {
  top: 36.34%;
  height: 64px;
}
#global-wrapper .line-wrapper .line:nth-child(8).active {
  width: 523px;
}
#global-wrapper .line-wrapper .line:nth-child(8) img {
  width: 523px;
}
#global-wrapper .line-wrapper .line:nth-child(9) {
  top: 42.5%;
  height: 83px;
}
#global-wrapper .line-wrapper .line:nth-child(9).active {
  width: 152px;
}
#global-wrapper .line-wrapper .line:nth-child(9) img {
  width: 152px;
}
#global-wrapper .line-wrapper .line:nth-child(10) {
  top: calc(21.6% + 6px);
  height: 191px;
}
#global-wrapper .line-wrapper .line:nth-child(10).active {
  width: 379px;
}
#global-wrapper .line-wrapper .line:nth-child(10) img {
  width: 379px;
}
#global-wrapper .line-wrapper .line:nth-child(11) {
  top: 40%;
  height: 35px;
}
#global-wrapper .line-wrapper .line:nth-child(11).active {
  width: 355px;
}
#global-wrapper .line-wrapper .line:nth-child(11) img {
  width: 355px;
}
#global-wrapper .line-wrapper .line:nth-child(12) {
  top: calc(31.2% + 6px);
  height: 107px;
}
#global-wrapper .line-wrapper .line:nth-child(12).active {
  width: 417px;
}
#global-wrapper .line-wrapper .line:nth-child(12) img {
  width: 417px;
}
#global-wrapper .line-wrapper .line:nth-child(13) {
  top: 25.5%;
  height: 159px;
}
#global-wrapper .line-wrapper .line:nth-child(13).active {
  width: 513px;
}
#global-wrapper .line-wrapper .line:nth-child(13) img {
  width: 513px;
}
#global-wrapper .line-wrapper .line:nth-child(14) {
  top: calc(38.63% - 12px);
  height: 57px;
}
#global-wrapper .line-wrapper .line:nth-child(14).active {
  width: 445px;
}
#global-wrapper .line-wrapper .line:nth-child(14) img {
  width: 445px;
}
#global-wrapper .line-wrapper .line:nth-child(15) {
  top: 33.03%;
  height: 98px;
}
#global-wrapper .line-wrapper .line:nth-child(15).active {
  width: 483px;
}
#global-wrapper .line-wrapper .line:nth-child(15) img {
  width: 483px;
}
#global-wrapper .line-wrapper .line:nth-child(16) {
  top: 42.56%;
  height: 195px;
}
#global-wrapper .line-wrapper .line:nth-child(16).active {
  width: 56px;
}
#global-wrapper .line-wrapper .line:nth-child(16) img {
  width: 56px;
}
#global-wrapper .line-wrapper .line:nth-child(17) {
  top: 42.6%;
  right: calc(20.5% + 12px);
  height: 110px;
}
#global-wrapper .line-wrapper .line:nth-child(17).active {
  width: 66px;
}
#global-wrapper .line-wrapper .line:nth-child(17) img {
  width: 66px;
}
#global-wrapper .line-wrapper .line:nth-child(18) {
  top: 39.43%;
  right: unset;
  left: calc(77.54% + 16px);
  height: 36px;
}
#global-wrapper .line-wrapper .line:nth-child(18).active {
  width: 76px;
}
#global-wrapper .line-wrapper .line:nth-child(18) img {
  width: 76px;
  right: unset;
  left: 0;
}
#global-wrapper .line-wrapper .line:nth-child(19) {
  top: 40.8%;
  right: unset;
  left: 77.54%;
  height: 29px;
}
#global-wrapper .line-wrapper .line:nth-child(19).active {
  width: 128px;
}
#global-wrapper .line-wrapper .line:nth-child(19) img {
  width: 128px;
  right: unset;
  left: 0;
}
#global-wrapper .line-wrapper .line.active {
  width: 89px;
}
#global-wrapper .line-wrapper .line img {
  display: block;
  width: 89px;
  position: absolute;
  top: 0;
  right: 0;
  max-width: unset;
}
@keyframes boderM {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* 产品与解决方案 */
#product-wrapper .product-list .product-item {
  position: relative;
  width: 32%;
  margin-bottom: 75px;
  overflow: hidden;
  transition: all 0.3s;
}
#product-wrapper .product-list .product-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#product-wrapper .product-list .product-item:hover .img-wrapper img {
  transform: scale(1.05);
}
#product-wrapper .product-list .product-item .img-wrapper {
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  padding-bottom: 60%;
}
#product-wrapper .product-list .product-item .product-info {
  padding: 30px;
  background-color: #142e59;
  background-image: url(../images/common/product-bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
}
#product-wrapper .product-list .product-item .product-info h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}
#product-wrapper .product-list .product-item .product-info p {
  margin: 20px 0;
  font-size: 16px;
  color: #bbbbbb;
  font-weight: 400;
  line-height: 34px;
}
#product-wrapper .product-list .product-item .product-info .tag-info {
  padding-top: 20px;
  border-top: 1px solid #fff;
}
#product-wrapper .product-list .product-item .product-info .tag-info h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
#product-wrapper .product-list .product-item .product-info .tag-info .tag-list {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#product-wrapper .product-list .product-item .product-info .tag-info .tag-list .tag-item {
  margin-bottom: 14px;
}
#product-wrapper .product-list .product-item .product-info .tag-info .tag-list .tag-item:last-child {
  margin-bottom: 0;
}
#product-wrapper .product-list .product-item .product-info .tag-info .tag-list .tag-item .circle {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}
#product-wrapper .product-list .product-item .product-info .tag-info .tag-list .divider {
  margin: 0 20px;
  width: 1px;
  background-color: #fff;
}
#product-wrapper .product-list::after {
  width: 32%;
  content: "";
}

/* 产业结构 */
#industry-wrapper .industry-box {
  background-color: #e7f0f6;
}
#industry-wrapper .industry-box h3 {
  text-align: center;
  font-size: 36px;
  color: #142e59;
  font-weight: 700;
  margin-bottom: 85px;
}
#industry-wrapper .industry-box .industry-mes {
  margin: 300px auto 0;
  position: relative;
  width: 1108px;
  height: 554px;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  /* background-image: linear-gradient(to right, #fff, #fff), linear-gradient(to right, red, #578aef); */
  background-image: linear-gradient(to right, #e7f0f6, #e7f0f6), linear-gradient(to right, rgba(0, 86, 255, 0.3) 1%, #0056ff, rgba(0, 86, 255, 0.3));
  border-bottom: 0;
  border-radius: 1108px 1108px 0 0;
}
#industry-wrapper .industry-box .industry-mes .circle-list > div[class^=circle] {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid #6c7f90;
  border-radius: 50%;
}
#industry-wrapper .industry-box .industry-mes .circle-list > div[class^=circle] .inner-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #6c7f90;
}
#industry-wrapper .industry-box .industry-mes .circle-list > div[class^=circle]:hover {
  border: 1px solid #028bff;
}
#industry-wrapper .industry-box .industry-mes .circle-list > div[class^=circle]:hover .inner-circle {
  background-color: #028bff;
}
#industry-wrapper .industry-box .industry-mes .circle-list .circle1 {
  top: 32%;
  left: 10%;
}
#industry-wrapper .industry-box .industry-mes .circle-list .circle2 {
  top: 5%;
  left: 28.6%;
}
#industry-wrapper .industry-box .industry-mes .circle-list .circle3 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
#industry-wrapper .industry-box .industry-mes .circle-list .circle4 {
  top: 32%;
  right: 10%;
}
#industry-wrapper .industry-box .industry-mes .circle-list .circle5 {
  top: 5%;
  right: 28.6%;
}
#industry-wrapper .industry-box .industry-mes .circle-box > div {
  position: absolute;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(8, 92, 248, 0.3);
}
#industry-wrapper .industry-box .industry-mes .circle-box > div .inner-circle {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  background: linear-gradient(#137ded, #0554fa);
}
#industry-wrapper .industry-box .industry-mes .circle-box .circle1 {
  top: 0;
  left: -47px;
}
#industry-wrapper .industry-box .industry-mes .circle-box .circle2 {
  top: 0;
  transform: translateY(-100%);
  left: 18.5%;
}
#industry-wrapper .industry-box .industry-mes .circle-box .circle3 {
  top: -40px;
  left: 50%;
  transform: translate(-50%, -100%);
}
#industry-wrapper .industry-box .industry-mes .circle-box .circle4 {
  top: 0;
  transform: translateY(-100%);
  right: 18.5%;
}
#industry-wrapper .industry-box .industry-mes .circle-box .circle5 {
  top: 0;
  right: -47px;
}
#industry-wrapper .industry-box .industry-mes .inner-box {
  position: relative;
  align-self: flex-end;
  flex-shrink: 0;
  width: 960px;
  height: 480px;
  background: linear-gradient(to bottom, #eaf1fb, #f5f9fb);
  border-radius: 960px 960px 0 0;
}
#industry-wrapper .industry-box .industry-mes .inner-box span {
  position: absolute;
  font-size: 24px;
  color: #0e6ef1;
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
}
#industry-wrapper .industry-box .industry-mes .inner-box .icon {
  width: 28px;
  height: 33px;
  position: absolute;
}
#industry-wrapper .industry-box .industry-mes .inner-box .icon1 {
  transform: translate(-50%, -100%);
  top: 0;
  left: 50%;
}
#industry-wrapper .industry-box .industry-mes .inner-box .icon2 {
  transform: rotate(-40deg);
  top: 12%;
  left: 20%;
}
#industry-wrapper .industry-box .industry-mes .inner-box .icon3 {
  transform: rotate(40deg);
  top: 12%;
  right: 20%;
}
#industry-wrapper .industry-box .industry-mes .inner {
  position: relative;
  align-self: flex-end;
  width: 700px;
  height: 350px;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 700px 700px 0 0;
  border: 25px solid transparent;
  border-top-width: 40px;
  border-bottom: 0;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  /* background-image: linear-gradient(to right, #fff, #fff), linear-gradient(to right, red, #578aef); */
  background-image: linear-gradient(to bottom, #eaf1fb, #f5f9fb), linear-gradient(to right, #0554fa, rgba(19, 125, 237, 0.6) 20%, rgba(19, 125, 237, 0.6) 80%, #0554fa);
}
#industry-wrapper .industry-box .industry-mes .inner::after {
  content: "";
  position: absolute;
  top: -30px;
  bottom: 0px;
  left: -30px;
  right: -30px;
  background: linear-gradient(to right, red, blue);
  z-index: -1;
  border-radius: 700px 700px 0 0;
}
#industry-wrapper .industry-box .industry-mes .inner span {
  position: absolute;
  left: 25%;
  top: 25%;
  font-size: 24px;
  color: #0e6ef1;
  font-weight: 700;
  transform: rotate(-40deg);
}
#industry-wrapper .industry-box .industry-mes .inner span:last-of-type {
  position: absolute;
  left: unset;
  right: 25%;
  top: 25%;
  font-size: 24px;
  color: #0e6ef1;
  font-weight: 700;
  transform: rotate(40deg);
}
#industry-wrapper .industry-box .industry-mes .inner .icon {
  width: 28px;
  height: 33px;
  position: absolute;
}
#industry-wrapper .industry-box .industry-mes .inner .icon1 {
  transform: translateX(-50%);
  top: 30px;
  left: 50%;
}
#industry-wrapper .industry-box .industry-mes .inner .icon2 {
  transform: translateY(50%) rotate(-40deg);
  top: 15%;
  left: 30%;
}
#industry-wrapper .industry-box .industry-mes .inner .icon3 {
  transform: translateY(50%) rotate(40deg);
  top: 15%;
  right: 30%;
}
#industry-wrapper .industry-box .industry-mes .content-box {
  align-self: flex-end;
  width: 410px;
  height: 180px;
  border-radius: 90px;
  background: linear-gradient(#bddff7, #698ec5);
  font-size: 36px;
  color: #04306f;
  font-weight: 700;
}
#industry-wrapper .industry-box .industry-mes .content-box p {
  font-size: 20px;
  margin-top: 10px;
}
#industry-wrapper .industry-box .main-industry {
  display: none;
}
#industry-wrapper .industry-box .main-industry .main-item {
  width: 162px;
  height: 162px;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(8, 92, 248, 0.3);
  margin-bottom: 10px;
}
#industry-wrapper .industry-box .main-industry .main-item .inner-circle {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  background: linear-gradient(#137ded, #0554fa);
}
#industry-wrapper .industry-box .industry-list {
  margin-top: 70px;
}
#industry-wrapper .industry-box .industry-list .industry-item {
  width: calc((100% - 60px) / 4);
  background: #fff url(../images/home/tag-bg.png) no-repeat right bottom;
  padding: 26px;
  font-size: 30px;
  color: #232323;
  font-weight: 400;
}
#industry-wrapper .industry-box .industry-list .industry-item:hover {
  box-shadow: 0 0 10px rgba(19, 125, 237, 0.2);
}
#industry-wrapper .industry-box .industry-list .industry-item img {
  width: 42px;
  height: 26px;
  margin-bottom: 58px;
}
#industry-wrapper .industry-box2 h3 {
  text-align: center;
  font-size: 36px;
  color: #142e59;
  font-weight: 700;
  margin-bottom: 85px;
}

/* 产品详情 */
#product-detail .content-wrapper .header {
  margin-bottom: 40px;
}
#product-detail .content-wrapper .header h4 {
  margin-top: 30px;
  font-size: 30px;
  color: #232323;
  font-weight: 700;
}
#product-detail .content-wrapper .spec-list {
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
}
#product-detail .content-wrapper .spec-list .spec-item {
  margin-right: 110px;
  padding-bottom: 28px;
  font-size: 18px;
  color: #232323;
  font-weight: 700;
}
#product-detail .content-wrapper .spec-list .spec-item div:last-child {
  font-size: 16px;
  color: #787878;
  font-weight: 700;
  margin-top: 10px;
}
#product-detail .content-wrapper .content p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 10px;
}
#product-detail .content-wrapper .page-box {
  margin-top: 100px;
  border-top: 1px solid #efefef;
  padding: 30px 0 60px;
}
#product-detail .content-wrapper .page-box > a {
  padding: 6px;
  border-radius: 4px;
  font-size: 16px;
  color: #7a8ba6;
  font-weight: 700;
}
#product-detail .content-wrapper .page-box > a img {
  width: 70px;
  height: 40px;
}
#product-detail .content-wrapper .page-box > a span {
  margin: 0 20px;
}
#product-detail .content-wrapper .page-box > a:hover {
  color: #fff;
  background-color: #028bff;
}

/* 新闻模块 */
#news-wrapper .news-list::after {
  content: "";
  width: calc((100% - 80px) / 3);
}
#news-wrapper .news-list .news-item {
  width: calc((100% - 80px) / 3);
  margin-bottom: 40px;
}
#news-wrapper .news-list .news-item:hover {
  box-shadow: 0 2px 14px rgba(19, 125, 237, 0.1);
}
#news-wrapper .news-list .news-item:hover .name,
#news-wrapper .news-list .news-item:hover p {
  color: #028bff !important;
}
#news-wrapper .news-list .news-item:hover .img-wrapper img {
  transform: scale(1.1);
}
#news-wrapper .news-list .news-item .img-wrapper {
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 53%;
}
#news-wrapper .news-list .news-item .news-info {
  padding: 20px 30px 30px;
  background-color: #f8faff;
}
#news-wrapper .news-list .news-item .news-info .tag-info {
  margin-bottom: 20px;
  font-size: 16px;
  color: #777;
  font-weight: 700;
}
#news-wrapper .news-list .news-item .news-info .tag-info .tag-item {
  margin-right: 30px;
}
#news-wrapper .news-list .news-item .news-info .tag-info .tag-item:last-child {
  margin-right: 0;
}
#news-wrapper .news-list .news-item .news-info .tag-info .tag-item img {
  margin-right: 10px;
  width: 18px;
}
#news-wrapper .news-list .news-item .news-info .name {
  font-size: 22px;
  color: #232323;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 12px;
}
#news-wrapper .news-list .news-item .news-info p {
  font-size: 16px;
  color: #565656;
  font-weight: 400;
  line-height: 28px;
}
#news-wrapper .news-list .news-item .news-info .more-info {
  margin-top: 20px;
  font-size: 16px;
  color: #565656;
  font-weight: 700;
}
#news-wrapper .news-list .news-item .news-info .more-info img {
  width: 14px;
  height: 7px;
  margin-left: 6px;
}

/* 新闻详情 */
#news-detail {
  background-color: #f9f9f9;
}
#news-detail .content-wrapper {
  padding: 70px 80px 0;
  background-color: #fff;
}
#news-detail .content-wrapper .header {
  padding-bottom: 28px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 40px;
}
#news-detail .content-wrapper .header h4 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #232323;
  font-weight: 700;
}
#news-detail .content-wrapper .header .tag-info {
  font-size: 16px;
  color: #777;
  font-weight: 700;
}
#news-detail .content-wrapper .header .tag-info .tag-item {
  margin-right: 30px;
}
#news-detail .content-wrapper .header .tag-info .tag-item:last-child {
  margin-right: 0;
}
#news-detail .content-wrapper .header .tag-info .tag-item img {
  margin-right: 10px;
  width: 18px;
}
#news-detail .content-wrapper .content p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}
#news-detail .content-wrapper .page-box {
  margin-top: 100px;
  border-top: 1px solid #efefef;
  padding: 30px 0 60px;
}
#news-detail .content-wrapper .page-box > a {
  padding: 6px;
  border-radius: 4px;
  font-size: 16px;
  color: #7a8ba6;
  font-weight: 700;
}
#news-detail .content-wrapper .page-box > a img {
  width: 70px;
  height: 40px;
}
#news-detail .content-wrapper .page-box > a span {
  margin: 0 20px;
}
#news-detail .content-wrapper .page-box > a:hover {
  color: #fff;
  background-color: #028bff;
}

/* 联系我们 */
#contact-wrapper {
  position: relative;
}
#contact-wrapper .contact-box {
  position: relative;
}
#contact-wrapper .contact-box:first-child {
  padding: 30px 0;
  margin-bottom: 50px;
}
#contact-wrapper .contact-box:first-child::after {
  left: 0;
  right: unset;
  background-image: url(../images/common/bg3.jpg);
}
#contact-wrapper .contact-box > div {
  position: relative;
  z-index: 1;
}
#contact-wrapper .contact-box:hover .form-wrapper {
  box-shadow: none;
}
#contact-wrapper .contact-box:hover .form-wrapper .adorn {
  background-color: #fff;
}
#contact-wrapper .contact-box:hover .form-wrapper p,
#contact-wrapper .contact-box:hover .form-wrapper .name {
  color: #fff;
}
#contact-wrapper .contact-box:hover .form-wrapper button {
  background-color: #fff;
  color: #028bff;
}
#contact-wrapper .contact-box:hover h3 {
  color: #fff;
}
#contact-wrapper .contact-box:hover .contact-list .contact-item h4,
#contact-wrapper .contact-box:hover .contact-list .contact-item ul li {
  color: #fff;
}
#contact-wrapper .contact-box:hover::after {
  width: 100%;
}
#contact-wrapper .contact-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  background: url(../images/common/bg4.jpg) no-repeat center/cover;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#contact-wrapper h3 {
  font-size: 30px;
  color: #142e59;
  font-weight: 700;
  text-align: center;
}
#contact-wrapper .contact-list {
  margin-top: 80px;
}
#contact-wrapper .contact-list .contact-item {
  width: 30%;
  padding-bottom: 40px;
}
#contact-wrapper .contact-list .contact-item:nth-child(2) {
  padding: 0 5%;
  padding-bottom: 40px;
  border-left: 2px solid rgba(204, 204, 204, 0.6);
  border-right: 2px solid rgba(204, 204, 204, 0.6);
}
#contact-wrapper .contact-list .contact-item h4 {
  font-size: 20px;
  color: #142e59;
  font-weight: 700;
  margin-bottom: 20px;
}
#contact-wrapper .contact-list .contact-item .contact-info li {
  width: 48%;
  margin-bottom: 40px;
}
#contact-wrapper .contact-list .contact-item .contact-info li .desc {
  margin-top: 10px;
}
#contact-wrapper .contact-list .contact-item .contact-info li:last-child {
  margin-bottom: 0;
}
#contact-wrapper .contact-list .contact-item ul li {
  font-size: 16px;
  color: #666;
  font-weight: 700;
  margin-bottom: 10px;
}
#contact-wrapper .form-wrapper {
  padding: 60px 42px 30px 115px;
  box-shadow: 0 0 20px rgba(58, 49, 85, 0.1);
  text-align: center;
}
#contact-wrapper .form-wrapper .name {
  font-size: 30px;
  color: #2b2b2b;
  font-weight: 700;
}
#contact-wrapper .form-wrapper .adorn {
  margin: 16px auto;
  width: 58px;
  height: 6px;
  border-radius: 3px;
  background-color: #028bff;
}
#contact-wrapper .form-wrapper p {
  font-size: 16px;
  color: #878787;
  font-weight: 700;
  line-height: 24px;
}
#contact-wrapper .form-wrapper .form-box {
  margin-top: 46px;
}
#contact-wrapper .form-wrapper .form-box .form-line:nth-child(2) .form-item {
  width: calc((100% - 80px) / 3);
}
#contact-wrapper .form-wrapper .form-box .form-line:nth-child(3) .form-item {
  width: 100%;
}
#contact-wrapper .form-wrapper .form-box .form-line .form-item {
  position: relative;
  padding: 16px 30px;
  width: calc((100% - 50px) / 2);
  background-color: #f4f4f4;
  margin-bottom: 30px;
}
#contact-wrapper .form-wrapper .form-box .form-line .form-item label {
  flex-shrink: 0;
  font-size: 16px;
  color: #aaa;
  font-weight: 700;
}
#contact-wrapper .form-wrapper .form-box .form-line .form-item label .sign {
  color: #d61618;
}
#contact-wrapper .form-wrapper .form-box .form-line .form-item input {
  width: 100%;
  flex: 1;
  font-size: 16px;
  color: #aaa;
  font-weight: 700;
  background-color: #f4f4f4;
}
#contact-wrapper .form-wrapper .form-box .form-line .form-item textarea {
  resize: none;
  border: none;
  width: 100%;
  height: 130px;
  font-size: 16px;
  color: #aaa;
  font-weight: 700;
  background-color: #f4f4f4;
}
#contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info {
  margin-right: 30px;
}
#contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info .input-wrapper {
  height: 60px;
  background-color: #f4f4f4;
  width: 240px;
  padding: 20px;
  margin-right: 10px;
}
#contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info .input-wrapper input {
  background-color: #f4f4f4;
  font-size: 16px;
  color: #aaa;
  font-weight: 700;
}
#contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info .input-wrapper input::-moz-placeholder {
  font-size: 16px;
  color: #aaa;
  font-weight: 700;
}
#contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info .input-wrapper input::placeholder {
  font-size: 16px;
  color: #aaa;
  font-weight: 700;
}
#contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info img {
  width: 192px;
}
#contact-wrapper .form-wrapper button {
  width: 200px;
  height: 60px;
  border-radius: 6px;
  font-size: 24px;
  color: #028bff;
  font-weight: 700;
  border: 1px solid #028bff;
}

.map-wrapper #map {
  height: 400px;
}

/* 新增表格样式 */
.table-wrapper {
  width: 100%;
  overflow: auto;
}

table {
  width: 100% !important;
  border-collapse: collapse;
}
table tr:first-child {
  text-align: center;
  background-color: #142e59;
  height: 46px;
}
table tr:first-child td {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 13px 0;
}
table td {
  border: 1px solid #efefef;
  padding: 20px 30px;
  font-size: 18px;
  color: #232323;
  font-weight: 700;
  white-space: nowrap;
}

/* 去除swiper锁住 */
.swiper-button-lock {
  display: block;
}

@media screen and (max-width: 1400px) {
  .hidden-xlg {
    display: none !important;
  }
  .visible-xlg {
    display: block !important;
  }
  #home-wrapper .news-wrapper .news-content .news-box {
    width: 100%;
    padding-bottom: 41%;
  }
  #home-wrapper .news-wrapper .news-content .right-swiper {
    margin-top: 30px;
    position: unset;
    padding-left: 0;
    width: 100%;
    padding-bottom: 30px;
  }
  #about-wrapper .about-section .about-box .about-info {
    padding: 0;
    width: 100%;
  }
  #about-wrapper .about-section .about-box .about-info .icon-list .icon-item {
    margin-bottom: 30px !important;
  }
  #about-wrapper .about-section .about-box > img {
    width: 100%;
  }
  #about-wrapper .about-section .about-box {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1300px) {
  #industry-wrapper .industry-box .industry-mes {
    display: none;
  }
  #industry-wrapper .industry-box .main-industry {
    display: flex;
  }
  #global-wrapper .map-wrapper .point-info li .tit {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  #home-wrapper .about-wrapper .about-info {
    width: 100%;
  }
  #home-wrapper .about-wrapper > img {
    display: none;
  }
  #home-wrapper .industry-wrapper .industry-list::after {
    content: "";
    width: calc((100% - 120px) / 3);
  }
  #home-wrapper .industry-wrapper .industry-list .industry-item {
    width: calc((100% - 120px) / 3);
    margin-bottom: 20px;
  }
  #about-wrapper .honor-list .honor-item,
  #about-wrapper .honor-list .honor-item2,
  #about-wrapper .honor-list i {
    width: 30%;
  }
  #product-wrapper .product-list .product-item {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg {
    display: block !important;
  }
  .pagination-wrapper {
    padding-bottom: 60px;
  }
  .container {
    padding: 0 60px;
  }
  #home-wrapper .home-swiper .swiper-pagination-bullets {
    bottom: 10px;
  }
  #home-wrapper .product-wrapper .product-swiper,
  #about-wrapper .about-section .device-wrapper .device-swiper {
    margin-right: -60px;
  }
  #about-wrapper .about-section .device-wrapper .device-swiper .swiper-pagination-bullets {
    width: calc(100% - 60px);
  }
  #about-wrapper .about-section .culture-wrapper .culture-list .culture-item .culture-info {
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    right: 30px;
  }
  footer .pc-footer .link-wrapper {
    padding: 0 60px 60px;
  }
  footer .pc-footer .copyright-wrapper {
    padding: 14px 60px;
  }
  #about-wrapper .library-list .library-item {
    margin-bottom: 60px;
    box-shadow: 0 0 18px rgba(61, 61, 61, 0.2);
  }
  #about-wrapper .library-list .library-item .library-info {
    position: unset;
    width: 100%;
    box-shadow: none;
  }
  #about-wrapper .device-list .device-item,
  #about-wrapper .device-list i {
    width: 48%;
  }
  .common-wrapper,
  .common-box {
    padding: 60px 0;
  }
  #home-wrapper .news-wrapper {
    padding-bottom: 60px;
  }
  .swiper-horizontal > .swiper-pagination-bullets {
    bottom: 30px;
  }
  #product-wrapper .product-list .product-item {
    width: 100%;
  }
  #product-detail .content-wrapper .spec-list .spec-item {
    margin-right: 30px;
  }
  #news-wrapper .news-list .news-item {
    width: 48%;
  }
  #contact-wrapper .contact-list .contact-item {
    width: 48%;
  }
  #contact-wrapper .contact-list .contact-item:nth-child(2) {
    border-right: 0;
  }
  #contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info {
    width: 100%;
    margin-bottom: 20px;
  }
  #industry-wrapper .industry-box .industry-list .industry-item {
    margin-top: 20px;
    width: 48%;
  }
  #global-wrapper .line-wrapper {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  /*滚动条里面小方块*/
  ::-webkit-scrollbar-thumb {
    /* 滚动条 拖动条 */
    background-color: unset;
  }
  /*滚动条轨道*/
  ::-webkit-scrollbar-track {
    /* 滚动条背景槽 */
    background-color: unset;
  }
  .pagination-wrapper {
    padding-bottom: 30px;
  }
  .pagination-wrapper .pagination > a,
  .pagination-wrapper .pagination .prev,
  .pagination-wrapper .pagination .next {
    width: 36px;
    height: 36px;
  }
  .container {
    padding: 0 30px;
  }
  .tab-control .tab-list {
    justify-content: space-between;
  }
  .tab-control .tab-list .tab-item {
    margin-right: 0;
  }
  #home-wrapper .product-wrapper .product-swiper,
  #about-wrapper .about-section .device-wrapper .device-swiper {
    margin-right: 0;
  }
  #about-wrapper .about-section .device-wrapper .device-swiper .swiper-pagination-bullets {
    width: 100%;
  }
  #home-wrapper .product-wrapper .swiper-box {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #efefef;
  }
  #home-wrapper .product-wrapper .swiper-box .swiper-info {
    padding: 30px;
    position: unset;
    background-color: rgb(10, 43, 99);
  }
  #home-wrapper .product-wrapper .swiper-box .swiper-info .tag-list {
    display: block;
  }
  #home-wrapper .product-wrapper .swiper-box .swiper-info .tag-list .divider {
    display: none;
  }
  #home-wrapper .news-wrapper .news-content .news-box {
    padding-bottom: 0;
  }
  #home-wrapper .news-wrapper .news-content .news-box .news-info {
    position: unset;
    padding: 30px;
  }
  #about-wrapper .honor-list .honor-item,
  #about-wrapper .honor-list .honor-item2,
  #about-wrapper .honor-list i {
    width: 48%;
  }
  #about-wrapper .about-section .about-box {
    padding-left: 30px;
    padding-right: 30px;
  }
  #about-wrapper .about-section .device-wrapper {
    margin-left: 0;
  }
  #about-wrapper .about-section .culture-wrapper .culture-list .culture-item {
    flex: none;
    width: 100%;
    height: 200px;
  }
  #about-wrapper .about-section .culture-wrapper .culture-list .culture-item:hover {
    flex: none;
  }
  #about-wrapper .about-section .culture-wrapper .culture-list .culture-item .culture-info {
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    right: 30px;
  }
  .common-wrapper,
  .common-box {
    padding: 30px 0;
  }
  #home-wrapper .about-wrapper .about-info {
    padding: 30px;
  }
  #home-wrapper .industry-wrapper .industry-list .industry-item {
    width: 48%;
  }
  .common-wrapper .header .title {
    width: 100%;
    text-align: center;
  }
  .common-wrapper .header .title h3 {
    font-size: 24px;
  }
  .common-wrapper .header .title p {
    margin-top: 20px;
    font-size: 16px;
  }
  .common-wrapper .header .more-info {
    margin: 20px auto 0;
  }
  #home-wrapper .industry-wrapper .industry-img {
    padding: 0;
    margin-top: 30px;
  }
  #product-wrapper .product-list .product-item:hover {
    box-shadow: 0 2px 14px rgba(19, 125, 237, 0.2);
  }
  #product-wrapper .product-list .product-item:hover .product-info {
    position: unset;
  }
  #product-wrapper .product-list .product-item .product-info {
    position: unset;
    opacity: 1;
    padding: 30px;
  }
  #product-wrapper .product-list .product-item .product-info h3 {
    font-size: 24px;
  }
  #product-wrapper .product-list .product-item .product-info p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 20px;
  }
  #product-wrapper .product-list .product-item .product-info .tag-info h5 {
    font-size: 16px;
  }
  #product-wrapper .product-list .product-item .product-info .tag-info .tag-list {
    font-size: 14px;
  }
  #news-wrapper .news-list .news-item {
    width: 100%;
  }
  #news-detail .content-wrapper {
    padding: 30px 30px 0;
  }
  #news-detail .content-wrapper .page-box {
    margin-top: 30px;
  }
  #news-detail .content-wrapper .page-box > a {
    font-size: 14px;
    width: 100%;
  }
  #news-detail .content-wrapper .page-box > a:last-child {
    justify-content: flex-end;
  }
  #contact-wrapper .form-wrapper {
    padding: 30px 0;
    box-shadow: none;
  }
  #contact-wrapper .form-wrapper .form-box .form-line .form-item {
    width: 100%;
    padding: 14px;
  }
  #contact-wrapper .form-wrapper .form-box .form-line:nth-child(2) .form-item {
    width: 100%;
  }
  table td {
    padding: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  .top-banner {
    height: 300px;
  }
  #home-wrapper .news-wrapper .news-content .right-swiper .news-swiper {
    padding: 20px;
    padding-bottom: 30px;
  }
  #home-wrapper .about-wrapper .about-info .desc-list .desc-item .count {
    font-size: 48px;
  }
  #home-wrapper .industry-wrapper .industry-list .industry-item {
    font-size: 20px;
    padding: 14px;
  }
  #home-wrapper .industry-wrapper .industry-list .industry-item img {
    margin-bottom: 14px;
  }
  #home-wrapper .about-wrapper .about-info .desc-list .desc-item {
    align-items: flex-start;
  }
  #home-wrapper .news-wrapper .news-content .news-box .news-info h4 {
    font-size: 30px;
  }
  #home-wrapper .news-wrapper .news-content .news-box .news-info p {
    margin: 30px 0;
  }
  #about-wrapper .honor-list .honor-item,
  #about-wrapper .honor-list .honor-item2,
  #about-wrapper .honor-list i {
    width: 100%;
  }
  #about-wrapper .library-list .library-item .library-info {
    padding: 30px;
  }
  #about-wrapper .device-list .device-item,
  #about-wrapper .device-list i {
    width: 100%;
  }
  #about-wrapper .about-section .about-box .about-info .icon-list .icon-item {
    width: 100%;
    margin-bottom: 30px;
  }
  #product-wrapper .product-list .product-item {
    margin-bottom: 30px;
  }
  #product-detail .content-wrapper .header h4 {
    margin: 20px 0;
  }
  #product-detail .content-wrapper .spec-list {
    margin-top: 20px;
  }
  #product-detail .content-wrapper .page-box {
    margin-top: 30px;
    padding: 30px 0;
  }
  #news-detail .content-wrapper .header h4 {
    font-size: 20px;
  }
  #news-detail .content-wrapper .content p {
    font-size: 14px;
    line-height: 26px;
  }
  #contact-wrapper .contact-list .contact-item .contact-info li {
    width: 100%;
  }
  #contact-wrapper .contact-list .contact-item {
    width: 100%;
  }
  #contact-wrapper .contact-list .contact-item:nth-child(2) {
    border: 0;
    padding: 0;
    padding-bottom: 40px;
  }
  #contact-wrapper .contact-list .contact-item:nth-child(3) {
    padding-bottom: 0;
  }
  #contact-wrapper .contact-list {
    margin-top: 30px;
  }
  #contact-wrapper .contact-box:first-child {
    margin-bottom: 30px;
  }
  #contact-wrapper .form-wrapper button {
    width: 140px;
    height: 40px;
    font-size: 16px;
  }
  #contact-wrapper .form-wrapper .form-box .bottom-mes .verify-info img {
    width: 150px;
    margin-top: 20px;
  }
  #global-wrapper h3 {
    font-size: 30px;
  }
  #global-wrapper .desc {
    margin: 0;
    padding: 30px 0;
    background-color: #fff;
    font-size: 16px;
    line-height: 28px;
  }
  #global-wrapper .desc::after {
    display: none;
  }
  #industry-wrapper .industry-box .industry-list {
    margin-top: 30px;
  }
  #industry-wrapper .industry-box .industry-list .industry-item {
    width: 48%;
    padding: 14px;
    font-size: 20px;
  }
  #industry-wrapper .industry-box .industry-list .industry-item img {
    margin-bottom: 14px;
  }
  #industry-wrapper .industry-box h3,
  #industry-wrapper .industry-box2 h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #industry-wrapper .industry-box .main-industry::after {
    content: "";
    width: 100px;
  }
  #industry-wrapper .industry-box .main-industry .main-item {
    width: 100px;
    height: 100px;
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */