﻿@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-09-07 10:41:04
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-12-01 17:43:27
 */

/* 字体 */
@import "../fonts/fonts.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 核心样式 */
@import "../css/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

/* 首页样式 */
.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* banner大图 */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-swiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.banner-swiper .swiper-pagination {
  opacity: 1;
  bottom: 48px;
  display: flex;
  justify-content: center;
}
.banner-swiper .swiper-pagination-bullet {
  width: 17px;
  height: 3px;
  background: #fff;
  opacity: 1;
  border-radius: 0;
}
.banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.banner-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffa200;
}
.banner-swiper:hover .swiper-pagination {
  opacity: 1;
}
/* 箭头 */
.banner-swiper .banner-prev,
.banner-swiper .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 60px;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  outline: none;
  cursor: pointer;
}
.banner-swiper .banner-next {
  left: initial;
  right: 2%;
}
.banner-swiper:hover .banner-next,
.banner-swiper:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 1200px) {
  .banner-swiper .swiper-pagination {
    bottom: 20px;
  }
}
@media (max-width: 991px) {
  .banner-swiper .swiper-pagination {
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .banner-swiper .swiper-pagination {
    bottom: 5px;
  }
}

/* 天正通知 */
.notice {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.notice>.container {
  display: flex;
}
.notice-title {
  width: 112px;
  line-height: 32px;
  padding: 15px 25px 15px 30px;
  background: url(../images/notice-icon.png) no-repeat left center;
  font-size: 14px;
  color: #494949;
  font-weight: bold;
}
.notice-content {
  width: calc(100% - 112px);
  /*  padding-right: 60px;*/
  position: relative;
  margin: 15px 0;
}
.notice-content .swiper {
  width: 100%;
  overflow: hidden;
}
/*.notice-content .swiper>.swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}*/
.notice-content .swiper .swiper-slide {
  width: auto;
  line-height: 32px;
  margin-right: 50px;
}
.notice-content .swiper .swiper-slide>a {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #494949;
}
.notice-content .swiper .swiper-slide>a>span {
  float: left;
  font-size: 14px;
  color: #d50b05;
  margin-right: 5px;
}
.notice-content .swiper .swiper-slide>a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}
.notice-btn {
  width: 60px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.notice-btn>div {
  width: 15px;
  height: 15px;
  margin-left: 15px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.notice-btn>div>img {
  -webkit-filter: drop-shadow(15px 0 #bf0f0f);
  filter: drop-shadow(15px 0 #bf0f0f);
}
.notice-btn>div:hover>img {
  transform: translateX(-15px);
}

@media (max-width: 991px) {
  .notice-content {
    flex: none;
    width: calc(100% - 111px);
  }
}

/* 公司简介 */
.about {
  padding: 60px 0 80px 0;
}
.about-left {
  width: 50%;
  float: left;
  margin-top: 3px;
  position: relative;
}
.about-left>div {
  display: none;
}
.about-left>div:first-child {
  display: block;
}
.about-left .swiper {
  width: 100%;
  overflow: hidden;
}
.about-left .swiper .swiper-slide>a {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.about-left .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 66%;
}
.about-left .swiper .swiper-slide>a>h1 {
  width: 100%;
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  padding: 0 56px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.about-left .prev-button,
.about-left .next-button {
  width: 56px;
  height: 56px;
  font-family: SimSun;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  cursor: pointer;
}
.about-left .next-button {
  left: initial;
  right: 0;
}
.about-left .prev-button::before {
  content: "<";
}
.about-left .next-button::before {
  content: ">";
}

.about-right {
  width: 50%;
  float: right;
  padding-left: 30px;
}
.about-nav {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.about-nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #cacaca;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.about-nav>li {
  float: left;
  margin-right: 70px;
}
.about-nav>li>a {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 22px;
  color: #000;
  padding-bottom: 20px;
  position: relative;
}
.about-nav>li>a::after {
  content: "";
  width: 0;
  height: 4px;
  overflow: hidden;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.about-nav>li.active>a,
.about-nav>li>a:hover {
  color: var(--color-hover);
}
.about-nav>li.active>a::after,
.about-nav>li>a:hover::after {
  width: 100%;
}
.about-box {
  display: block;
  overflow: hidden;
}
.about-box>div {
  display: none;
}
.about-box>div:first-child {
  display: block;
}

.about-text {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 28px;
  height: 224px;
  font-size: 16px;
  color: #515151;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.about-more {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.about-more>a {
  width: 160px;
  height: 46px;
  font-size: 15px;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-more>a>span {
  padding-right: 35px;
  background: url(../images/index-about-jiantou.png) no-repeat center right;
}
.about-more>a:hover {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
}

.about-news-more {
  margin-top: 20px;
}
.about-news {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.about-news>li {
  display: block;
  overflow: hidden;
  line-height: 24px;
  padding: 13px 0;
  border-bottom: 1px dotted #acacac;
}
.about-news>li>div {
  float: right;
  font-size: 16px;
  color: #5d5d5d;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #d0d0d0;
}
.about-news>li>a {
  display: block;
  overflow: hidden;
  color: #2f2f2f;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.about-news>li>a>span {
  font-size: 12px;
  color: #d50b05;
  margin-right: 10px;
}
.about-news>li>a:hover {
  color: #d50b05;
}

@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
  .about-nav>li {
    margin-right: 40px;
  }
  .about-text,
  .about-more {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-nav>li {
    margin-right: 20px;
    line-height: 30px;
  }
  .about-text,
  .about-more {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-left,
  .about-right {
    width: 100%;
  }
  .about-left {
    margin: 0;
  }
  .about-left .swiper .swiper-slide>a>h1 {
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    font-size: 14px;
  }
  .about-left .prev-button,
  .about-left .next-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .about-right {
    padding: 10px 0 0 0;
  }
  .about-nav>li {
    margin-right: 16px;
  }
  .about-nav>li>a {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .about-text {
    margin-top: 10px;
    line-height: 24px;
    height: auto;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  .about-text, .about-more {
    margin-top: 10px;
  }
  .about-more>a {
    width: 120px;
    height: 36px;
    font-size: 13px;
  }

  .about-news-more {
    margin-top: 10px;
  }
  .about-news {
    margin-top: 10px;
  }
  .about-news>li {
    padding: 10px 0;
  }
  .about-news>li>div {
    font-size: 12px;
    padding-left: 5px;
    margin-left: 5px;
  }
  .about-news>li>a {
    font-size: 14px;
  }
}

.index-box {
  width: 100%;
  overflow: hidden;
  background: url(../images/index-bj.jpg) no-repeat center top;
  background-size: cover;
  padding: 75px 0;
}
/* 天正产品及解决方案 */
.product {
  background: none;
}
.product-title {
  line-height: 46px;
  font-size: 30px;
  color: #1d1d1d;
  font-family: "Source Han Sans CN";
  text-align: center;
}
.product-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% + 16px);
  margin-left: -8px;
  margin-top: 40px;
}
.product-box {
  width: calc(25% - 16px);
  margin: 0 8px 20px 8px;
  background-color: #fff;
}
.product-box .img::before {
  padding-top: 56.94445%;
}
.product-box .product-boxs {
  display: block;
  overflow: hidden;
  padding: 30px 20px 40px 20px;
}
.product-box .product-boxs>h1 {
  display: block;
  width: fit-content;
  overflow: hidden;
  line-height: 36px;
  padding-right: 30px;
  font-size: 22px;
  color: #1d1d1d;
  position: relative;
  background: url(../images/product-jiantou.png) no-repeat right center;
}
.product-box .product-boxs>h1 a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}
.product-box .product-boxs>ul {
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.product-box .product-boxs>ul>li {
  display: block;
  overflow: hidden;
  line-height: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: #7b7b7b;
}
.product-box .product-boxs>ul>li>a {
  color: #7b7b7b;
}
.product-box .product-boxs>ul>li>a:hover {
  color: #7b7b7b;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .index-box {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .index-box {
    padding: 30px 0;
  }
  .product-content {
    margin-top: 20px;
  }
  .product-box .product-boxs {
    padding: 20px 15px;
  }
  .product-box .product-boxs>h1 {
    line-height: 30px;
    padding-right: 20px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index-box {
    padding: 15px 0;
  }
  .product-title {
    line-height: 30px;
    font-size: 20px;
  }
  .product-content {
    margin-top: 10px;
  }
  .product-box {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .product-box .product-boxs>h1 {
    font-size: 16px;
  }
  .product-box .product-boxs {
    padding: 10px;
  }
  .product-box .product-boxs>ul {
    margin-top: 10px;
  }
  .product-box .product-boxs>ul>li {
    line-height: 24px;
  }
}

/* 友情链接 */
.links {
  margin-top: 70px;
  background: none;
}
.links-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.links-box {
  width: 18.75%;
  display: flex;
  justify-content: center;
  position: relative;
}
.links-box>div {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.links-box:nth-child(2) {
  width: 41%;
  padding: 0 20px;
}
.links-box:nth-child(2)::before,
.links-box:nth-child(2)::after {
  content: "";
  width: 1px;
  height: 120px;
  background-color: #d3d3d3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.links-box:nth-child(2)::after {
  left: initial;
  right: 0;
}
.links-box:nth-child(2)>div {
  max-width: 214px;
}
.links-icon {
  width: 100%;
  height: 74px;
  overflow: hidden;
  position: relative;
}
.links-icon>img {
  mix-blend-mode: darken;
}
.links-box>div>h1 {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 28px;
  text-align: center;
  font-size: 22px;
  color: #1d1d1d;
}
.links-text {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #6f6f6f;
  text-align: center;
  margin-top: 6px;
}
.links-box>div>a {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 22px;
  text-align: center;
  font-size: 13px;
  color: #474747;
}
.links-box>div>a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .links {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .links {
    margin-top: 30px;
  }
  .links-box {
    width: 25.75%;
  }
}
@media (max-width: 767px) {
  .links {
    margin-top: 15px;
  }
  .links-content {
    margin-top: 10px;
  }
  .links-box {
    width: calc(100% / 3) !important;
    padding: 0 10px;
  }
  .links-icon {
    height: 40px;
  }
  .links-box>div>h1 {
    margin-top: 5px;
    line-height: 24px;
    font-size: 16px;
  }
  .links-text {
    height: auto;
    line-height: 20px;
    font-size: 12px;
    margin-top: 5px;
  }
  .links-box>div>a {
    margin-top: 5px;
    line-height: 20px;
    font-size: 12px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.about-main {
  width: 100%;
  overflow: hidden;
}
.about-banner {
  width: 100%;
  overflow: hidden;
  height: 380px;
  background: url(../images/about-banner.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-banner>.container {
  width: 100%;
  text-align: center;
}
.about-banner>.container>h1 {
  line-height: 46px;
  padding-bottom: 25px;
  position: relative;
  font-family: "Source Han Sans CN Medium";
  font-size: 36px;
  position: relative;
  color: #fff;
  display: none !important;
}
.about-banner>.container>h1::after {
  content: "";
  width: 54px;
  height: 2px;
  background-color: #fff;
  opacity: 0.7;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.about-banner>.container>div {
  display: block;
  overflow: hidden;
  margin-top: 25px;
  line-height: 40px;
  font-size: 36px;
  font-family: "Source Han Sans CN Light";
  color: #fff;
}

@media (max-width: 991px) {
  .about-banner {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .about-banner {
    height: 150px;
  }
  .about-banner>.container>h1 {
    line-height: 30px;
    padding-bottom: 10px;
    font-size: 20px;
  }
  .about-banner>.container>div {
    margin-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
}

/* 公司简介 */
.company {
  background-image: url(../images/honor-bj.jpg);
  padding: 80px 0 95px 0;
}
.company-title {
  display: block;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  line-height: 36px;
  font-size: 30px;
  color: #d50b05;
}
.company-title::after {
  content: "";
  width: 53px;
  height: 1px;
  background-color: #6b6b6b;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.company .company-title {
  width: 50%;
  float: right;
  padding-left: 40px;
  line-height: 38pxt;
  padding-bottom: 20px;
  text-align: left;
}
.company .company-title::after {
  left: 40px;
  transform: initial;
  -webkit-transform: initial;
  -moz-transform: initial;
  -ms-transform: initial;
  -o-transform: initial;
}
.company-content {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.company-left {
  width: 50%;
  overflow: hidden;
  position: relative;
  margin-top: -81px;
}
.company-left::before {
  content: "";
  display: block;
  padding-top: 60.333334%;
}
.company-right {
  width: 50%;
  padding-left: 40px;
}
.company-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #6b6b6b;
}

@media (max-width: 1200px) {
  .company {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .company {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .company {
    padding: 15px 0;
  }
  .company-title {
    padding-bottom: 10px;
    line-height: 30px;
    font-size: 20px;
  }
  .company .company-title {
    width: 100%;
    padding-left: 0;
    line-height: 30px;
    padding-bottom: 10px;
    text-align: center;
  }
  .company .company-title::after {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .company-content {
    margin-top: 10px;
  }
  .company-left {
    width: 100%;
    margin-top: 0;
  }
  .company-right {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .company-text {
    line-height: 24px;
    font-size: 14px;
  }
}

/* 发展历程 */
.history {
  /*background: url(../images/history-bj.jpg) no-repeat center top;*/
  background-size: cover;
  padding: 80px 0;
}
.history-heng {
  width: 100%;
  height: 1px;
  background-color: #d50b05;
  position: relative;
}
.history-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  position: relative;
}
.history-even {
  width: 100%;
  overflow: hidden;
  margin-bottom: -40px;
}
.history-even .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.history-year {
  width: 100%;
  font-weight: bold;
  padding: 60px 0 0 0;
  overflow: hidden;
  color: #d50b05;
  line-height: 40px;
  font-size: 24px;
  text-align: center;
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.history-year::before {
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  background-color: #d50b05;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.history-year::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #d50b05;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 55px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.history-box {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.history-img {
  width: 30%;
  overflow: hidden;
  position: relative;
}
.history-img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.history-textlist {
  width: 70%;
  padding: 0 15px;
  list-style-type: disc;
}
.history-textlist>li {
  display: block;
  overflow: hidden;
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.history-textlist>li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.history-textlist>p {
  display: block;
  overflow: hidden;
  padding-left: 15px;
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.history-textlist>p::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.history-odd {
  width: calc(calc(100% / 3) * 2);
  overflow: hidden;
  margin: -40px auto 0 auto;
}
.history-odd .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; */
}
.history-odd .swiper-slide .history-year {
  padding: 0 0 60px 0;
}
.history-odd .swiper-slide .history-year::before {
  top: initial;
  bottom: 0;
}
.history-odd .swiper-slide .history-year::after {
  top: initial;
  bottom: 55px;
}

.history-content .prev-button,
.history-content .next-button {
  width: 42px;
  height: 42px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #888;
  font-weight: bold;
  font-family: SimSun;
  position: absolute;
  left: 0;
  top: 50%;
  cursor: pointer;
  background-color: #fff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 9;
}
.history-content .next-button {
  left: initial;
  right: 0;
}
.history-content .prev-button::before {
  content: "<";
}
.history-content .next-button::before {
  content: ">";
}
.history-content .prev-button:hover,
.history-content .next-button:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  color: #fff;
}
.history-content .prev-button.swiper-button-disabled,
.history-content .next-button.swiper-button-disabled {
  display: flex;
  cursor: default;
  opacity: 1;
}
.history-content .prev-button.swiper-button-disabled:hover,
.history-content .next-button.swiper-button-disabled:hover {
  background-color: #fff;
  border-color: #ccc;
  color: #888;
}

@media (max-width: 1200px) {
  .history {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .history {
    padding: 30px 0;
  }
  .history-box {
    flex-direction: column-reverse;
  }
  .history-textlist {
    width: 100%;
    padding: 0 0 0 10px;
    margin-bottom: 10px;
  }
  .history-textlist>li {
    font-size: 12px;
    line-height: 20px;
    padding-left: 10px;
  }
  .history-textlist>li::before {
    top: 8px;
  }
  .history-odd .history-box {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .history {
    padding: 15px 0;
  }
  .history-content {
    margin-top: 10px;
  }
  .history-even {
    margin-bottom: -30px;
  }
  .history-box {
    flex-direction: row;
  }
  .history-year {
    width: 50%;
    padding: 20px 0 0 0;
    line-height: 30px;
    font-size: 16px;
  }
  .history-year::before {
    height: calc(100% - 30px);
  }
  .history-year::after {
    width: 6px;
    height: 6px;
    border: 1px solid #d50b05;
    top: 18px;
  }
  .history-textlist {
    margin: 0;
  }

  .history-odd {
    width: 100%;
    margin: -30px auto 0 auto;
  }
  .history-odd .swiper-slide {
    align-items: flex-end;
  }
  .history-odd .history-box {
    flex-direction: row-reverse;
  }
  .history-odd .swiper-slide .history-year {
    padding: 0 0 20px 0;
  }
  .history-odd .swiper-slide .history-year::after {
    top: initial;
    bottom: 18px;
  }

  .history-content .prev-button, .history-content .next-button {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

}

/* 荣誉资质 */
.honor {
  background-image: url(../images/honor-bj.jpg);
  padding: 50px 0 80px 0;
}
.honor-brand {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-top: 20px;
}
.honor-brand>li {
  width: calc(calc(100% / 6) - 10px);
  margin: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.honor-brand>li::before {
  content: "";
  display: block;
  padding-top: 35%;
}

.honor-content {
  display: flex;
  flex-direction: column;
  margin-top: 25px
}
.honor-nav {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.honor-nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.honor-nav>li {
  line-height: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-right: 40px;
  padding-bottom: 1px;
  position: relative;
  cursor: pointer;
}
.honor-nav>li::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.honor-nav>li:hover,
.honor-nav>li.honor-active {
  color: var(--color-hover);
}
.honor-nav>li:hover::after,
.honor-nav>li.honor-active::after {
  width: 100%;
}

.honor-scroll {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}
.honor-scroll>div {
  display: none;
  width: 100%;
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
.honor-scroll>div:first-child {
  display: block;
}
.honor-textlist {
  display: flex;
  flex-wrap: wrap;
}
.honor-scroll>div::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
  margin: 5px 0;
}
.honor-scroll>div::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  background: #535353;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.honor-scroll>div::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #EDEDED;
}
.honor-textlist>li {
  width: calc(33.33333% - 10px);
  float: left;
  margin: 5px;
  border: 1px solid #ccc;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  background-color: #fff;
}

@media (max-width: 1200px) {
  .honor-textlist>li {
    width: calc(33.33333% - 10px);
  }
}
@media (max-width: 991px) {
  .honor-brand>li {
    width: calc(25% - 10px);
  }
  .honor-textlist>li {
    width: calc(calc(100% / 3) - 10px);
  }
}
@media (max-width: 767px) {
  .honor {
    padding: 15px 0;
  }
  .honor-brand {
    width: calc(100% + 6px);
    margin-left: -3px;
    margin-top: 10px;
  }
  .honor-brand>li {
    width: calc(calc(100% / 3) - 6px);
    margin: 3px;
  }
  .honor-content {
    margin-top: 10px;
  }
  .honor-nav>li {
    line-height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }
  .honor-scroll {
    margin-top: 10px;
  }
  .honor-textlist>li {
    width: calc(50% - 6px);
    margin: 3px;
    font-size: 13px;
    line-height: 20px;
  }
}
/* END-关于我们 */

/* 产品及解决方案 */
.product-main {
  width: 100%;
  overflow: hidden;
}
.product-banner {
  width: 100%;
  overflow: hidden;
  height: 380px;
  background: url(../images/product-banner.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-banner>.container {
  width: 100%;
  text-align: center;
}
.product-banner>.container>h1 {
  line-height: 46px;
  padding-bottom: 25px;
  position: relative;
  font-family: "Source Han Sans CN Medium";
  font-size: 36px;
  position: relative;
  color: #fff;
  display:none;
}
.product-banner>.container>h1::after {
  content: "";
  width: 54px;
  height: 2px;
  background-color: #fff;
  opacity: 0.7;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.product-banner>.container>div {
  display: block;
  overflow: hidden;
  margin-top: 25px;
  line-height: 36px;
  font-size: 36px;
  font-family: "Source Han Sans CN Light";
  color: #fff;
}

.product-title {
  width: 100%;
  overflow: hidden;

  padding: 30px 0 25px 0;
}
.product-title1 {
  background-color: #f3f3f3;
}
.product-title ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-title ul>li {
  float: left;
  margin: 0 68px;
}
.product-title ul>li>a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 24px;
  color: #1f1f1f;
}
.product-title ul>li>a::after {
  content: "";
  width: 0;
  height: 2px;
  border-top: 1px solid #eccbca;
  border-bottom: 1px solid #d50b05;
  overflow: hidden;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.product-title ul>li>a:hover,
.product-title ul>li.product-active>a {
  color: #d50b05;
}
.product-title ul>li>a:hover::after,
.product-title ul>li.product-active>a::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .product-title {
    padding: 25px 0;
  }
  .product-title ul>li {
    margin: 0 50px;
  }
}
@media (max-width: 991px) {
  .product-banner {
    height: 300px;
  }
  .product-title {
    padding: 20px 0;
  }
  .product-title ul>li {
    margin: 0 30px;
  }
}
@media (max-width: 767px) {
  .product-banner {
    height: 150px;
  }
  .product-banner>.container>h1 {
    line-height: 30px;
    padding-bottom: 10px;
    font-size: 20px;
  }
  .product-banner>.container>div {
    margin-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }

  .product-title {
    padding: 10px 0;
  }
  .product-title ul>li {
    width: calc(100% / 3);
    margin: 0;
  }
  .product-title ul>li>a {
    height: 34px;
    line-height: 34px;
    font-size: 16px;
  }
}

/* 信息 */
/* TOPView */
.TOPView {
  padding: 80px 0 90px 0;
}
.TOPView-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 32px;
  font-size: 30px;
  color: #2b2b2b;
  font-family: "Source Han Sans CN Medium";
}
.TOPView .swiper {
  width: 100%;
  margin-top: 50px;
}
.TOPView .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
}
.TOPView .swiper .swiper-slide .img {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}
.TOPView .swiper .swiper-slide .img::before {
  padding-top: 49.63504%;
}
.TOPView .swiper .swiper-slide .TOPView-box {
  width: 100%;
  flex: 1;
  background-image: linear-gradient(#ececec, #fff);
  padding: 20px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.TOPView .swiper .swiper-slide .TOPView-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  color: #595959;
  font-family: "Source Han Sans CN Normal";
}
.TOPView .swiper .swiper-slide .TOPView-box>h1>span {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 20px;
  color: #090909;
  font-family: "Source Han Sans CN Medium";
  margin-bottom: 5px;
}
.TOPView .swiper .swiper-slide .TOPView-box>ul {
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.TOPView .swiper .swiper-slide .TOPView-box>ul>li {
  display: block;
  overflow: hidden;
  line-height: 30px;
}
.TOPView .swiper .swiper-slide .TOPView-box>ul>li>a {
  font-size: 16px;
  color: #343434;
}
.TOPView .swiper .swiper-slide .TOPView-box>ul>li>a>span {
  float: left;
  color: #d50b05;
  font-size: 12px;
  margin-right: 5px;
}
.TOPView .swiper .swiper-slide .TOPView-box>ul>li>a:hover {
  color: #d50b05;
  text-decoration: underline;
}
.TOPView .swiper .swiper-slide .TOPView-box .txt {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 30px;
  font-size: 16px;
}
.TOPView .swiper .swiper-slide .TOPView-box .txt span {
  float: left;
  color: #d50b05 !important;
  margin-right: 5px !important;
}






.TOPView-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  width: calc(100% + 36px);
  margin-left: -18px;
}
.TOPView-list>li {
  width: calc(25% - 36px);
  margin: 0 18px;
  display: flex;
  flex-direction: column;
}
.TOPView-list>li .img {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}
.TOPView-list>li .img::before {
  padding-top: 49.63504%;
}
.TOPView-list>li .TOPView-box {
  width: 100%;
  flex: 1;
  background-image: linear-gradient(#ececec, #fff);
  padding: 20px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.TOPView-list>li .TOPView-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  color: #595959;
  font-family: "Source Han Sans CN Normal";
}
.TOPView-list>li .TOPView-box>h1>span {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 20px;
  color: #090909;
  font-family: "Source Han Sans CN Medium";
  margin-bottom: 5px;
}
.TOPView-list>li .TOPView-box>ul {
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.TOPView-list>li .TOPView-box>ul>li {
  display: block;
  overflow: hidden;
  line-height: 30px;
}
.TOPView-list>li .TOPView-box>ul>li>a {
  font-size: 16px;
  color: #343434;
}
.TOPView-list>li .TOPView-box>ul>li>a>span {
  float: left;
  color: #d50b05;
  font-size: 12px;
  margin-right: 5px;
}
.TOPView-list>li .TOPView-box>ul>li>a:hover {
  color: #d50b05;
  text-decoration: underline;
}

.TOPView-list>li .TOPView-box .txt {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 30px;
  font-size: 16px;
}
.TOPView-list>li .TOPView-box .txt span {
  float: left;
  color: #d50b05 !important;
  margin-right: 5px !important;
}

.TOPView-more {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.TOPView-more>a {
  line-height: 48px;
  position: relative;
  font-size: 17px;
  color: #d50b05;
  font-weight: bold;
  padding-right: 30px;
  background: url(../images/topview-icon.png) no-repeat right center;
}
.TOPView-more>a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-hover);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1200px) {
  .TOPView {
    padding: 50px 0;
  }

  .TOPView .swiper .swiper-slide .TOPView-box {
    padding: 15px;
    padding-bottom: 20px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>h1>span {
    font-size: 18px;
  }


  .TOPView-list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .TOPView-list>li {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .TOPView-list>li .TOPView-box {
    padding: 15px;
    padding-bottom: 20px;
  }
  .TOPView-list>li .TOPView-box>h1>span {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .TOPView {
    padding: 30px 0;
  }

  .TOPView .swiper {
    margin-top: 30px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box {
    padding: 10px;
    padding-bottom: 15px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>h1 {
    line-height: 16px;
    font-size: 12px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>h1>span {
    font-size: 14px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>ul>li {
    line-height: 24px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>ul>li>a {
    font-size: 12px;
  }





  .TOPView-list {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-top: 30px;
  }
  .TOPView-list>li {
    width: calc(25% - 20px);
    margin: 0 10px;
  }
  .TOPView-list>li .TOPView-box {
    padding: 10px;
    padding-bottom: 15px;
  }
  .TOPView-list>li .TOPView-box>h1 {
    line-height: 16px;
    font-size: 12px;
  }
  .TOPView-list>li .TOPView-box>h1>span {
    font-size: 14px;
  }
  .TOPView-list>li .TOPView-box>ul>li {
    line-height: 24px;
  }
  .TOPView-list>li .TOPView-box>ul>li>a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .TOPView {
    padding: 15px 0;
  }
  .TOPView-title {
    line-height: 30px;
    font-size: 20px;
  }

  .TOPView .swiper {
    margin-top: 10px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box {
    padding: 5px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>h1 {
    line-height: 14px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>h1>span {
    line-height: 20px;
    margin: 0;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>ul {
    margin-top: 5px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box>ul>li {
    line-height: 20px;
  }
  .TOPView .swiper .swiper-slide .TOPView-box .txt {
    margin-top: 5px;
    line-height: 24px;
    font-size: 14px;
  }




  .TOPView-list {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    justify-content: space-between;
  }
  .TOPView-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .TOPView-list>li .TOPView-box {
    padding: 5px;
  }
  .TOPView-list>li .TOPView-box>h1 {
    line-height: 14px;
  }
  .TOPView-list>li .TOPView-box>h1>span {
    line-height: 20px;
    margin: 0;
  }
  .TOPView-list>li .TOPView-box>ul {
    margin-top: 5px;
  }
  .TOPView-list>li .TOPView-box>ul>li {
    line-height: 20px;
  }

  .TOPView-more {
    margin-top: 10px;
  }
  .TOPView-more>a {
    line-height: 30px;
    font-size: 14px;
  }
  .TOPView-list>li .TOPView-box .txt {
    font-size: 12px;
    line-height: 22px;
  }
}

/* 系统集成业务 */
.business {
  background-image: url(../images/info-business-bj2.png), url(../images/info-business-bj.jpg);
  background-position: right center, center center;
  background-size: 55.7% 100%, cover;
  padding: 85px 0 90px 0;
}
.business .TOPView-title {
  line-height: 40px;
}
.business-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.business-left {
  width: 23.75%;
  display: flex;
  flex-direction: column;
}
.business-left>li {
  width: calc(100% - 44px);
  border-bottom: 1px solid #fff;
}
.business-left>li>a {
  display: block;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0 20px;
}
.business-left>li>a>span {
  display: block;
  overflow: hidden;
  background: url(../images/index-about-jiantou.png) no-repeat 150% center;
  height: 68px;
  line-height: 68px;
  font-size: 18px;
  color: #252525;
  font-family: "Source Han Sans CN Medium";
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.business-left>li:first-child>a {
  border-radius: 0 10px 0 0;
  -webkit-border-radius: 0 10px 0 0;
  -moz-border-radius: 0 10px 0 0;
  -ms-border-radius: 0 10px 0 0;
  -o-border-radius: 0 10px 0 0;
}
.business-left>li:last-child {
  border-bottom: none;
}
.business-left>li:last-child>a {
  border-radius: 0 0 10px 0;
  -webkit-border-radius: 0 0 10px 0;
  -moz-border-radius: 0 0 10px 0;
  -ms-border-radius: 0 0 10px 0;
  -o-border-radius: 0 0 10px 0;
}
.business-left>li:hover,
.business-left>li.business-active {
  width: 100%;
}
.business-left>li:hover>a,
.business-left>li.business-active>a {
  background-color: var(--color-hover);
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
}
.business-left>li:hover>a>span,
.business-left>li.business-active>a>span {
  color: #fff;
  background: url(../images/index-about-jiantou.png) no-repeat right center;
  padding-right: 40px;
}

.business-right {
  width: 71.5%;
  display: flex;
}
.business-right>div {
  width: 100%;
  height: 100%;
  display: none;
}
.business-right>div:first-child {
  display: block;
}
.business-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
.business-img {
  width: 56.5%;
  overflow: hidden;
  position: relative;
}
.business-texts {
  width: 43.5%;
  padding: 40px;
  padding-left: 35px;
}
.business-texts>h1 {
  display: block;
  overflow: hidden;
  padding: 25px 0 5px 0;
  line-height: 30px;
  font-size: 18px;
  color: #252525;
  font-weight: bold;
  position: relative;
  z-index: 0;
}
.business-texts>h1>span {
  float: right;
  font-family: "AlimamaShuHeiTi Bold";
  font-size: 120px;
  line-height: 90px;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.business-text {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  height: 168px;
  line-height: 24px;
  font-size: 16px;
  color: #767676;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.business-more {
  display: block;
  overflow: hidden;
  margin-top: 25px;
}
.business-more>a {
  width: 134px;
  height: 44px;
  border: 2px solid var(--color-main);
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
  font-size: 14px;
  color: #fff;
}
.business-more>a:hover {
  background-color: #fff;
  color: var(--color-hover);
}

@media (max-width: 1200px) {
  .business {
    padding: 50px 0;
  }
  .business-left {
    width: 25.75%;
  }
  .business-texts {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .business {
    padding: 30px 0;
  }
  .business-content {
    margin-top: 30px;
  }
  .business-left {
    width: 34%;
  }
  .business-right {
    width: 64%;
  }
  .business-img {
    width: 100%;
  }
  .business-img::before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .business-texts {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .business {
    padding: 15px 0;
    background-image: url(../images/info-business-bj.jpg);
    background-position: center center;
    background-size: cover;
  }
  .business-content {
    margin-top: 10px;
  }
  .business-left {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .business-left>li {
    width: calc(50% - 1px);
    float: left;
  }
  .business-left>li>a {
    padding: 0 15px;
  }
  .business-left>li>a>span {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .business-left>li:hover,
  .business-left>li.business-active {
    width: calc(50% - 1px);
  }
  .business-left>li:hover>a>span, .business-left>li.business-active>a>span {
    padding-right: 30px;
  }
  .business-right {
    width: 100%;
    margin-top: 10px;
  }
  .business-texts {
    padding: 15px;
  }
  .business-texts>h1 {
    padding: 5px 0;
    line-height: 24px;
    font-size: 16px;
  }
  .business-texts>h1>span {
    font-size: 80px;
    line-height: 58px;
  }
  .business-text {
    margin-top: 10px;
    height: auto;
    line-height: 22px;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  .business-more {
    margin-top: 10px;
  }
  .business-more>a {
    width: 104px;
    height: 34px;
  }
}

/* 综合服务产品 */
.fwcp {
  padding: 85px 0;
}
.fwcp-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 14px);
  margin-left: -7px;
  margin-top: 50px;
}
.fwcp-list>li {
  width: calc(20% - 14px);
  margin: 0 7px 15px 7px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fwcp-list>li .fwcp-box {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding-bottom: 30px;
}
.fwcp-list>li .fwcp-box .fwcp-icon {
  width: 100%;
  max-width: 85px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}
.fwcp-list>li .fwcp-box .fwcp-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.fwcp-list>li .fwcp-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  margin-top: 15px;
  font-size: 20px;
  color: #252525;
  font-family: "Source Han Sans CN Medium";
  font-weight: bold;
  text-align: center;
}
.fwcp-list>li .fwcp-box .fwcp-text {
  display: block;
  overflow: hidden;
  line-height: 24px;
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
  color: #7e7e7e;
}
.fwcp-list>li .fwcp-more {
  width: 100%;
  border-top: 1px solid #dfdfdf;
  overflow: hidden;
}
.fwcp-list>li .fwcp-more>a {
  width: 100%;
  height: 58px;
  display: flex;
  overflow: hidden;
  position: relative;
}
.fwcp-list>li .fwcp-more>a>img {
  filter: drop-shadow(0 58px var(--color-hover));
  -webkit-filter: drop-shadow(0 58px var(--color-hover));
  transition: initial;
}
.fwcp-list>li .fwcp-more>a:hover>img {
  margin-top: -40px;
}


@media (max-width: 1200px) {
  .fwcp {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .fwcp {
    padding: 30px 0;
  }
  .fwcp-list {
    margin-top: 30px;
  }
  .fwcp-list>li {
    width: calc(calc(100% / 3) - 14px);
  }
}
@media (max-width: 767px) {
  .fwcp {
    padding: 15px 0;
  }
  .fwcp-list {
    margin-top: 15px;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .fwcp-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .fwcp-list>li .fwcp-box {
    padding: 10px;
  }
  .fwcp-list>li .fwcp-box>h1 {
    line-height: 30px;
    margin-top: 5px;
    font-size: 16px;
  }
  .fwcp-list>li .fwcp-box .fwcp-text {
    line-height: 22px;
    margin-top: 5px;
    font-size: 13px;
  }
  .fwcp-list>li .fwcp-more>a {
    height: 40px;
  }
  .fwcp-list>li .fwcp-more>a>img {
    filter: drop-shadow(0 40px var(--color-hover));
    -webkit-filter: drop-shadow(0 40px var(--color-hover));
  }
  .fwcp-list>li .fwcp-more>a:hover>img {
    margin-top: -30px;
  }
}

/* 代理合作 */
.agent {
  background-color: #f3f3f3;
  padding: 70px 0;
}
.agent-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-top: 55px;
}
.agent-list>li {
  width: calc(calc(100% / 3) - 30px);
  margin: 0 15px 30px 15px;
}
.agent-list>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 94px;
  line-height: 24px;
  padding: 35px;
  font-size: 20px;
  color: #3c3c3c;
  text-align: center;
  font-weight: bold;
}
.agent-list>li>a:hover {
  background-color: var(--color-hover);
  color: #fff;
}

@media (max-width: 1200px) {
  .agent {
    padding: 50px 0;
  }
  .agent-list {
    margin-top: 50px;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .agent-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin: 0 10px 20px 10px;
  }
  .agent-list>li>a {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .agent {
    padding: 30px 0;
  }
  .agent-list {
    margin-top: 30px;
  }

}
@media (max-width: 767px) {
  .agent {
    padding: 15px 0;
  }
  .agent-list {
    margin-top: 15px;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .agent-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .agent-list>li>a {
    min-height: 40px;
    line-height: 20px;
    padding: 10px;
    font-size: 14px;
  }
}
/* END-信息 */

/* 软件 */
.solution-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  font-family: "Source Han Sans CN Medium";
  color: #2b2b2b;
  font-weight: 600;
}

/* 核心产品解决方案 */
.solution {
  padding: 65px 0 40px 0;
}
.solution-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 34px);
  margin-left: -17px;
  margin-top: 50px;
}
.solution-list>li {
  width: calc(calc(100% / 3) - 34px);
  margin-bottom: 45px;
  display: flex;
  margin: 0 17px 45px 17px;
}
.solution-list>li>a {
  display: flex;
  flex-direction: column;
}
.solution-list>li .img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.solution-list>li .img::before {
  content: "";
  display: block;
  padding-top: 57.29443%;
}
.solution-list>li .solution-box {
  display: block;
  overflow: hidden;
  margin-top: 25px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e2e2;
}
.solution-list>li .solution-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 20px;
  color: #2b2b2b;
  font-family: "Source Han Sans CN Medium";
  font-weight: bold;
}
.solution-list>li .solution-box>div {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #626262;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.solution-list>li>a:hover .img>img {
  transform: scale(1.06);
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
}
.solution-list>li>a:hover .solution-box>h1 {
  color: var(--color-hover);
}

@media (max-width: 1200px) {
  .solution {
    padding: 50px 0 40px 0;
  }
  .solution-list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .solution-list>li {
    width: calc(calc(100% / 3) - 30px);
    margin-bottom: 40px;
    margin: 0 15px 40px 15px;
  }
}
@media (max-width: 991px) {
  .solution {
    padding: 30px 0;
  }
  .solution-list {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-top: 30px;
  }
  .solution-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin-bottom: 30px;
    margin: 0 10px 30px 10px;
  }
}
@media (max-width: 767px) {
  .solution {
    padding: 15px 0;
  }
  .solution-title {
    line-height: 30px;
    font-size: 20px;
  }
  .solution-list {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    justify-content: space-between;
  }
  .solution-list>li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    margin: 0 0 10px 0;
  }
  .solution-list>li .solution-box {
    margin-top: 5px;
    padding-bottom: 5px;
  }
  .solution-list>li .solution-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .solution-list>li .solution-box>div {
    height: 66px;
    line-height: 22px;
    font-size: 13px;
    margin-top: 5px;
  }
}

/* 影像工作流 */
.workflow {
  background-image: url(../images/software-work-bj.jpg);
  padding: 60px 0;
}
.workflow .solution-title {
  color: #fff;
}
.workflow-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-top: 50px;
}
.workflow-list>li {
  width: calc(25% - 32px);
  margin: 0 16px 20px 16px;
}
.workflow-list>li>a {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
}
.workflow-list>li>a .img::before {
  padding-top: 62.3188406%;
}
.workflow-list>li>a .workflow-box {
  display: block;
  overflow: hidden;
  padding: 20px;
}
.workflow-list>li>a .workflow-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 20px;
  color: #1c1c1c;
  font-family: "Source Han Sans CN Medium";
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-bottom: 20px;
}
.workflow-list>li>a .workflow-box>h1::after {
  content: "";
  width: 36px;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  bottom: 0;
}
.workflow-list>li>a .workflow-box .workflow-text {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  height: 100px;
  line-height: 25px;
  font-size: 15px;
  color: #505050;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.workflow-list>li>a:hover .workflow-box>h1 {
  color: var(--color-hover);
}
.workflow-list>li>a:hover .workflow-box>h1::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .workflow {
    padding: 50px 0;
  }
  .workflow-list {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .workflow-list>li {
    width: calc(25% - 20px);
    margin: 0 10px 20px 10px;
  }
}
@media (max-width: 991px) {
  .workflow {
    padding: 30px 0;
  }
  .workflow-list {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .workflow {
    padding: 15px 0;
  }
  .workflow-list {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
    justify-content: space-between;
  }
  .workflow-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
    display: flex;
  }
  .workflow-list>li>a .workflow-box {
    padding: 10px;
  }
  .workflow-list>li>a .workflow-box>h1 {
    font-size: 16px;
    padding-bottom: 5px;
  }
  .workflow-list>li>a .workflow-box .workflow-text {
    margin-top: 5px;
    height: auto;
    line-height: 24px;
    font-size: 13px;
    -webkit-line-clamp: initial;
  }
}

/* 中间业务 */
.service {
  padding: 70px 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 26px);
  margin-left: -13px;
  margin-top: 45px;
}
.service-list>li {
  width: calc(25% - 26px);
  margin: 0 13px 30px 13px;
  display: flex;
}
.service-list>li>a {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.service-list>li>a .img {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}
.service-list>li>a .img::before {
  padding-top: 53.380783%;
}
.service-list>li>a .service-box {
  display: block;
  overflow: hidden;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  padding: 30px 25px 15px 25px;
}
.service-list>li>a .service-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 20px;
  color: #2b2b2b;
  font-family: "Source Han Sans CN Medium";
  text-overflow: ellipsis;
  white-space: nowrap;
}
.service-list>li>a .service-box .service-text {
  display: block;
  overflow: hidden;
  height: 96px;
  line-height: 24px;
  margin-top: 10px;
  font-size: 15px;
  color: #616161;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.service-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.service-more>a {
  float: left;
  line-height: 44px;
  border-bottom: 1px solid #d6130d;
  font-size: 17px;
  color: #d50b05;
  font-weight: bold;
  padding-right: 44px;
  background: url(../images/topview-icon.png) no-repeat right center;
}

@media (max-width: 1200px) {
  .service {
    padding: 50px 0;
  }
  .service-more {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .service {
    padding: 30px 0;
  }
  .service-list {
    margin-top: 30px;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .service-list>li {
    width: calc(25% - 20px);
    margin: 0 10px 20px 10px;
  }
  .service-list>li>a .service-box {
    padding: 15px;
  }
  .service-more {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .service {
    padding: 15px 0;
  }
  .service-list {
    margin-top: 15px;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .service-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .service-list>li>a .service-box {
    padding: 10px;
  }
  .service-list>li>a .service-box>h1 {
    line-height: 30px;
    font-size: 16px;
  }
  .service-list>li>a .service-box .service-text {
    height: 80px;
    line-height: 20px;
    margin-top: 5px;
    font-size: 13px;
    -webkit-line-clamp: 4;
  }

  .service-more {
    margin-top: 10px;
  }
  .service-more>a {
    line-height: 34px;
    font-size: 14px;
    padding-right: 30px;
  }
}
/* END-软件 */

/* 智能 */
/* 解决方案 */
.mind {
  padding: 70px 0 85px 0;
}
.mind-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  color: #2b2b2b;
  font-weight: bold;
  font-family: "Source Han Sans CN Medium";
}
.mind-content {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 50px 40px;
  background: url(../images/intellect-solution-bj.jpg) no-repeat center center;
  background-size: cover;
}
.mind-left {
  width: 47%;
}
.mind-left>.mind-box>.mind-box-list>h1 {
  display: block;
  overflow: hidden;
  padding: 20px 0 0 15px;
  color: #fff;
  line-height: 26px;
  font-size: 17px;
  font-weight: bold;
}
.mind-left>.mind-box>.mind-box-list>h1>span {
  display: block;
  overflow: hidden;
  line-height: 40px;
  margin-bottom: 10px;
  font-size: 30px;
  font-family: "Source Han Sans CN Medium";
}
.mind-left .mind-text {
  display: block;
  overflow: hidden;
  margin-top: 35px;
  padding-left: 15px;
  min-height: 144px;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
}
.mind-left .mind-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: 10px;
}
.mind-left .mind-list>li {
  width: calc(calc(100% / 3) - 20px);
  margin: 0 10px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.mind-left .mind-list>li::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.mind-left .mind-list>li>h1 {
  position: absolute;
  inset: 10px;
  background-color: #0a1744;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  line-height: 24px;
  color: #fff;
  font-size: 16px;
  font-family: "Source Han Sans CN Medium";
}
.mind-left .mind-list>li>h1>span {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Source Han Sans CN Medium";
}
.mind-left .mind-list>li>.mindh1 {
  background-color: var(--color-hover);
}

.mind-right {
  width: 49%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.mind-right::before {
  content: "";
  display: block;
  padding-top: 77.91971%;
}

@media (max-width: 1200px) {
  .mind {
    padding: 50px 0;
  }
  .mind-content {
    padding: 30px;
  }
  .mind-left {
    width: 49%;
  }
}
@media (max-width: 991px) {
  .mind {
    padding: 30px 0;
  }
  .mind-content {
    padding: 15px;
  }
  .mind-left {
    width: 50%;
  }
  .mind-left>h1 {
    padding: 10px 0 0 0;
    line-height: 24px;
    font-size: 14px;
  }
  .mind-left>h1>span {
    line-height: 30px;
    margin-bottom: 0;
    font-size: 20px;
  }
  .mind-left .mind-text {
    margin-top: 20px;
    padding-left: 0;
  }
  .mind-left .mind-list {
    width: calc(100% + 10px);
    margin-left: -5px;
  }
  .mind-left .mind-list>li {
    width: calc(calc(100% / 3) - 10px);
    margin: 0 5px;
  }
  .mind-left .mind-list>li>h1 {
    inset: 5px;
    line-height: 20px;
    font-size: 12px;
  }
  .mind-left .mind-list>li>h1>span {
    line-height: 24px;
    font-size: 16px;
  }

  .mind-right {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .mind {
    padding: 15px 0;
  }
  .mind-title {
    line-height: 30px;
    font-size: 20px;
  }
  .mind-content {
    margin-top: 10px;
    padding: 10px;
    flex-direction: column-reverse;
  }
  .mind-left {
    width: 100%;
  }
  .mind-left>h1 {
    line-height: 20px;
    font-size: 12px;
  }
  .mind-left>h1>span {
    line-height: 24px;
    font-size: 16px;
  }
  .mind-left .mind-text {
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
    min-height: initial;
  }

  .mind-right {
    width: 100%;
  }
}

/* 产品服务 */
.mind-cpfw {
  background-image: url(../images/intellect-cpfw-bj.jpg);
  padding: 80px 0;
}
.mind-cpfw-conent {
  display: flex;
  position: relative;
  margin-top: 40px;
}
.mind-cpfw-conent .swiper {
  width: calc(100% + 20px);
  padding: 0 20px 20px 0;
}
.mind-cpfw-conent .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f5f5;
  padding: 20px;
  padding-bottom: 35px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.mind-cpfw-conent .swiper .swiper-slide .mind-cpfw-icon {
  width: 100%;
  max-width: 85px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-main);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.mind-cpfw-conent .swiper .swiper-slide .mind-cpfw-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.mind-cpfw-conent .swiper .swiper-slide>h1 {
  display: block;
  line-height: 34px;
  margin: 10px 0;
  text-align: center;
  font-family: "Source Han Sans CN Medium";
  font-size: 22px;
  color: #d50b04;
  font-weight: bold;
}
.mind-cpfw-conent .swiper .swiper-slide .mind-cpfw-title {
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #ededed;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
  padding: 15px;
  font-size: 17px;
  line-height: 24px;
  color: #4a4a4a;
  font-weight: bold;
}
.mind-cpfw-conent .swiper .swiper-slide .mind-cpfw-text {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 15px;
  color: #464646;
  margin-top: 15px;
}
.mind-cpfw-conent .prev-button,
.mind-cpfw-conent .next-button {
  position: absolute;
  left: -95px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-family: SimSun;
  font-size: 72px;
  color: #898989;
  font-weight: bold;
  z-index: 5;
  cursor: pointer;
}
.mind-cpfw-conent .next-button {
  left: initial;
  right: -95px;
}
.mind-cpfw-conent .prev-button::before {
  content: "<";
}
.mind-cpfw-conent .next-button::before {
  content: ">";
}
.mind-cpfw-conent .prev-button:hover,
.mind-cpfw-conent .next-button:hover {
  color: var(--color-hover);
}

@media (max-width: 1400px) {
  .mind-cpfw-conent .prev-button,
  .mind-cpfw-conent .next-button {
    left: -40px;
  }
  .mind-cpfw-conent .next-button {
    left: initial;
    right: -40px;
  }
}
@media (max-width: 1200px) {
  .mind-cpfw {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .mind-cpfw {
    padding: 30px 0;
  }
  .mind-cpfw-conent {
    margin-top: 20px;
  }
  .mind-cpfw-conent .prev-button,
  .mind-cpfw-conent .next-button {
    left: -30px;
    font-size: 60px;
  }
  .mind-cpfw-conent .next-button {
    left: initial;
    right: -30px;
  }
}
@media (max-width: 767px) {
  .mind-cpfw {
    padding: 15px 0;
  }
  .mind-cpfw-conent {
    margin-top: 10px;
    padding: 0 10px;
  }
  .mind-cpfw-conent .swiper {
    width: 100%;
    padding: 0;
  }
  .mind-cpfw-conent .swiper .swiper-slide {
    padding: 10px;
  }
  .mind-cpfw-conent .swiper .swiper-slide>h1 {
    line-height: 24px;
    margin: 5px 0;
    font-size: 16px;
  }
  .mind-cpfw-conent .swiper .swiper-slide .mind-cpfw-title {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .mind-cpfw-conent .swiper .swiper-slide .mind-cpfw-text {
    line-height: 22px;
    font-size: 13px;
    margin-top: 10px;
  }

  .mind-cpfw-conent .prev-button,
  .mind-cpfw-conent .next-button {
    left: -10px;
    font-size: 30px;
  }
  .mind-cpfw-conent .next-button {
    left: initial;
    right: -10px;
  }
}

/* 典型客户 */
.mind-kh {
  padding: 70px 0 85px 0;
}
.mind-kh-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: 40px;
}
.mind-kh-list>li {
  width: calc(calc(100% / 6) - 20px);
  margin: 0 10px 20px 10px;
}
.mind-kh-list>li>a {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.mind-kh-list>li>a::before {
  content: "";
  display: block;
  padding-top: 30%;
}
.mind-kh-list>li>a:hover>img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.mind-kh-more {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.mind-kh-more>a {
  border-bottom: 1px solid var(--color-main);
  line-height: 44px;
  font-size: 17px;
  color: var(--color-main);
  font-weight: bold;
  padding-right: 44px;
  background: url(../images/topview-icon.png) no-repeat right center;
}

@media (max-width: 1200px) {
  .mind-kh {
    padding: 50px 0;
  }
  .mind-kh-more {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .mind-kh {
    padding: 30px 0;
  }
  .mind-kh-list>li {
    width: calc(20% - 20px);
  }
  .mind-kh-more {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .mind-kh {
    padding: 15px 0;
  }
  .mind-kh-list {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-top: 10px;
  }
  .mind-kh-list>li {
    width: calc(calc(100% / 3) - 10px);
    margin: 0 5px 10px 5px;
  }
  .mind-kh-more {
    margin-top: 10px;
  }
  .mind-kh-more>a {
    line-height: 30px;
    font-size: 14px;
    padding-right: 30px;
  }
}
/* END-智能 */

.product-details {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.product-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 40px;
  font-family: "Source Han Sans CN Medium";
  font-size: 30px;
  color: #2b2b2b;
}
.product-details-content {
  display: block;
  overflow: hidden;
  margin-top: 50px;
}
.product-details-content>h1 {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
  line-height: 40px;
  font-size: 24px;
  color: #d50b05;
  font-family: "Source Han Sans CN Medium";
  position: relative;
}
.product-details-content>h1::after {
  content: "";
  width: 64px;
  height: 4px;
  background-color: var(--color-hover);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.product-details-box {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.product-details-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #232323;
}
.product-details-box>h1>span {
  float: left;
  font-size: 12px;
  color: #d50b05;
  margin-right: 10px;
}
.product-details-box h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #232323;
}
.product-details-box h1 span {
  float: left;
  font-size: 12px;
  color: #d50b05;
  margin-right: 10px;
}
.product-details-text {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #555;
  padding: 0 20px;
  margin-top: 25px;
  min-height: 300px;
}
.product-details-img {
  width: 40.5%;
  float: right;
  margin-left: 30px;
}
.product-details-list {
  display: block;
  overflow: hidden;
  margin-top: 25px;
  padding: 0 20px;
}
.product-details-list>li {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #555;
}
.product-details-list>li>span {
  float: left;
  color: #d50b05;
  font-weight: bold;
}

@media (max-width: 991px) {
  .product-details {
    padding: 30px 0;
  }
  .product-details-content {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .product-details {
    padding: 15px 0;
  }
  .product-details-title {
    line-height: 30px;
    font-size: 20px;
  }
  .product-details-content {
    margin-top: 10px;
  }
  .product-details-content>h1 {
    padding-bottom: 5px;
    line-height: 24px;
    font-size: 16px;
  }
  .product-details-content>h1::after {
    width: 40px;
    height: 2px;
  }
  .product-details-box {
    margin-top: 10px;
  }
  .product-details-box>h1 {
    line-height: 24px;
    font-size: 14px;
  }
  .product-details-box>h1>span {
    margin-right: 5px;
  }
  .product-details-box h1 {
    line-height: 24px;
    font-size: 14px;
  }
  .product-details-box h1 span {
    margin-right: 5px;
  }
  .product-details-text {
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin-top: 10px;
  }
  .product-details-img {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .product-details-list {
    margin-top: 10px;
    padding: 0;
  }
  .product-details-list>li {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-产品及解决方案 */

/* 新闻中心 */
.news-main {
  width: 100%;
  overflow: hidden;
}
.news-banner {
  background: url(../images/news-banner.jpg) no-repeat center center;
  background-size: cover;
}

.info-menu {
  width: 100%;
  display: flex;
  position: relative;
  padding-bottom: 1px;
}
.info-menu::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
  position: absolute;
  left: 0;
  bottom: 0;
}
.info-menu>.container {
  width: 100%;
}
.info-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.info-menu ul>li {
  padding: 20px 0;
  position: relative;
}
.info-menu ul>li::before {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.info-menu ul>li::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid var(--color-hover);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  opacity: 0;
}
.info-menu ul>li>a {
  display: flex;
  line-height: 34px;
  text-align: center;
  font-size: 18px;
  color: #0e0e0e;
}
.info-menu ul>li:hover::before,
.info-menu ul>li.info-menu-active::before {
  width: 100%;
}
.info-menu ul>li:hover::after,
.info-menu ul>li.info-menu-active::after {
  opacity: 1;
}
.info-menu ul>li:hover>a,
.info-menu ul>li.info-menu-active>a {
  font-weight: bold;
}


.info {
  width: 100%;
  overflow: hidden;
  padding: 45px 0;
}
.info ul {
  display: block;
  overflow: hidden;
}
.info ul>li {
  display: block;
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
}
.info ul>li>a {
  width: 100%;
  float: left;
  display: flex;
}
.info ul>li>a .info-img {
  width: 188px;
  float: left;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}
.info ul>li>a .info-img::before {
  content: "";
  display: block;
  padding-top: 68.0851064%;
}
.info ul>li>a .info-box {
  width: calc(100% - 188px);
  padding-left: 25px;
}
.info ul>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 17px;
  color: #090909;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info ul>li>a .info-box .info-time {
  display: block;
  overflow: hidden;
  line-height: 22px;
  margin-top: 5px;
  font-size: 14px;
  color: #999;
}
.info ul>li>a .info-box .info-time>span {
  float: left;
  color: #6b6b6b;
}
.info ul>li>a .info-box .info-text {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: #6d6d6d;
  margin-top: 15px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.info ul>li>a:hover .info-box>h1 {
  color: var(--color-hover);
}


.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: var(--color6);
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed var(--colorC);
}
.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .info {
    padding: 30px 0;
  }
  .info ul>li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .info-menu ul>li {
    padding: 15px 0;
  }
  .info-menu ul>li>a {
    line-height: 24px;
    font-size: 16px;
  }


  .info {
    padding: 20px 0;
  }
  .info ul>li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .info ul>li>a .info-img {
    width: 30%;
    margin-top: 0;
  }
  .info ul>li>a .info-box {
    width: 70%;
    padding-left: 15px;
  }
  .info ul>li>a .info-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .info ul>li>a .info-box .info-time {
    line-height: 16px;
    font-size: 12px;
  }
  .info ul>li>a .info-box .info-text {
    height: 40px;
    line-height: 20px;
    font-size: 12px;
    margin-top: 5px;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 人才招聘 */
.works-banner {
  background: url(../images/recruit-banner.jpg) no-repeat center center;
  background-size: cover;
}

.works {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.works-list {
  display: block;
  overflow: hidden;
}
.works-list>li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #e9e9e9;
}
.works-list>li .works-title {
  width: 100%;
  background-color: #f5f5f5;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.works-list>li .works-title .works-left {
  flex: 1;
  max-width: calc(100% - 20px);
  line-height: 30px;
  display: flex;
  align-items: center;
}
.works-list>li .works-title .works-left>h1 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin-right: 20px;
}
.works-list>li .works-title .works-left .works-time {
  font-size: 14px;
  color: #929292;
  padding-left: 25px;
  background: url(../images/rc-icon.png) no-repeat left center;
}
.works-list>li .works-title .works-btn {
  width: 20px;
  height: 20px;
  border: 2px solid #858585;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
}
.works-list>li .works-title .works-btn::before,
.works-list>li .works-title .works-btn::after {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #858585;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.works-list>li .works-title .works-btn::after {
  width: 2px;
  height: 10px;
}

.works-list>li .works-content {
  display: none;
  width: 100%;
  border-top: 1px solid #e9e9e9;
  padding: 30px 35px 45px 35px;
  transition: initial;
  -webkit-transition: initial;
  -moz-transition: initial;
  -ms-transition: initial;
  -o-transition: initial;
}
.works-list>li .works-content>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 16px;
  color: #d50b05;
  font-weight: bold;
  margin-bottom: 20px;
}
.works-list>li .works-content>div {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  color: #565656;
  margin: 20px 0;
}
.works-list>li .works-content>a {
  width: 170px;
  height: 52px;
  border: 2px solid var(--color-main);
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
  margin-top: 30px;
  font-size: 16px;
  color: #fff;
}
.works-list>li .works-content>a:hover {
  background-color: #fff;
  color: var(--color-hover);
}
.works-list>li:hover .works-title .works-left>h1,
.works-list>li.works-active .works-title .works-left>h1 {
  color: var(--color-hover);
}
.works-list>li:hover .works-title .works-btn,
.works-list>li.works-active .works-title .works-btn {
  border-color: var(--color-hover);
}
.works-list>li:hover .works-title .works-btn::before,
.works-list>li:hover .works-title .works-btn::after,
.works-list>li.works-active .works-title .works-btn::before,
.works-list>li.works-active .works-title .works-btn::after {
  background-color: var(--color-hover);
}
.works-list>li.works-active .works-title .works-btn::after {
  height: 0;
}

@media (max-width:1200px) {
  .works {
    padding: 50px 0;
  }
}
@media (max-width:991px) {
  .works {
    padding: 30px 0;
  }
}
@media (max-width:767px) {
  .works {
    padding: 15px 0;
  }
  .works-list>li .works-title {
    padding: 5px 10px;
  }
  .works-list>li .works-title .works-left>h1 {
    font-size: 14px;
    margin-right: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .works-list>li .works-title .works-left .works-time {
    display: none;
  }
  .works-list>li .works-content {
    padding: 10px;
  }
  .works-list>li .works-content>h1 {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .works-list>li .works-content>div {
    line-height: 22px;
    font-size: 14px;
    margin: 5px 0;
  }
  .works-list>li .works-content>a {
    width: 120px;
    height: 40px;
    margin-top: 10px;
    font-size: 14px;
  }
}
/* END-人才招聘 */

/* 联系我们 */
.contact-main {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  background-color: #e4e4e4;
  padding: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}
.contact-jiantou1 {
  width: 0;
  height: 0;
  border-left: 260px solid #fff;
  border-top: 0 solid transparent;
  border-bottom: 260px solid transparent;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-jiantou2 {
  width: 0;
  height: 0;
  border-left: 235px solid var(--color-main);
  border-top: 0 solid transparent;
  border-bottom: 235px solid transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.contact-jiantou3 {
  width: 0;
  height: 0;
  border-right: 325px solid #fff;
  border-top: 325px solid transparent;
  border-bottom: 0 solid transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.contact-jiantou4 {
  width: 0;
  height: 0;
  border-right: 300px solid var(--color-main);
  border-top: 300px solid transparent;
  border-bottom: 0 solid transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
}

.contact-left {
  width: 50%;
  background-color: #fff;
  padding: 40px 25px 30px 30px;
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  position: relative;
  z-index: 5;
}
.contact-left>h1 {
  display: block;
  overflow: hidden;
  line-height: 44px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d5d5d5;
  font-size: 30px;
  color: #0b0b0b;
}
.contact-box {
  display: block;
  overflow: hidden;
}
.contact-box>p {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  padding-left: 40px;
  position: relative;
  line-height: 26px;
  font-size: 16px;
  color: #000;
}
.contact-box>p>span {
  display: block;
  color: #797979;
}
.contact-box>p>img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.contact-right {
  width: 50%;
  overflow: hidden;
  position: relative;
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
  position: relative;
  z-index: 5;
}

@media (max-width:1200px) {
  .contact {
    padding: 30px;
  }
}
@media (max-width:991px) {
  .contact-main {
    padding: 30px 0;
  }
  .contact {
    padding: 15px;
  }
  .contact-left {
    padding: 15px;
  }
  .contact-left>h1 {
    line-height: 30px;
    padding-bottom: 15px;
    font-size: 20px;
  }
  .contact-box>p {
    margin-top: 10px;
  }
}
@media (max-width:767px) {
  .contact-main {
    padding: 15px 0;
  }
  .contact {
    padding: 10px;
  }
  .contact-jiantou1 {
    border-left: 100px solid #fff;
    border-bottom: 100px solid transparent;
  }
  .contact-jiantou2 {
    border-left: 80px solid var(--color-main);
    border-bottom: 80px solid transparent;
  }
  .contact-jiantou3 {
    border-right: 100px solid #fff;
    border-top: 100px solid transparent;
  }
  .contact-jiantou4 {
    border-right: 80px solid var(--color-main);
    border-top: 80px solid transparent;
  }

  .contact-left {
    width: 100%;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
  }
  .contact-left>h1 {
    line-height: 24px;
    padding-bottom: 10px;
    font-size: 16px;
  }
  .contact-box>p {
    margin-top: 10px;
    padding-left: 35px;
    line-height: 22px;
    font-size: 13px;
  }

  .contact-right {
    width: 100%;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
  }
  .contact-right::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
}
/* END-联系我们 */