.webPage {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}
.webPage .pageBtn {
  width: auto;
  padding: 6px 20px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 36px;
  transition: 0.5s;
}
.webPage .pageBtn .icon {
  width: 22px;
  height: 22px;
}
.webPage .pageBtn .icon1 {
  display: none;
}
.webPage .pageBtn .icon2 {
  display: block;
}
.webPage .pageBtn:hover {
  color: #fff;
  background: #004A9F;
  border: 1px solid #004A9F;
  transition: 0.5s;
}
.webPage .pageBtn:hover .icon1 {
  display: block;
}
.webPage .pageBtn:hover .icon2 {
  display: none;
}
.webPage .pageBtn-active {
  color: #fff;
  background: #004A9F;
  border: 1px solid #004A9F;
  transition: 0.5s;
}
.webPage .pageBtn-active .icon1 {
  display: block;
}
.webPage .pageBtn-active .icon2 {
  display: none;
}
.webPage .pages-a {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  line-height: 24px;
  margin-left: 30px;
  font-family: 'AlibabaPuHuiTi-Regular';
  cursor: pointer;
}
.webPage .pages-a:hover {
  color: #004A9F;
}
.webPage .pages-a:nth-of-type(1) {
  margin-left: 0;
}
.webPage .pages-a-active {
  color: #004A9F;
}
.webPage .pre-pageBtn {
  margin-right: 30px;
}
.webPage .next-pageBtn {
  margin-left: 30px;
}
.webPage-title-main {
  margin-bottom: 40px;
}
.webPage-title-main .indexPage-desc {
  margin-top: 16px;
}
@keyframes aniMapDotInner {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(171, 171, 171, 0.3);
  }
  100% {
    width: 42px;
    height: 42px;
    opacity: 0;
    background: rgba(171, 171, 171, 0.1);
  }
}
.proPage {
  background: url('../images/web/pro-inner-back.png') no-repeat;
  background-size: cover;
  background-position: top right;
}
.proPage .pro-main .indexPage-inner {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.proPage .pro-main .pro-item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-top: 40px;
  padding-bottom: 40px;
  height: auto;
  position: relative;
}
.proPage .pro-main .pro-item .proi-cur-desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.proPage .pro-main .pro-item .proi-cur-img {
  width: 100%;
  display: block;
  overflow: hidden;
  background: #F8F8F8;
}
.proPage .pro-main .pro-item .proi-cur-img img {
  width: 100%;
  transform: scale(1);
  transition: 0.5s;
}
.proPage .pro-main .pro-item .proi-cur-img:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
.proPage .pro-main .pro-item .proi-cur-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 8px;
}
.proPage .pro-main .pro-item .proi-cur-title .proi-cur-title-text {
  width: calc(100% - 40px);
  font-weight: normal;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  transition: 0.5s;
}
.proPage .pro-main .pro-item .proi-cur-title .el-icon-arrow-right {
  opacity: 0;
  font-size: 20px;
  color: #004A9F;
  transform: translateX(-10px);
  transition: 0.5s;
}
.proPage .pro-main .pro-item:hover .proi-cur-title .proi-cur-title-text {
  color: #004A9F;
  transition: 0.5s;
}
.proPage .pro-main .pro-item:hover .proi-cur-title .el-icon-arrow-right {
  opacity: 1;
  transform: translateX(0px);
  transition: 0.5s;
}
.proPage .pro-main .pro-item:nth-of-type(3n) {
  margin-right: 0;
}
.proPage .pro-main .pro-item::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.proPage .pro-main .pro-item:nth-of-type(2n):before {
  width: calc(100% + 60px);
  transform: translateX(-30px);
}
.classification .indexPage-inner {
  display: flex;
  flex-wrap: wrap;
  background: #F8F8F8;
  border-radius: 30px;
}
.classification .indexPage-inner .types-a-default {
  width: calc(100% / 6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  padding: 22px 0;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-default .types-icon {
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 12px;
}
.classification .indexPage-inner .types-a-default .types-icon img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.classification .indexPage-inner .types-a-default .types-icon .default {
  opacity: 1;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-default .types-icon .active {
  opacity: 0;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-default .types-a-name {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-default:hover {
  background: #004A9F;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-default:hover .types-icon .default {
  opacity: 0;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-default:hover .types-icon .active {
  opacity: 1;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-default:hover .types-a-name {
  color: #FFFFFF;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-active {
  background: #004A9F;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-active .types-icon .default {
  opacity: 0;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-active .types-icon .active {
  opacity: 1;
  transition: 0.5s;
}
.classification .indexPage-inner .types-a-active .types-a-name {
  color: #FFFFFF;
  transition: 0.5s;
}
.industriesPage .industries-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 6%;
}
.industriesPage .industries-item:hover .industries-title .industries-index {
  transform: translateX(10px);
  transition: 0.5s;
}
.industriesPage .industries-item:hover .industries-title .industries-text {
  color: #004A9F;
  transform: translateX(10px);
  transition: 0.5s;
}
.industriesPage .industries-item .industries-main {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.industriesPage .industries-item .industries-main .industries-img {
  width: 32%;
}
.industriesPage .industries-item .industries-main .industries-con {
  width: 63%;
  padding: 12px 0 30px;
}
.industriesPage .industries-item .industries-title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 16px;
}
.industriesPage .industries-item .industries-title .industries-index {
  font-weight: 500;
  font-size: 18px;
  color: #004A9F;
  line-height: 24px;
  margin-right: 15px;
  width: 22px;
  transition: 0.5s;
}
.industriesPage .industries-item .industries-title .industries-text {
  width: calc(100% - 50px);
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  transition: 0.5s;
}
.industriesPage .industries-item .industries-intros {
  margin-top: 20px;
}
.industriesPage .industries-item .industries-intros .industries-intro {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.industriesPage .industries-item .industries-intros .industries-dot {
  width: 6px;
  height: 6px;
  background: #000003;
  border-radius: 50%;
  margin-right: 15px;
}
.industriesPage .industries-item .industries-intros .industries-title-p {
  font-weight: 500;
  font-size: 14px;
  color: #444444;
  line-height: 24px;
}
.industriesPage .industries-item .industries-intros .industries-desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.industriesPage .industries-item:nth-of-type(1) {
  margin-top: 0;
}
.industriesPage .industries-item-odd .industries-title {
  width: 63%;
}
.industriesPage .industries-item-event .industries-title {
  width: 100%;
  margin-bottom: 20px;
}
.industriesPage .industries-item-event .industries-main {
  background: #F8F8F8;
  border-radius: 20px;
}
.coopPage1::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100px;
  width: 22%;
  height: 180px;
  background: url('../images/web/casei-dot.png') no-repeat;
  background-size: cover;
}
.coopPage1 {
  background: #F8F8F8;
  position: relative;
}
.coopPage1 .coopPage-map {
  width: 100%;
}
.coopPage1 .coopPage-map img {
  width: 100%;
}
.coopPage1 .coopPage1-inner {
  margin-top: -36%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.coopPage1 .coopPage1-inner .coopPage1-left {
  width: 62%;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con {
  width: 100%;
  margin-bottom: 20px;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-title {
  width: 204px;
  border-radius: 25px;
  position: relative;
  padding-left: 46px;
  padding-top: 14px;
  padding-bottom: 14px;
  background: #fff;
  color: #333333;
  border: 1px solid #EEEEEE;
  padding-right: 0;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-title .coopPage-con-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-title .coopPage-con-icon img {
  width: 100%;
  height: 100%;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-title .coopPage-con-title-text {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  transition: 0.5s;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  padding-bottom: 5px;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-desc1 {
  color: #333333;
  padding-bottom: 0;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-descs {
  background: url('../images/web/duihua.png') no-repeat;
  background-size: cover;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-active {
  transition: 0.5s;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-active .coopPage-con-descs {
  max-height: 100vh;
  padding: 32px 24px;
  overflow: hidden;
  transition: max-height 0.5s;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-active .coopPage-con-icon {
  left: calc(100% - 46px);
  transition: 0.5s;
}
.coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-active .coopPage-con-title {
  padding-left: 0;
  padding-right: 46px;
  cursor: pointer;
  color: #fff;
  background: #004A9F;
  border: 1px solid transparent;
  transition: 0.5s;
}
.coopPage1 .coopPage1-inner .coopPage1-right {
  width: 38%;
  display: flex;
  justify-content: space-between;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-num {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3% 0 5% 0;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-value {
  display: flex;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one {
  width: 50%;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .count {
  font-family: 'LamaSans-Bold';
  font-weight: bold;
  font-size: 66px;
  color: #004A9F;
  line-height: 72px;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .numTitle {
  font-weight: normal;
  font-size: 14px;
  padding-right: 12px;
  color: #999999;
  line-height: 24px;
  margin-bottom: 16px;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .abouti-numRight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 8px;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .abouti-numRight .numTop {
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
}
.coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .abouti-numRight .numUnit {
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
}
.coopPage2 {
  background: url('../images/web/coo-back-new.png') repeat;
  background-size: contain;
}
.coopPage2 .indexPage-title {
  text-align: center;
  color: #fff;
}
.coopPage2 .indexPage-desc {
  text-align: center;
  color: #fff;
}
.coopPage2 .identitys-swiper {
  width: 100%;
  position: relative;
  padding-bottom: 50px;
}
.coopPage2 .identitys-swiper .identitys-slide {
  cursor: pointer;
  height: auto;
  width: 50%;
  z-index: 10;
}
.coopPage2 .identitys-swiper .identitys-slide .identitys-slide-inner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(0.8);
  transition: 0.5s;
}
.coopPage2 .identitys-swiper .identitys-slide:hover .identitys-img {
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}
.coopPage2 .identitys-swiper .identitys-inner {
  width: 100%;
  height: 100%;
  padding: 35px 50px;
  background: #fff;
}
.coopPage2 .identitys-swiper .identitys-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
  transition: 0.5s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.coopPage2 .identitys-swiper .identitys-img .identitys-head {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}
.coopPage2 .identitys-swiper .identitys-img .identitys-head img {
  width: 100%;
}
.coopPage2 .identitys-swiper .identitys-img .identitys-text {
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 22px;
  margin-top: 22px;
}
.coopPage2 .identitys-swiper .identitys-cur {
  display: flex;
  align-items: center;
}
.coopPage2 .identitys-swiper .identitys-cur .identitys-header {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-right: 16px;
}
.coopPage2 .identitys-swiper .identitys-cur .identitys-text {
  width: calc(100% - 68px);
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 22px;
}
.coopPage2 .identitys-swiper .identitys-one {
  margin-bottom: 25px;
}
.coopPage2 .identitys-swiper .identitys-one .identitys-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #EEEEEE;
  transition: 0.5s;
}
.coopPage2 .identitys-swiper .identitys-one .identitys-desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  max-height: 0;
  height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
  opacity: 0.8;
}
.coopPage2 .identitys-swiper .identitys-one .identitys-text {
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  width: calc(100% - 30px);
}
.coopPage2 .identitys-swiper .identitys-one .el-icon-arrow-down {
  width: 30px;
  color: #999999;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 22px;
  transform-origin: center;
  transform: rotateX(0deg);
  transition: 0.5s;
}
.coopPage2 .identitys-swiper .identitys-one-active .identitys-title {
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.coopPage2 .identitys-swiper .identitys-one-active .el-icon-arrow-down {
  color: #004A9A;
  transform: rotateX(-180deg);
  transition: 0.5s;
}
.coopPage2 .identitys-swiper .identitys-one-active .identitys-desc {
  height: auto;
  max-height: 100vh;
  overflow-y: auto;
  transition: max-height 0.5s;
}
.coopPage2 .identitys-swiper .identitys-slide-active {
  z-index: 20;
}
.coopPage2 .identitys-swiper .identitys-slide-active .identitys-slide-inner {
  transform: scale(1);
  transition: 0.5s;
}
.coopPage2 .identitys-swiper .identitys-btns {
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.coopPage2 .identitys-swiper .identitys-btns .identitys-btn {
  width: 40px;
  font-size: 32px;
  line-height: 24px;
  color: #fff;
  transition: 0.5s;
  opacity: 0.5;
}
.coopPage2 .identitys-swiper .identitys-btns .identitys-btn:hover {
  opacity: 1;
  transition: 0.5s;
}
.coopPage3 .webPage-title-main {
  width: 50%;
  max-width: 495px;
}
.coopPage3 .process-inner {
  display: flex;
  justify-content: space-between;
}
.coopPage3 .process-inner .process-left {
  width: 50%;
}
.coopPage3 .process-inner .process-left .process-con {
  width: calc(100% - 40px);
  background: #fff;
  border-radius: 0 20px 0 0;
  margin-top: -25%;
  z-index: 20;
  position: relative;
}
.coopPage3 .process-inner .process-left-m {
  display: none;
}
.coopPage3 .process-inner .process-con {
  width: 100%;
}
.coopPage3 .process-inner .process-con .process-con-one {
  padding: 24px 26px 24px 24px;
  border-bottom: 1px solid #DDDDDD;
  cursor: pointer;
}
.coopPage3 .process-inner .process-con .process-con-one:hover .process-con-title {
  padding-left: 12px;
  transition: 0.5s;
}
.coopPage3 .process-inner .process-con .process-con-one1 {
  border-bottom: 1px solid transparent;
}
.coopPage3 .process-inner .process-con .process-con-title {
  font-weight: 500;
  font-size: 14px;
  color: #004A9A;
  line-height: 22px;
  transition: 0.5s;
}
.coopPage3 .process-inner .process-con .process-con-desc {
  font-weight: 400;
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}
.coopPage3 .process-inner .process-right {
  width: 45%;
}
.coopPage3 .process-inner .process-right .process-con {
  padding-left: 28px;
  margin-bottom: 30px;
}
.coopPage3 .process-inner .process-img {
  width: 100%;
}
.coopPage3 .process-inner .process-img img {
  width: 100%;
}
.coopPage4 {
  background: #F8F8F8;
}
.afterSales-swiper {
  width: 100%;
  padding-bottom: 90px;
  position: relative;
}
.afterSales-swiper .afterSales-slide {
  width: 35%;
  overflow: hidden;
  margin-right: 25px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: width 0.3s ease;
}
.afterSales-swiper .afterSales-slide .afterSales-slide-outer {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.afterSales-swiper .afterSales-slide .afterSales-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  padding: 18px 16px;
}
.afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-inner-con {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 10% 8%;
}
.afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-title {
  display: flex;
  align-items: center;
}
.afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-title .afterSales-icon {
  width: 26px;
  margin-right: 10px;
}
.afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-title .afterSales-icon img {
  width: 100%;
}
.afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-title .afterSales-text {
  width: calc(100% - 36px);
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 22px;
}
.afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  opacity: 0.8;
  margin-top: 3%;
}
.afterSales-swiper .afterSales-slide .afterSales-mask {
  width: 100%;
  height: 100%;
  padding: 10px 12px;
  overflow: hidden;
  position: absolute;
  border: 1px solid #ddd;
  left: 0;
  bottom: 0;
  background: #fff;
  transform: translateY(0);
  transition: 0.8s;
  border-radius: 10px;
  z-index: 10;
}
.afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-title {
  display: flex;
  align-items: center;
}
.afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-title .afterSales-mask-icon {
  width: 18px;
  margin-right: 10px;
}
.afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-title .afterSales-mask-icon img {
  width: 100%;
}
.afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-title .afterSales-mask-text {
  width: calc(100% - 28px);
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  line-height: 22px;
}
.afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-img {
  width: 100%;
  margin-top: 30px;
}
.afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-img img {
  width: 100%;
  display: block;
}
.afterSales-swiper .afterSales-slide-active {
  width: 35%;
}
.afterSales-swiper .afterSales-slide-active .afterSales-mask {
  padding: 20px 22px;
  transition: 0.5s;
}
.afterSales-swiper .afterSales-slide-active .afterSales-mask .afterSales-mask-img {
  margin-top: 18px;
}
.afterSales-swiper .afterSales-slide-active:hover .afterSales-inner {
  opacity: 1;
  transition: 0.5s;
}
.afterSales-swiper .afterSales-slide-active:hover .afterSales-mask {
  transform: translateY(100%);
  transition: 0.8s;
  z-index: -1;
}
.afterSales-swiper .afterSales-btns {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.afterSales-swiper .afterSales-btns .afterSales-btn {
  width: 40px;
  height: 27px;
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 13px;
  text-align: center;
  line-height: 27px;
  font-size: 18px;
  color: #004A9F;
  transition: 0.5s;
  z-index: 20;
}
.afterSales-swiper .afterSales-btns .afterSales-btn:hover {
  background: #004A9F;
  color: #FFFFFF;
  transition: 0.5s;
}
.afterSales-swiper .afterSales-btns .afterSales-btn-prev {
  margin-right: 20px;
}
.afterSales-swiper::before {
  width: calc(100% + (100vw - 1200px / 2));
  height: 1px;
  background: #DDDDDD;
  content: "";
  position: absolute;
  left: 0;
  bottom: 13px;
}
.companyPage {
  background: url('../images/web/company-back.png') repeat;
  background-size: contain;
  overflow: hidden;
}
.companyPage .companyTop {
  margin-bottom: 40px;
}
.companyPage .companyTop .company-video {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.companyPage .companyTop .company-video .company-video-inner {
  width: 75%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.companyPage .companyTop .company-video .company-video-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.companyPage .companyTop .company-video .company-video-mask {
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: 0.5s;
}
.companyPage .companyTop .company-video .company-video-mask .company-video-poster {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.companyPage .companyTop .company-video .company-video-mask .video-play {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50px;
}
.companyPage .companyTop .company-video .company-video-mask-show {
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
}
.companyPage .companyTop .company-video .company-video-mask-show .video-play {
  z-index: -1;
}
.companyPage .companyTop .company-img-text {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.companyPage .companyTop .company-img {
  width: calc((100% - 45px) / 2);
}
.companyPage .companyTop .company-img img {
  width: 100%;
  display: block;
}
.companyPage .companyTop .company-text {
  width: calc((100% - 45px) / 2);
}
.companyPage .companyTop .company-p {
  font-weight: normal;
  font-size: 14px;
  color: #999999;
  line-height: 24px;
}
.companyPage .companyTop .company-num-main {
  display: flex;
  align-items: flex-end;
  margin: 20px 0 30px;
}
.companyPage .companyTop .company-num-main .company-num {
  font-family: 'LamaSans-Bold';
  font-weight: bold;
  font-size: 72px;
  color: #333333;
  line-height: 72px;
  margin-right: 10px;
}
.companyPage .companyTop .company-num-main .company-unit {
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  line-height: 20px;
}
.companyPage .companyTop .company-desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.companyPage .companyBottom {
  background: url('../images/web/company-bottom.png') no-repeat;
  background-size: cover;
}
.companyPage .companyBottom .indexPage-inner {
  display: flex;
}
.companyPage .companyBottom .companyDetails {
  width: 290px;
}
.companyPage .companyBottom .companyDetails .companyDetail {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.companyPage .companyBottom .companyDetails .companyIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid transparent;
  position: relative;
  margin-right: 18px;
  transition: 0.5s;
}
.companyPage .companyBottom .companyDetails .companyIcon img {
  position: absolute;
  top: 50%;
  width: 65%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.companyPage .companyBottom .companyDetails .companyIcon .default {
  opacity: 1;
  transition: 0.5s;
}
.companyPage .companyBottom .companyDetails .companyIcon .active {
  opacity: 0;
  transition: 0.5s;
}
.companyPage .companyBottom .companyDetails .companyDetail-text {
  width: calc(95% - 68px);
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 24px;
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.5s;
}
.companyPage .companyBottom .companyDetails .companyDetail-active .companyIcon {
  border: 1px solid #fff;
  transition: 0.5s;
}
.companyPage .companyBottom .companyDetails .companyDetail-active .companyIcon .default {
  opacity: 0;
  transition: 0.5s;
}
.companyPage .companyBottom .companyDetails .companyDetail-active .companyIcon .active {
  opacity: 1;
  transition: 0.5s;
}
.companyPage .companyBottom .companyDetails .companyDetail-active .companyDetail-text {
  opacity: 1;
  transform: translateX(0);
  transition: 0.5s;
}
.companyPage .companyBottom .companyDescs {
  width: calc(100% - 290px);
  padding-top: 30px;
}
.companyPage .companyBottom .companyDescs .companyDesc-swiper {
  width: 100%;
  overflow: hidden;
}
.companyPage .companyBottom .companyDescs .companyDesc-slide {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}
.companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-cons {
  width: 70%;
  max-width: calc(90% - 80px);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-title {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  margin-bottom: 12px;
}
.companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-intro {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 24px;
  opacity: 0.6;
}
.companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-right-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/web/companyDesc-right.png') no-repeat;
  background-size: cover;
}
.companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-right-icon img {
  width: 50%;
  max-height: 80%;
  opacity: 0.5;
}
.companyPage .companyBottom .companyDescs .companyImgsSwiper {
  width: calc(100% + ((100vw - 1200px) / 2));
  position: relative;
  overflow-x: auto;
  margin-top: 40px;
}
.companyPage .companyBottom .companyDescs .companyImgsSwiper::-webkit-scrollbar {
  height: 0;
  width: 4px;
}
.companyPage .companyBottom .companyDescs .companyImgsSwiper .companyImgs-one {
  width: calc((80% - 30px) / 2);
  margin-right: 30px;
}
.companyPage .companyBottom .companyDescs .companyImgsSwiper .companyImgs-one img {
  width: 100%;
}
.newsPage {
  background: url('../images/web/news-back.png') no-repeat;
  background-size: cover;
}
.newsPage .indexPage-inner {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.newsPage .news-item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-top: 40px;
  padding-bottom: 40px;
  height: auto;
  position: relative;
}
.newsPage .news-item .news-time {
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 24px;
  margin-top: 12px;
}
.newsPage .news-item .news-cur-desc {
  font-weight: 400;
  font-size: 14px;
  color: #999;
  line-height: 24px;
}
.newsPage .news-item .news-cur-img {
  width: 100%;
  display: block;
  overflow: hidden;
  background: #F8F8F8;
  border-radius: 0 !important;
}
.newsPage .news-item .news-cur-img img {
  width: 100%;
  transform: scale(1);
  transition: 0.5s;
}
.newsPage .news-item .news-cur-img:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
.newsPage .news-item .news-cur-title {
  margin: 10px 0 8px;
  width: 100%;
  font-weight: normal;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  transition: 0.5s;
}
.newsPage .news-item:hover .news-cur-title {
  color: #004A9F;
  transition: 0.5s;
}
.newsPage .news-item:nth-of-type(1) {
  margin-top: 0;
}
.newsPage .news-item:nth-of-type(2) {
  margin-top: 0;
}
.newsPage .news-item:nth-of-type(3) {
  margin-top: 0;
}
.newsPage .news-item:nth-of-type(3n) {
  margin-right: 0;
}
.newsPage .news-item::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.newsPage .news-item:nth-of-type(2n):before {
  width: calc(100% + 60px);
  transform: translateX(-30px);
}
.culturePage {
  background: url('../images/web/culture-back.png') no-repeat;
  background-size: cover;
}
.culturePage .culture-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.culturePage .culture-top .culture-imgs {
  width: 50%;
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center {
  width: 60%;
  position: relative;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-img {
  width: 100%;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one .culture-icon {
  height: 30px;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one .culture-icon img {
  height: 100%;
  transform: scale(1);
  transition: 0.5s;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one:hover .culture-icon img {
  transform: scale(1.1);
  transition: 0.5s;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one .culture-iText {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: center;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one:nth-of-type(1) {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  background: #083E99;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one:nth-of-type(2) {
  top: 50%;
  right: 0;
  transform: translateX(50%);
  background: #F1BB47;
}
.culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one:nth-of-type(3) {
  top: 50%;
  left: 0;
  transform: translateX(-50%);
  background: #6DCA6F;
}
.culturePage .culture-top .culture-cons {
  width: 50%;
}
.culturePage .culture-top .culture-cons .culture-con {
  margin-top: 24px;
}
.culturePage .culture-con:hover .culture-title {
  color: #004A9F;
  transition: 0.5s;
}
.culturePage .culture-title {
  font-weight: 550;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  transition: 0.5s;
}
.culturePage .culture-desc {
  font-weight: 400;
  margin-top: 10px;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.culturePage .culture-bottom-img {
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.culturePage .culture-bottom-img img {
  width: 100%;
  display: block;
}
.culturePage .culture-bottom-img .culture-bottom-p {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 22px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}
.culturePage .culture-bottom-intros {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.culturePage .culture-bottom-intros .culture-con {
  width: calc((100% - 50px) / 2);
  margin-right: 50px;
  margin-top: 30px;
}
.culturePage .culture-bottom-intros .culture-con1 {
  margin-top: 0;
}
.culturePage .culture-bottom-intros .culture-con:nth-of-type(2n) {
  margin-right: 0;
}
.responsibilityPage {
  background: url('../images/web/responsibility-back.png') no-repeat;
  background-size: cover;
}
.responsibilityPage .webPage-title-main {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
.responsibilityPage .responsibility-text {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.responsibilityPage .responsibilitys {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.responsibilityPage .responsibilitys .responsibility-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #083E99;
  position: relative;
  transition: 0.5s;
  margin: 0 3%;
  cursor: pointer;
}
.responsibilityPage .responsibilitys .responsibility-icon img {
  position: absolute;
  width: 60%;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.responsibilityPage .responsibilitys .responsibility-icon .default {
  opacity: 1;
  transition: 0.5s;
}
.responsibilityPage .responsibilitys .responsibility-icon .active {
  opacity: 0;
  transition: 0.5s;
}
.responsibilityPage .responsibilitys .responsibility-icon-active {
  background: #083E99;
  transition: 0.5s;
}
.responsibilityPage .responsibilitys .responsibility-icon-active .default {
  opacity: 0;
  transition: 0.5s;
}
.responsibilityPage .responsibilitys .responsibility-icon-active .active {
  opacity: 1;
  transition: 0.5s;
}
.responsibilityPage .responsibilitys-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8F8F8;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-imgs {
  width: 50%;
  height: auto;
  position: relative;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-imgs .responsibilitys-con-img-one {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
  border-radius: 0;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-imgs .responsibilitys-con-img-one img {
  width: 100%;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-imgs .responsibilitys-con-img-one-active {
  opacity: 1;
  z-index: 2;
  transition: 0.5s;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-imgs .responsibilitys-con-imgs-dom {
  width: 100%;
  opacity: 0;
  z-index: -1;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-imgs .responsibilitys-con-imgs-dom img {
  width: 100%;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper {
  width: 50%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-slide {
  width: 100%;
  height: auto;
  padding: 5% 50px 60px;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-title-p {
  font-weight: 400;
  font-size: 18px;
  color: #083E99;
  line-height: 24px;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-desc-p {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  margin-top: 14px;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns {
  position: absolute;
  width: 100%;
  padding-left: 50px;
  cursor: pointer;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 22;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns .responsibilitys-btn-prev {
  margin-right: 22px;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns .responsibilitys-btn {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: relative;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns .responsibilitys-btn img {
  width: 100%;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns .responsibilitys-btn .default {
  transform: translateX(0);
  transition: 0.5s;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns .responsibilitys-btn .active {
  position: absolute;
  top: 0;
  right: 100%;
  transition: 0.5s;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns .responsibilitys-btn:hover .default {
  transform: translateX(100%);
  transition: 0.5s;
}
.responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns .responsibilitys-btn:hover .active {
  right: 0;
  transition: 0.5s;
}
.historyPage {
  background: url('../images/web/history-back.png') no-repeat;
  background-size: cover;
}
.historyPage .history-title-swiper {
  width: 100%;
  margin-bottom: 20px;
}
.historyPage .history-title-swiper .history-slide {
  width: 25%;
  height: auto;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  line-height: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid #999;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}
.historyPage .history-title-swiper .history-slide:hover {
  color: #004A9F;
  transition: 0.5s;
}
.historyPage .history-title-swiper .history-slide:before {
  width: 0;
  content: "";
  height: 2px;
  transform: scaleY(0.5);
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #004A9F;
  transition: 0.5s;
}
.historyPage .history-title-swiper .history-slide-active {
  color: #004A9F;
  transition: 0.5s;
}
.historyPage .history-title-swiper .history-slide-active::before {
  width: 100%;
  transition: 0.5s;
}
.historyPage .history-title-swiper .history-slide:hover:before {
  width: 100%;
  transition: 0.5s;
}
.historyPage .history-bottom-img {
  width: 100%;
  position: relative;
}
.historyPage .history-bottom-img img {
  width: 100%;
}
.historyPage .history-bottom-img .history-bottom-outer {
  position: absolute;
  width: 450px;
  right: 60px;
  bottom: 60px;
  max-height: 100%;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-swiper {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  overflow: hidden;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-slide {
  width: 100%;
  padding: 12% 7% 22%;
  height: auto;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-top {
  position: relative;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-index {
  font-weight: normal;
  font-size: 72px;
  color: #EFEFEF;
  line-height: 74px;
  font-family: 'LamaSans-BlackCondensed';
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-title {
  position: absolute;
  left: 0;
  bottom: 18px;
  font-weight: 400;
  font-size: 16px;
  color: #004A9F;
  line-height: 24px;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-btns {
  position: absolute;
  bottom: 15%;
  left: 7%;
  z-index: 20;
  display: flex;
  align-items: center;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-btn-prev {
  margin-right: 10px;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-btn {
  width: 40px;
  height: 27px;
  border-radius: 13px;
  border: 1px solid #004A9F;
  text-align: center;
  line-height: 27px;
  font-size: 20px;
  color: #004A9F;
  transition: 0.5s;
}
.historyPage .history-bottom-img .history-bottom-outer .history-main-btn:hover {
  background: #004A9F;
  color: #fff;
  transition: 0.5s;
}
.factoryPage {
  background: url(../images/web/news-back.png) no-repeat;
  background-size: cover;
}
.factoryPage .indexPage-inner {
  display: flex;
  flex-wrap: wrap;
}
.factoryPage .factory-one {
  width: calc((100% - 60px) / 3);
  margin-right: 20px;
  margin-top: 32px;
  background: #FFFFFF;
  border-radius: 10px;
  transition: 0.5s;
  cursor: pointer;
}
.factoryPage .factory-one .factory-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.factoryPage .factory-one .factory-img video {
  width: 100%;
  display: block;
}
.factoryPage .factory-one .factory-img .videos-main-mask {
  width: 100%;
  height: 100%;
  background: rgba(171, 171, 171, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.5s;
  z-index: 10;
}
.factoryPage .factory-one .factory-img .videos-main-mask-active {
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
}
.factoryPage .factory-one .factory-img .videos-main-play {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 40px;
}
.factoryPage .factory-one .factory-img .el-image {
  width: 100%;
  display: block;
  border-radius: 0;
}
.factoryPage .factory-one .factory-img .preview {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 12px;
}
.factoryPage .factory-one .factory-text {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  padding: 10px 14px;
  transition: 0.5s;
}
.factoryPage .factory-one:hover {
  box-shadow: 0px 6px 20px 0px rgba(151, 151, 151, 0.23);
  transition: 0.5s;
}
.factoryPage .factory-one:hover .factory-text {
  transform: translateX(6px);
  transition: 0.5s;
}
.factoryPage .factory-one:nth-of-type(1) {
  margin-top: 0;
}
.factoryPage .factory-one:nth-of-type(2) {
  margin-top: 0;
}
.factoryPage .factory-one:nth-of-type(3) {
  margin-top: 0;
}
.factoryPage .factory-one:nth-of-type(3n) {
  margin-right: 0;
}
.factoryPage .factory-pages {
  margin-top: 5%;
}
.factoryPage .webPage {
  margin-top: 5%;
}
.contactPage .indexPage-inner .contact-infos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #DDDDDD;
}
.contactPage .indexPage-inner .contact-infos .contact-info {
  width: 25%;
  margin-bottom: 38px;
}
.contactPage .indexPage-inner .contact-infos .contact-info:hover .contact-val {
  color: #004A9F;
  transition: 0.5s;
}
.contactPage .indexPage-inner .contact-infos .contact-icon {
  width: 36px;
  height: 36px;
  background: #333333;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactPage .indexPage-inner .contact-infos .contact-icon img {
  width: 60%;
}
.contactPage .indexPage-inner .contact-infos .contact-type {
  padding-left: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 17px;
  margin: 6px 0 6px;
}
.contactPage .indexPage-inner .contact-infos .contact-val {
  padding-left: 6px;
  font-family: 'LamaSans-Regular';
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  transition: 0.5s;
}
.contactPage .indexPage-inner .form-desc {
  font-weight: normal;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  font-family: 'AlibabaPuHuiTi-Regular';
  margin-top: 15px;
}
.contactPage .indexPage-inner .contactMenthods {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.contactPage .indexPage-inner .contactMenthods p {
  font-size: 16px;
  color: #666666;
  margin-right: 12px;
  position: relative;
}
.contactPage .indexPage-inner .contactMenthods p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background: #666666;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
}
.contactPage .indexPage-inner .contactMenthods p:nth-of-type(1)::after {
  display: none;
}
.contactPage .indexPage-inner .form {
  width: 100%;
  margin-top: 40px;
}
.contactPage .indexPage-inner .form-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contactPage .indexPage-inner .form-input .input {
  width: 30%;
  font-size: 14px;
  font-weight: normal;
  color: #666666;
  line-height: 50px;
  font-family: 'AlibabaPuHuiTi-Regular';
  height: 50px;
  background: #F8F8F8;
  border-radius: 4px;
  border: 0;
  padding: 0 5px 0 20px;
}
.contactPage .indexPage-inner .form-input .input:focus {
  color: #333;
  border: 0;
  outline: none;
}
.contactPage .indexPage-inner .form-input .input::placeholder {
  color: #666666;
}
.contactPage .indexPage-inner .form-message {
  width: 100%;
  margin-top: 22px;
}
.contactPage .indexPage-inner .form-message .message {
  width: 100%;
  padding: 12px 5px 0 20px;
  height: 140px;
  font-size: 14px;
  font-weight: normal;
  color: #666666;
  border: 0;
  font-family: 'AlibabaPuHuiTi-Regular';
  line-height: 26px;
  background: #F8F8F8;
  border-radius: 4px;
}
.contactPage .indexPage-inner .form-message .message:focus {
  color: #333;
  outline: none;
  border: 0;
}
.contactPage .indexPage-inner .form-message .message::placeholder {
  color: #666666;
}
.contactPage .indexPage-inner .form-message .message::-webkit-scrollbar {
  height: 2px;
  width: 0px;
}
.contactPage .indexPage-inner .formButton-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.contactPage .indexPage-inner .formButton-box .formButton {
  border: 0;
  cursor: pointer;
  background: transparent;
  width: 160px;
  height: 40px;
  background: #E70012;
  border-radius: 20px;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 24px;
  transition: 0.5s;
}
.contactPage .indexPage-inner .formButton-box .formButton:hover {
  transform: translateY(-2px);
  background: transparent;
  border: 1px solid #E70012;
  color: #E70012;
  transition: 0.5s;
}
@media only screen and (max-width: 1441px) {
  .coopPage1::after {
    width: 200px;
    height: 140px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .numTitle {
    margin-bottom: 10px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .count {
    font-size: 56px;
    line-height: 60px;
  }
  .culturePage .culture-bottom-img .culture-bottom-p {
    font-size: 18px;
  }
  .culturePage .culture-top .culture-imgs .culture-imgs-center {
    width: 50%;
  }
  .culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 1281px) {
  .afterSales-swiper .afterSales-slide .afterSales-mask .afterSales-mask-img {
    margin-top: 18px;
  }
  .afterSales-swiper {
    padding-bottom: 78px;
  }
  .afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-inner-con {
    padding: 8% 7%;
  }
  .afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-title .afterSales-text {
    font-size: 16px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left {
    width: 55%;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right {
    width: 45%;
  }
  .afterSales-swiper::before {
    width: 100%;
  }
  .coopPage2 .identitys-swiper .identitys-img .identitys-text {
    font-size: 16px;
  }
  .coopPage2 .identitys-swiper .identitys-cur .identitys-text {
    font-size: 16px;
  }
  .coopPage2 .identitys-swiper .identitys-inner {
    padding: 25px 30px;
  }
  .companyPage .companyBottom .companyDetails .companyDetail {
    margin-bottom: 16px;
  }
  .companyPage .companyBottom .companyDetails {
    width: 240px;
  }
  .companyPage .companyBottom .companyDescs {
    width: calc(100% - 240px);
    padding-top: 20px;
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-cons {
    width: 80%;
    max-width: calc(95% - 70px);
    padding-bottom: 26px;
  }
  .companyPage .companyBottom .companyDescs .companyImgsSwiper {
    width: 100%;
    margin-top: 32px;
  }
  .companyPage .companyBottom .companyDetails .companyDetail-text {
    font-size: 16px;
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-right-icon {
    width: 70px;
    height: 70px;
  }
  .companyPage .companyTop .company-num-main {
    margin: 12px 0 20px;
  }
  .culturePage .culture-bottom-img .culture-bottom-p {
    font-size: 16px;
  }
  .culturePage .culture-desc {
    margin-top: 4px;
  }
  .culturePage .culture-top .culture-cons .culture-con {
    margin-top: 18px;
  }
  .culturePage .culture-bottom-img {
    margin: 30px 0;
    border-radius: 14px;
  }
  .culturePage .culture-bottom-intros .culture-con {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
    margin-top: 22px;
  }
  .culturePage .culture-title {
    font-size: 16px;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide {
    padding: 10% 7% 20%;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-btns {
    bottom: 12%;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-index {
    font-size: 60px;
    line-height: 68px;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-title-p {
    font-size: 16px;
  }
  .responsibilityPage .responsibilitys {
    margin: 30px 0;
  }
  .industriesPage .industries-item .industries-title .industries-text {
    font-size: 16px;
  }
  .industriesPage .industries-item .industries-intros {
    margin-top: 16px;
  }
  .industriesPage .industries-item {
    margin-top: 4%;
  }
  .newsPage .news-item .news-cur-title {
    font-size: 16px;
    margin: 4px 0 8px;
  }
  .classification .indexPage-inner .types-a-default .types-a-name {
    font-size: 14px;
  }
  .newsPage .news-item {
    width: calc((100% - 44px) / 3);
    margin-right: 22px;
    margin-top: 34px;
    padding-bottom: 34px;
  }
  .contactPage .indexPage-inner .contact-infos .contact-info {
    margin-bottom: 22px;
  }
  .proPage .pro-main .pro-item .proi-cur-title .proi-cur-title-text {
    font-size: 16px;
  }
  .classification .indexPage-inner .types-a-default {
    padding: 18px 0;
  }
}
@media only screen and (max-width: 1025px) {
  .factoryPage .factory-one {
    width: calc((100% - 45px) / 3);
    margin-right: 15px;
    margin-top: 20px;
  }
  .afterSales-swiper .afterSales-slide {
    width: 50%;
  }
  .afterSales-swiper .afterSales-slide-active {
    width: 50%;
  }
  .afterSales-swiper {
    padding-bottom: 68px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-num {
    flex-wrap: wrap;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one {
    width: 100%;
    margin-top: 14px;
  }
  .coopPage3 .webPage-title-main {
    width: 100%;
    max-width: 100%;
  }
  .coopPage3 .process-inner .process-right .process-con {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .coopPage3 .process-inner .process-left .process-con {
    width: calc(100% - 30px);
  }
  .coopPage3 .process-inner .process-con .process-con-one {
    padding: 18px 14px 20px 14px;
  }
  .coopPage2 .identitys-swiper .identitys-img .identitys-text {
    margin-top: 10px;
  }
  .coopPage3 .process-inner .process-con .process-con-desc {
    margin-top: 8px;
  }
  .coopPage2 .identitys-swiper .identitys-one {
    margin-bottom: 14px;
  }
  .coopPage2 .identitys-swiper .identitys-img .identitys-text {
    font-size: 14px;
  }
  .coopPage2 .identitys-swiper .identitys-cur .identitys-text {
    font-size: 14px;
  }
  .coopPage2 .identitys-swiper .identitys-inner {
    padding: 22px 26px;
  }
  .webPage-title-main .indexPage-desc {
    margin-top: 10px;
  }
  .coopPage1::after {
    width: 150px;
    height: 90px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .abouti-numRight .numTop {
    font-size: 14px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .abouti-numRight .numUnit {
    font-size: 14px;
  }
  .companyPage .companyTop .company-img-text {
    margin-bottom: 30px;
  }
  .companyPage .companyTop {
    margin-bottom: 30px;
  }
  .companyPage .companyTop .company-num-main .company-num {
    font-size: 62px;
    line-height: 56px;
    margin-right: 10px;
  }
  .companyPage .companyTop .company-num-main .company-unit {
    font-size: 14px;
  }
  .companyPage .companyTop .company-num-main {
    margin: 10px 0 14px;
  }
  .culturePage .culture-top .culture-imgs .culture-imgs-center {
    width: 60%;
  }
  .culturePage .culture-bottom-img .culture-bottom-p {
    font-size: 14px;
  }
  .culturePage .culture-bottom-img {
    margin: 22px 0;
    border-radius: 8px;
  }
  .culturePage .culture-bottom-intros .culture-con {
    width: calc((100% - 30px) / 2);
    margin-right: 30px;
    margin-top: 18px;
  }
  .culturePage .culture-title {
    font-size: 14px;
  }
  .responsibilityPage .webPage-title-main {
    width: 100%;
  }
  .industriesPage .industries-item .industries-title .industries-index {
    font-size: 16px;
  }
  .industriesPage .industries-item .industries-title .industries-text {
    font-size: 14px;
  }
  .webPage {
    margin-top: 4%;
  }
  .proPage .pro-main .pro-item .proi-cur-title .proi-cur-title-text {
    font-size: 14px;
  }
  .proPage .pro-main .pro-item {
    width: calc((100% - 50px) / 3);
    margin-right: 25px;
    margin-top: 34px;
    padding-bottom: 32px;
  }
  .contactPage .indexPage-inner .contact-infos .contact-info {
    width: 33%;
    margin-bottom: 20px;
  }
  .contactPage .indexPage-inner .contactMenthods p {
    font-size: 14px;
  }
  .webPage-title-main {
    margin-bottom: 30px;
  }
  .contactPage .indexPage-inner .form {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 821px) {
  .coopPage3 .webPage-title-main {
    margin-bottom: 0;
  }
  .coopPage3 .process-inner .process-left-pc {
    display: none;
  }
  .coopPage3 .process-inner .process-left-m {
    display: block;
    margin-top: 20px;
  }
  .factoryPage .factory-one {
    width: calc((100% - 30px) / 3);
    margin-top: 20px;
  }
  .afterSales-swiper .afterSales-slide {
    width: 60%;
    margin-right: 16px;
  }
  .afterSales-swiper .afterSales-slide-active {
    width: 60%;
  }
  .afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-title .afterSales-text {
    font-size: 14px;
  }
  .afterSales-swiper .afterSales-slide .afterSales-inner .afterSales-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one {
    width: 50%;
  }
  .coopPage2 .identitys-swiper .identitys-one .identitys-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .coopPage3 .process-inner {
    flex-wrap: wrap;
  }
  .coopPage3 .process-inner .process-right .process-con {
    padding-left: 0;
  }
  .coopPage3 .process-inner .process-left {
    width: 100%;
  }
  .coopPage3 .process-inner .process-right {
    width: 100%;
  }
  .coopPage3 .process-inner .process-con .process-con-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .coopPage2 .identitys-swiper .identitys-slide {
    width: 70%;
  }
  .coopPage1::after {
    display: none;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left {
    width: 100%;
  }
  .coopPage1 .coopPage1-inner {
    flex-wrap: wrap;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-num {
    padding: 22px 0 0;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right {
    width: 100%;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-title .coopPage-con-title-text {
    font-size: 12px;
    line-height: 20px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-title .coopPage-con-icon {
    left: 2px;
    width: 36px;
    height: 36px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-active .coopPage-con-icon {
    left: calc(100% - 38px);
  }
  .coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-title {
    padding-top: 10px;
    width: 170px;
    padding-bottom: 10px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .numTitle {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 20px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .abouti-numRight .numTop {
    font-size: 12px;
    line-height: 20px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .abouti-numRight .numUnit {
    font-size: 12px;
    line-height: 20px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-right .abouti-main-num-one .count {
    font-size: 42px;
    line-height: 46px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con {
    margin-bottom: 16px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-active .coopPage-con-descs {
    padding: 30px 18px 16px;
  }
  .coopPage1 .coopPage1-inner .coopPage1-left .coopPage-con-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-right-icon {
    width: 55px;
    height: 55px;
  }
  .companyPage .companyBottom .companyDescs .companyImgsSwiper .companyImgs-one {
    width: 200px;
    margin-right: 20px;
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-intro {
    font-size: 12px;
    line-height: 20px;
  }
  .companyPage .companyBottom .companyDetails {
    width: 180px;
  }
  .companyPage .companyBottom .companyDescs {
    width: calc(100% - 180px);
    padding-top: 16px;
  }
  .companyPage .companyBottom .companyDetails .companyIcon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  .companyPage .companyBottom .companyDetails .companyDetail-text {
    width: calc(95% - 52px);
  }
  .companyPage .companyBottom .companyDetails .companyDetail-text {
    font-size: 14px;
  }
  .companyPage .companyTop .company-img-text {
    margin-bottom: 24px;
  }
  .companyPage .companyTop .company-img {
    width: 45%;
  }
  .companyPage .companyTop .company-text {
    width: 50%;
  }
  .companyPage .companyTop .company-video .company-video-mask .video-play {
    width: 42px;
  }
  .companyPage .companyTop .company-num-main .company-num {
    font-size: 52px;
    line-height: 42px;
  }
  .companyPage .companyTop .company-p {
    font-size: 12px;
    line-height: 20px;
  }
  .companyPage .companyTop .company-num-main .company-unit {
    font-size: 12px;
    line-height: 20px;
  }
  .companyPage .companyTop .company-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one .culture-icon {
    height: 24px;
  }
  .culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one {
    width: 68px;
    height: 68px;
  }
  .culturePage .culture-bottom-img {
    margin: 18px 0;
    border-radius: 6px;
  }
  .culturePage .culture-top .culture-imgs .culture-imgs-center .culture-one .culture-iText {
    font-size: 12px;
    line-height: 20px;
  }
  .culturePage .culture-desc {
    margin-top: 1px;
    font-size: 12px;
    line-height: 20px;
  }
  .culturePage .culture-bottom-intros .culture-con {
    width: calc((100% - 22px) / 2);
    margin-right: 22px;
    margin-top: 14px;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-swiper {
    padding-bottom: 30px;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-btns {
    bottom: 15px;
  }
  .historyPage .history-title-swiper .history-slide {
    width: 33.33%;
  }
  .historyPage .history-bottom-img {
    background: url('../images/web/history-bottom-img.png') no-repeat;
    background-size: cover;
    padding: 22px;
  }
  .historyPage .history-bottom-img .history-bottom-outer {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin: 0 auto;
  }
  .historyPage .history-bottom-img img {
    display: none;
  }
  .historyPage .history-title-swiper .history-slide {
    font-size: 14px;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-index {
    font-size: 45px;
    line-height: 62px;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-btns {
    bottom: 10%;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide {
    padding: 8% 6% 18%;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-title {
    font-size: 14px;
    line-height: 20px;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns {
    padding-left: 22px;
    bottom: 5px;
  }
  .responsibilityPage .responsibilitys {
    margin: 22px 0;
  }
  .responsibilityPage .responsibility-text {
    font-size: 12px;
    line-height: 20px;
  }
  .responsibilityPage .responsibilitys .responsibility-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin: 0 12px;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-slide {
    padding: 20px 22px 60px;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-desc-p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 8px;
  }
  .industriesPage .industries-item .industries-title .industries-index {
    font-size: 14px;
    margin-right: 5px;
  }
  .industriesPage .industries-item .industries-title .industries-text {
    width: calc(100% - 30px);
  }
  .industriesPage .industries-item {
    margin-top: 24px;
  }
  .industriesPage .industries-item .industries-main {
    flex-wrap: wrap;
  }
  .industriesPage .industries-item-event .industries-main {
    padding: 24px 20px;
  }
  .industriesPage .industries-item-odd .industries-title {
    width: 100%;
  }
  .industriesPage .industries-item .industries-title {
    padding-bottom: 8px;
  }
  .industriesPage .industries-item .industries-main .industries-con {
    width: 100%;
  }
  .industriesPage .industries-item .industries-main .industries-img {
    width: 100%;
    max-width: 320px;
  }
  .industriesPage .industries-item .industries-intros {
    margin-top: 12px;
  }
  .industriesPage .industries-item .industries-main .industries-con {
    padding: 12px 0 20px;
  }
  .industriesPage .industries-item .industries-intros .industries-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .newsPage .news-item .news-cur-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .classification .indexPage-inner {
    border-radius: 20px;
  }
  .classification .indexPage-inner .types-a-default {
    padding: 14px 0;
  }
  .contactPage .indexPage-inner .form-input .input {
    width: 32%;
  }
  .newsPage .news-item .news-cur-title {
    font-size: 14px;
    margin: 2px 0 4px;
  }
  .newsPage .news-item {
    width: calc((100% - 36px) / 3);
    margin-right: 18px;
    margin-top: 26px;
    padding-bottom: 26px;
  }
  .proPage .pro-main .pro-item .proi-cur-title {
    margin: 6px 0 2px;
  }
  .proPage .pro-main .pro-item .proi-cur-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .proPage .pro-main .pro-item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .classification .indexPage-inner .types-a-default {
    width: 25%;
  }
  .contactPage .indexPage-inner .formButton-box {
    margin-top: 20px;
  }
  .contactPage .indexPage-inner .form-input .input {
    font-size: 12px;
    line-height: 42px;
    height: 42px;
    padding: 0 5px 0 15px;
  }
  .contactPage .indexPage-inner .form-message .message {
    padding: 12px 5px 0 15px;
    font-size: 12px;
    line-height: 24px;
  }
  .contactPage .indexPage-inner .contact-infos .contact-type {
    font-size: 12px;
  }
  .contactPage .indexPage-inner .formButton-box .formButton {
    width: 138px;
    height: 36px;
    font-size: 12px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 641px) {
  .factoryPage .factory-one {
    width: calc((100% - 12px) / 2);
    margin-top: 16px;
    margin-right: 12px;
  }
  .factoryPage .factory-one:nth-of-type(3) {
    margin-top: 16px;
  }
  .factoryPage .factory-one .factory-text {
    font-size: 12px;
    line-height: 20px;
    padding: 8px 12px;
  }
  .factoryPage .factory-one:nth-of-type(4) {
    margin-top: 16px;
  }
  .factoryPage .factory-one:nth-of-type(3n) {
    margin-right: 12px;
  }
  .factoryPage .factory-one:nth-of-type(2n) {
    margin-right: 0;
  }
  .coopPage2 .identitys-swiper .identitys-slide {
    width: 80%;
  }
  .companyPage .companyBottom .companyDescs .companyImgsSwiper {
    margin-top: 25px;
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-cons {
    width: 100%;
    max-width: calc(95% - 42px);
    padding-bottom: 18px;
    border-bottom: none;
  }
  .companyPage .companyBottom .companyDescs .companyDesc-slide .companyDesc-right-icon {
    width: 42px;
    height: 42px;
  }
  .companyPage .companyBottom .indexPage-inner {
    flex-wrap: wrap;
  }
  .companyPage .companyBottom .companyDetails {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .companyPage .companyBottom .companyDetails .companyDetail {
    width: 33.33%;
  }
  .companyPage .companyBottom .companyDescs {
    width: 100%;
  }
  .companyPage .companyTop .company-img {
    width: 100%;
    max-width: 320px;
  }
  .companyPage .companyTop .company-img-text {
    flex-wrap: wrap;
  }
  .companyPage .companyTop .company-text {
    width: 100%;
    margin-top: 22px;
  }
  .companyPage .companyTop .company-video .company-video-inner {
    width: 100%;
    border-radius: 8px;
  }
  .culturePage .culture-bottom-img .culture-bottom-p {
    bottom: 10px;
  }
  .culturePage .culture-bottom-img {
    margin: 18px 0 10px;
  }
  .culturePage .culture-bottom-intros .culture-con {
    width: 100%;
    margin-right: 0;
    margin-top: 12px;
  }
  .culturePage .culture-top {
    flex-wrap: wrap;
  }
  .culturePage .culture-top .culture-imgs {
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
  }
  .culturePage .culture-top .culture-cons {
    width: 100%;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-title {
    font-size: 12px;
    line-height: 18px;
    bottom: 8px;
  }
  .historyPage .history-bottom-img .history-bottom-outer .history-main-slide .history-main-slide-index {
    font-size: 40px;
    line-height: 50px;
  }
  .responsibilityPage .responsibilitys .responsibility-icon {
    width: 35px;
    height: 35px;
    margin: 0 8px;
  }
  .responsibilityPage .responsibilitys {
    margin: 18px 0;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-title-p {
    font-size: 14px;
  }
  .responsibilityPage .responsibilitys-main {
    flex-wrap: wrap;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-slide {
    padding: 22px 0 55px;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-btns {
    padding-left: 0;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-imgs {
    width: 100%;
    max-width: 320px;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper .responsibilitys-desc-p {
    margin-top: 4px;
  }
  .responsibilityPage .responsibilitys-main .responsibilitys-con-swiper {
    width: 100%;
  }
  .responsibilityPage .responsibilitys-main {
    padding: 20px 20px 10px;
  }
  .industriesPage .industries-item-event .industries-main {
    padding: 18px 16px;
  }
  .industriesPage .industries-item .industries-intros .industries-dot {
    width: 4px;
    height: 4px;
    margin-right: 10px;
  }
  .industriesPage .industries-item .industries-intros .industries-title-p {
    font-size: 12px;
    line-height: 20px;
  }
  .newsPage .news-item {
    width: calc((100% - 18px) / 2);
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .newsPage .news-item:nth-of-type(3n) {
    margin-right: 18px;
  }
  .newsPage .news-item:nth-of-type(3) {
    margin-top: 20px;
  }
  .newsPage .news-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .proPage .pro-main .pro-item {
    width: calc((100% - 20px) / 2);
  }
  .proPage .pro-main .pro-item:nth-of-type(3n) {
    margin-right: 20px;
  }
  .proPage .pro-main .pro-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .webPage-title-main {
    margin-bottom: 24px;
  }
  .contactPage .indexPage-inner .contactMenthods p {
    margin-right: 9px;
  }
  .contactPage .indexPage-inner .form {
    margin-top: 24px;
  }
  .contactPage .indexPage-inner .form-desc {
    font-size: 12px;
    margin-top: 12px;
  }
  .contactPage .indexPage-inner .contactMenthods p {
    font-size: 12px;
  }
  .contactPage .indexPage-inner .contact-infos .contact-info {
    width: 50%;
    margin-bottom: 16px;
  }
  .contactPage .indexPage-inner .contact-infos .contact-info-address {
    width: 100%;
  }
  .contactPage .indexPage-inner .form-input .input {
    width: 100%;
    margin-bottom: 16px;
  }
  .contactPage .indexPage-inner .form-message {
    margin-top: 0;
  }
}
@media only screen and (max-width: 521px) {
  .coopPage2 .identitys-swiper .identitys-slide {
    width: 90%;
  }
  .companyPage .companyBottom .companyDetails .companyIcon {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }
  .companyPage .companyBottom .companyDetails .companyDetail-text {
    font-size: 12px;
    width: calc(95% - 42px);
  }
  .companyPage .companyBottom .companyDetails .companyDetail {
    width: 50%;
  }
  .companyPage .companyTop .company-video .company-video-mask .video-play {
    width: 34px;
  }
  .classification .indexPage-inner .types-a-default {
    width: 33.33%;
  }
  .contactPage .indexPage-inner .form-desc {
    margin-top: 6px;
  }
}
@media only screen and (max-width: 431px) {
  .afterSales-swiper .afterSales-slide {
    width: 100%;
  }
  .afterSales-swiper .afterSales-slide-active {
    width: 100%;
  }
  .coopPage2 .identitys-swiper .identitys-slide {
    width: 98%;
  }
  .coopPage3 .process-inner .process-left .process-con {
    width: calc(100% - 12px);
  }
  .coopPage3 .process-inner .process-right .process-con {
    margin-bottom: 0;
  }
  .culturePage .culture-bottom-img .culture-bottom-p {
    font-size: 12px;
    bottom: 6px;
  }
  .historyPage .history-title-swiper .history-slide {
    width: 50%;
  }
  .proPage .pro-main .pro-item {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
    margin-top: 24px;
    padding-bottom: 24px;
  }
  .proPage .pro-main .pro-item:nth-of-type(3n) {
    margin-right: 16px;
  }
  .proPage .pro-main .pro-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .classification .indexPage-inner .types-a-default .types-a-name {
    font-size: 12px;
  }
  .classification .indexPage-inner .types-a-default .types-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}
@media only screen and (max-width: 375px) {
  .contactPage .indexPage-inner .contact-infos .contact-info {
    width: 100%;
  }
}
