.proPage {
  position: relative;
  background: url('../images/cur/pro-page-back.png') no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
.proPage .proPage-top {
  padding: 45px 5% 50px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proPage .proPage-top .proPage-word {
  width: calc(95% - 230px);
}
.proPage .proPage-top .proPage-word .proPage-title {
  font-weight: bold;
  font-size: 72px;
  color: #000000;
  line-height: 96px;
  font-style: italic;
  text-transform: uppercase;
  position: relative;
}
.proPage .proPage-top .proPage-word .proPage-title::after {
  content: "";
  width: 222px;
  height: 224px;
  position: absolute;
  top: -50%;
  left: 0;
  transform: translateX(-50%);
  background: url('../images/cur/pro-title-dot.png') no-repeat;
  background-size: 100% 100%;
}
.proPage .proPage-top .proPage-word .proPage-desc {
  font-weight: 400;
  font-size: 22px;
  color: #434343;
  line-height: 39px;
  margin-top: 26px;
}
.proPage .proPage-top .proPage-dot {
  width: 230px;
  height: 61px;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97), rgba(88, 147, 207, 0.97), rgba(110, 211, 179, 0.97));
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 61px;
  text-align: center;
  font-family: 'SourceHanSansSC-Medium';
  text-transform: uppercase;
}
.proPage .proPage-bottom {
  display: flex;
  padding: 0 40px 0 40px;
  justify-content: space-between;
}
.proPage .proi-types {
  width: 322px;
  position: relative;
  z-index: 12;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.proPage .proi-types .proi-type-btn {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  background: #ccc;
  color: #FFFFFF;
  line-height: 41px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: 0.5s;
  border-radius: 50%;
}
.proPage .proi-types .proi-type-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  transition: 0.5s;
  background: #ccc;
}
.proPage .proi-types .proi-type-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  transition: 0.5s;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97), rgba(88, 147, 207, 0.97), rgba(110, 211, 179, 0.97));
  z-index: 12;
}
.proPage .proi-types .proi-type-btn:hover {
  background: #4593B0;
}
.proPage .proi-types .proi-type-btn:hover::before {
  width: 80px;
}
.proPage .proi-types .proi-type-btn-prev::after {
  top: 0;
}
.proPage .proi-types .proi-type-btn-prev::before {
  top: 0;
}
.proPage .proi-types .proi-type-btn-next::after {
  bottom: 0;
}
.proPage .proi-types .proi-type-btn-next::before {
  bottom: 0;
}
.proPage .proi-types .proi-type-swiper {
  width: 100%;
  height: calc(100vh - 60px);
  position: relative;
}
.proPage .proi-types .swiper-wrapper {
  flex-direction: column;
}
.proPage .proi-types .proi-type-slide {
  width: 100%;
  cursor: pointer;
  border-bottom: 2px solid #CCCCCC;
  position: relative;
  padding: 36px 0;
  display: flex;
  align-items: center;
  height: auto;
}
.proPage .proi-types .proi-type-slide .proi-type-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.proPage .proi-types .proi-type-slide .proi-type-icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transition: 0.5s;
}
.proPage .proi-types .proi-type-slide .proi-type-icon .active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 43px;
}
.proPage .proi-types .proi-type-slide .proi-type-title {
  width: calc(100% - 43px);
  font-weight: 800;
  font-size: 22px;
  color: #BEBEBE;
  line-height: 47px;
  transition: 0.5s;
  text-transform: uppercase;
  font-family: 'SourceHanSansSC-Medium';
}
.proPage .proi-types .proi-type-slide::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
  transition: 0.5s;
}
.proPage .proi-types .proi-type-slide:hover .proi-type-icon {
  border: 1px solid transparent;
  border-image: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
}
.proPage .proi-types .proi-type-slide:hover .proi-type-icon .default {
  transform: translateX(43px);
}
.proPage .proi-types .proi-type-slide:hover .proi-type-icon .active {
  right: 0;
}
.proPage .proi-types .proi-type-slide:hover .proi-type-title {
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proPage .proi-types .proi-type-slide:hover::after {
  width: 100%;
}
.proPage .proi-types .proi-type-slide-active .proi-type-icon {
  border: 1px solid transparent;
  border-image: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
}
.proPage .proi-types .proi-type-slide-active .proi-type-icon .default {
  transform: translateX(43px);
}
.proPage .proi-types .proi-type-slide-active .proi-type-icon .active {
  right: 0;
}
.proPage .proi-types .proi-type-slide-active .proi-type-title {
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proPage .proi-types .proi-type-slide-active::after {
  width: 100%;
}
.proPage .proi-types .proi-type-slide:nth-last-of-type(1) {
  margin-right: 0;
}
.proPage .proi-types .classifyAll-btn {
  margin: 20px auto;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97), rgba(88, 147, 207, 0.97), rgba(110, 211, 179, 0.97));
  display: none;
  padding: 14px 12px;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
}
.proPage .proMain {
  width: calc(100% - 354px);
  background: #DCE7F8;
  border-radius: 10px;
  padding: 80px 32px 45px;
}
.proPage .proMain .pro-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.proPage .proMain .pro-item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  overflow: hidden;
  background-size: cover;
  transition: 0.5s;
}
.proPage .proMain .pro-item .proi-data-one-dom {
  position: relative;
  display: block;
  width: 100%;
}
.proPage .proMain .pro-item .proi-data-one-dom .proi-data-one-cover {
  width: 100%;
  aspect-ratio: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proPage .proMain .pro-item .proi-data-one-dom .proi-data-one-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}
.proPage .proMain .pro-item .proi-data-one-title {
  font-weight: 800;
  font-size: 20px;
  color: #414141;
  line-height: 32px;
  text-align: center;
  font-family: 'SourceHanSansSC-Medium';
  display: block;
  width: 100%;
  transition: 0.5s;
  margin: 15px 0;
  text-transform: uppercase;
}
.proPage .proMain .pro-item:hover .proi-data-one-title {
  color: #6BD0B5;
}
.proPage .proMain .pro-item:hover .proi-data-one-dom .proi-data-one-cover img {
  transform: scale(1.05);
}
.proPage .proMain .pro-item:nth-of-type(3n) {
  margin-right: 0;
}
.proPage .webPage {
  margin-top: 30px;
}
@media only screen and (max-width: 1918px) {
  .proPage .proPage-top {
    padding: 30px 5% 44px 5%;
  }
  .proPage .proPage-top .proPage-word .proPage-title {
    font-size: 52px;
    line-height: 80px;
  }
  .proPage .proPage-top .proPage-word .proPage-desc {
    font-size: 18px;
    line-height: 30px;
    margin-top: 14px;
  }
  .proPage .proPage-top .proPage-dot {
    font-size: 18px;
  }
  .proPage .proPage-bottom {
    padding: 0 40px 0 40px;
  }
  .proPage .proi-types {
    width: 292px;
  }
  .proPage .proMain {
    padding: 50px 32px 45px;
    width: calc(100% - 320px);
  }
  .proPage .proMain .pro-item .proi-data-one-title {
    font-size: 18px;
  }
  .proPage .proi-types .proi-type-slide .proi-type-title {
    font-size: 20px;
    line-height: 40px;
  }
  .proPage .proi-types .proi-type-slide {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1598px) {
  .proPage .proPage-bottom {
    padding: 0 32px;
  }
  .nban .pro-nban-outer .pro-nban-img {
    width: calc(90% - 580px);
    padding-left: 5%;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-title {
    font-size: 60px;
    line-height: 80px;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-desc {
    font-size: 18px;
    line-height: 32px;
    margin-top: 22px;
  }
  .proPage .proPage-top .proPage-word .proPage-title {
    font-size: 56px;
    line-height: 70px;
  }
  .proPage .proi-types .proi-type-slide {
    padding: 25px 0;
  }
  .proPage .proi-types .proi-type-slide .proi-type-icon {
    width: 40px;
    height: 40px;
  }
  .proPage .proi-types .proi-type-slide .proi-type-title {
    font-size: 18px;
    line-height: 36px;
  }
  .proPage .proPage-top .proPage-dot {
    font-size: 17px;
  }
  .proPage .proMain .pro-item .proi-data-one-title {
    font-size: 16px;
  }
  .proPage .proMain {
    padding: 32px 2% 45px;
  }
  .proPage .proPage-top {
    padding: 34px 5% 36px 5%;
  }
  .proPage .proPage-top .proPage-dot {
    width: 200px;
    height: 56px;
    line-height: 56px;
  }
  .proPage .proPage-top .proPage-word .proPage-desc {
    font-size: 19px;
    line-height: 34px;
    margin-top: 27px;
  }
  .proPage .proPage-top .proPage-word .proPage-title {
    font-size: 50px;
    line-height: 55px;
  }
  .proPage .proPage-top .proPage-word .proPage-desc {
    font-size: 18px;
    line-height: 32px;
    margin-top: 22px;
  }
  .proPage .proi-types .proi-type-slide {
    padding: 20px 0;
  }
  .proPage .proi-types .proi-type-slide .proi-type-icon {
    width: 36px;
    height: 36px;
  }
}
@media only screen and (max-width: 1365px) {
  .proPage .proMain .pro-item {
    width: calc((100% - 20px) / 2);
  }
  .proPage .proMain .pro-item:nth-of-type(3n) {
    margin-right: 20px;
  }
  .proPage .proMain .pro-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .nban .pro-nban-outer .pro-nban-words {
    width: 500px;
    padding: 0 5%;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-title {
    font-size: 45px;
    line-height: 60px;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-desc {
    font-size: 17px;
    line-height: 31px;
    margin-top: 18px;
  }
  .nban .pro-nban-outer .pro-nban-img {
    width: calc(90% - 500px);
  }
  .proPage .proPage-top .proPage-word .proPage-title {
    font-size: 46px;
    line-height: 64px;
  }
  .proPage .proPage-top {
    padding: 42px 5% 42px 5%;
  }
  .proPage .proi-types .proi-type-slide {
    padding: 23px 0;
  }
  .proPage .proi-types .proi-type-slide .proi-type-icon {
    width: 33px;
    height: 33px;
  }
  .proPage .proMain {
    max-width: calc(95% - 322px);
  }
  .proPage .proPage-top .proPage-word .proPage-desc {
    font-size: 18px;
    line-height: 32px;
    margin-top: 22px;
  }
  .proPage .proPage-top .proPage-dot {
    width: 183px;
    height: 52px;
    line-height: 52px;
  }
  .proPage .proPage-top .proPage-dot {
    font-size: 16px;
  }
}
@media (max-width: 1250px) {
  .nban .pro-nban-outer {
    padding-top: 0;
  }
  .nban .pro-nban-outer .pro-nban-img {
    width: calc(95% - 500px);
  }
  .proPage .proi-types .proi-type-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .proPage .proi-types .proi-type-slide .proi-type-title {
    font-size: 17px;
    line-height: 32px;
  }
  .proPage .proi-types {
    min-width: 236px;
  }
  .proPage .proMain {
    max-width: calc(95% - 236px);
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-title {
    font-size: 36px;
    line-height: 40px;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-desc {
    font-size: 16px;
    line-height: 30px;
    margin-top: 15px;
  }
  .nban .pro-nban-outer .pro-nban-words {
    width: 40%;
    padding: 0 0;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-desc {
    font-size: 14px;
    line-height: 28px;
    margin-top: 13px;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-title {
    font-size: 30px;
    line-height: 28px;
    text-shadow: 0px 5px 1px rgba(45, 0, 16, 0.42);
  }
  .nban .pro-nban-outer .pro-nban-img {
    width: 50%;
    padding-left: 0;
  }
  .nban .pro-nban-outer {
    padding: 0 5%;
  }
}
@media (max-width: 1023px) {
  .proPage .proPage-bottom {
    padding: 0 5%;
  }
  .prosClassifyMActive {
    left: 20%;
  }
  .prosClassifyMMaskActive {
    display: block;
  }
  .proPage .proPage-top .proPage-word .proPage-title {
    font-size: 36px;
    line-height: 50px;
  }
  .proPage .proPage-top .proPage-word .proPage-desc {
    font-size: 17px;
    line-height: 30px;
    margin-top: 14px;
  }
  .proPage .proPage-top .proPage-word {
    width: 100%;
  }
  .proPage .proPage-top .proPage-dot {
    display: none;
  }
  .proPage .proi-types .proi-type-slide .proi-type-title {
    font-size: 16px;
    line-height: 28px;
  }
  .proPage .proi-types .proi-type-slide {
    padding: 19px 0;
  }
  .proPage .proMain {
    max-width: calc(95% - 226px);
  }
  .proPage .proMain .pro-item .proi-data-one-title {
    font-size: 14px;
    line-height: 24px;
  }
  .proPage .proMain .pro-item {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
  .proPage .proMain .pro-item:nth-of-type(3n) {
    margin-right: 15px;
  }
  .proPage .proMain .pro-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .proPage .proi-types .proi-type-slide .proi-type-icon {
    width: 30px;
    height: 30px;
  }
  .proPage .proi-types {
    height: auto;
    width: 100%;
  }
  .proPage .proPage-top {
    padding: 42px 5% 0 5%;
  }
  .proPage .proi-types .proi-type-btn {
    display: none;
  }
  .proPage .proi-types .proi-type-swiper {
    display: none;
  }
  .proPage .proPage-bottom {
    flex-wrap: wrap;
  }
  .proPage .proi-types .classifyAll-btn {
    display: block;
  }
  .proPage .proMain {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .nban .pro-nban-outer .pro-nban-img {
    display: none;
  }
  .proPage .proMain .pro-item .proi-data-one-title {
    font-size: 13px;
    line-height: 23px;
  }
  .proPage .proPage-top .proPage-word .proPage-title {
    font-size: 32px;
    line-height: 40px;
  }
  .proPage .proPage-top .proPage-word .proPage-desc {
    font-size: 15px;
    line-height: 28px;
    margin-top: 12px;
  }
  .proPage .proi-types .classifyAll-btn {
    font-size: 14px;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-title {
    text-align: center;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-title {
    font-size: 22px;
    line-height: 26px;
  }
  .nban .pro-nban-outer .pro-nban-words {
    width: 100%;
  }
  .nban .pro-nban-outer .pro-nban-words .pro-nban-desc {
    display: none;
  }
  .proPage .proMain {
    padding: 25px 3% 35px;
  }
}
@media (max-width: 429px) {
  .proPage .proMain .pro-item .proi-data-one-title {
    font-size: 12px;
    line-height: 22px;
  }
}
