html,
body {
  position: relative;
}

.pc {
  display: block;
}

.phone {
  display: none;
}

@media screen and (max-width: 960px) and (min-width:0px) {
  .pc {
    display: none;
  }

  .phone {
    display: block;
  }
}

/* 标题 */
section {
  padding: 120px 0;
  overflow: hidden;
}

section .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section .title h1 {
  color: #000;
  font-size: 38px;
  font-family: "bold";
  line-height: 1;
  margin: 0;
}



.More {
  width: 146px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.More::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background: #DB2624;
  transition: 1s;
  z-index: -1;
}

.More::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 1s;
  z-index: -1;
}

.MoreWhite::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.MoreWhite {
  color: #fff;
}

.MoreBlack {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  color: #000;
}

.MoreBlack::before {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.More:hover {
  color: #fff;
}

.More:hover::after {
  left: 0;
}



/* banner */
@keyframes slideShow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.bannerbigbox {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bannerSwiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bannerSlide {
  overflow: hidden;
}

.bannerSlide img {
  position: relative;
  width: 100%;
  animation: slideShow 10s linear infinite 0s;
}

.bannerSlide .text {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;

}

.bannerSlide .text .container {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}


.bannerSlide .text h1 {
  width: 100%;
  color: #FFF;
  font-size: 48px;
  font-family: "bold";
  line-height: 60px;
  letter-spacing: 2px;
}

.bannerSlide .text .desc {
  margin: 30px 0 60px;
  width: 100%;
  max-width: 580px;
  color: #fff;
  text-align: justify;
  font-size: 14px;
  font-family: 'Light';
  line-height: 26px;
}

/* end-banner */
/* box2 */
.section2 {
  background: url(../../images/section2.png) no-repeat;
  background-size: cover;
}

.box2 {
  margin-top: 60px;
  padding: 0 100px;
  position: relative;
}

.box2Swiper .swiper-slide a {
  display: block;
}

.box2Swiper .text {
  color: #000;
  background: #fff;
  padding: 52px 52px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box2Swiper .text h1 {
  margin: 0;
  font-size: 32px;
  font-family: bold;
}

.box2Swiper .text span {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 150px;
  height: 36px;
  font-size: 16px;
  font-family: bold;
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box2Swiper .text .desc {
  color: #B0B0B0;
  text-align: justify;
  font-size: 14px;
  line-height: 22px;
  height: 88px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.box2 .swiper-button-next,
.box2 .swiper-button-prev {
  border: 1px solid #000;
  height: 100%;
  width: 46px;
  top: 0;
  margin-top: 0;
}

.box2 .swiper-button-next:after,
.box2 .swiper-button-prev:after {
  color: #767676;
  font-weight: bold;
  font-size: 24px;
}

/* end-box2 */
/* box3 */
.section3 {
  position: relative;
  padding-top: 0;
  background: #FCFCFC;
}

.section3 .container {
  position: relative;
  z-index: 1;
}

.box3 .title {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.box3 .title .desc {
  color: #B0B0B0;
  font-size: 16px;
  line-height: 30px;
  max-width: 445px;
  margin-top: 40px;
  margin-bottom: 60px;
}


.box3List {
  margin-top: 120px;
  margin-bottom: 100px;
  display: flex;
}

.box3List .item {
  color: #767676;
  font-family: bold;
  margin-right: 50px;
  position: relative;
  z-index: 1;
}

.box3List .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0;
  background: #DB2624;
  transition: 1s;
  z-index: -1;
}

.box3List .item.cur,
.box3List .item:hover {
  color: #000;
}


.box3List .item.cur::after,
.box3List .item:hover::after {
  height: 50%;
  background: #DB2624;
}

.box3Product {
  position: relative;
}

.box3Product .itemBox {
  display: none;
}

.box3Product .item {
  display: flex;
  justify-content: space-between;
}

.box3Product .item a {
  display: block;
  position: relative;
  width: 200px;
  height: 200px;
  /* background: #000; */
}

.box3Product .item a img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask: no-repeat center / contain;
  mask: no-repeat center / contain;
  -webkit-mask-image: url(/assets//images/z60.png);
  mask-image: url(/assets/images/z60.png);
  background: #000;
}

.box3Product .item a p {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 1s;
}

.box3Product .item a:hover p {
  opacity: 1;
  background: radial-gradient(50% 50% at 50% 50%, #00000080 0%, #0000004d 50%, #00000000 85.94%);
}

.box3ImgBox {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 0;
}

.box3ImgBox::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/172/20231019134917_fVwpOhxh.png) no-repeat;
  background-size: 100% 100%;
}

.box3ImgBox img {
  width: 65%;
  opacity: 0;
  position: absolute;
  right: 0;
  top: -20px;
  transition: 2s;
}

.box3ImgBox img.cur {
  opacity: 1;
  transition: 2s;
  top: 0;
}

.box3ImgBox img.cur:hover {
  top: -20px;
}

/* end-box3 */
/* box4 */
.section4 .title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section4 .text {
  margin: 25px 0 70px;
  color: #B0B0B0;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}

.section4 .number {
  display: flex;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  justify-content: space-between;
}

.section4 .number .item .top {
  display: flex;
  align-items: baseline;
}

.section4 .number .item span {
  color: #DB2624;
  font-size: 40px;
  font-family: bold;
  line-height: 1;
  margin: 0;
}

.section4 .number .item h1 {
  color: #DB2624;
  font-size: 40px;
  font-family: bold;
  line-height: 1;
  margin: 0;
}

.section4 .number .item p {
  color: #DB2624;
  font-size: 16px;
  font-family: bold;
  line-height: 1;
  margin: 0;
}

.section4 .number .item .desc {
  margin-top: 10px;
  color: #B0B0B0;
  text-align: center;
  font-size: 16px;
  font-family: bold;
  line-height: 1;
}


/* end-box4 */
/* box5 */
.section5 {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  background: #fcfcfc;
}

.box5 {
  display: flex;
  flex-wrap: wrap;
}

.box5 .title {
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.box5 .title h1 {
  padding-bottom: 75px;
}

.box5 .title p {
  margin: 0;
  color: #636363;
  font-size: 16px;
  line-height: 2;
}

.box5 .Box5Img {
  width: calc(50% - 340px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.box5 .Box5Img img {
  margin-left: 60px;
}

.box5Swiper {
  position: relative;
  height: 700px;
  width: 50%;
}


.box5Swiper .swiper-slide {
  height: 100%;
  width: 100%;
  position: relative;
  transition: .1s;
  padding-left: 160px;
  display: flex;
  align-items: center;
  left: -120px;
  transform: rotate(-30deg);
  opacity: 0.25;
}

.box5Swiper .swiper-slide .text {
  position: relative;
  display: flex;
  align-items: center;
}

.box5Swiper .swiper-slide .text span {
  color: #DB2624;
  font-size: 30px;
  line-height: 1;
  font-family: bold;
  margin: 0;
}

.box5Swiper .swiper-slide .text h1 {
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-family: bold;
  margin: 0 45px 0 15px;
}

.box5Swiper .swiper-slide .text h2 {
  opacity: 0;
  color: #000;
  font-size: 16px;
  line-height: 1;
  margin: 0;
  position: relative;
  transition: .3s;
}

.box5Swiper .swiper-slide h2 p {
  margin: 0;
  display: contents;
}

.box5Swiper .swiper-slide img {
  opacity: 0;
  position: absolute;
  top: 200%;
  right: calc(50% - 110px);
  width: 220px;
  transition: .3s;
}


.box5Swiper .swiper-slide-active {
  left: 0px !important;
  transform: rotate(0deg) !important;
  opacity: 1 !important;
}

.box5Swiper .swiper-slide-prev {
  left: -36px !important;
  transform: rotate(-15deg) !important;
  opacity: 0.5 !important;

}

.box5Swiper .swiper-slide-next {
  left: -36px !important;
  transform: rotate(15deg) !important;
  opacity: 0.5 !important;
}

.box5Swiper .swiper-slide-next+.swiper-slide {
  left: -120px !important;
  transform: rotate(30deg) !important;
  opacity: 0.25 !important;
}

.box5Swiper .swiper-slide-active .text h2 {
  opacity: 1;
}

.box5Swiper .swiper-slide-active img {
  opacity: 1;
}

.box5Swiper::after {
  content: "";
  display: block;
  width: 282px;
  height: 140px;
  position: absolute;
  left: -48px;
  top: -57px;
  background: #fcfcfc;
  z-index: 9;
  transform: rotate(331deg) !important;
}

.box5Swiper .swiper-slide::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 60px;
  top: calc(50% - 6px);
  background: #C24A47;
  border-radius: 50%;
  z-index: 9;
  opacity: 0;
}

.box5Swiper .swiper-slide-active::after {
  opacity: 1;
}

/* end-box5 */
/* box6 */
.section6 {
  background: url(../../images/section6.png);
  background-size: cover;
  padding: 0;
}

.section6 .title {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
  box-shadow: 0px 2px 3px -3px #000;
}

.box6 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.box6 .left {
  width: 40%;
  padding-left: calc((100vw - 1600px) / 2 + 15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box6 .left .item {
  margin: 40px 0;
  display: flex;
  align-items: center;
}

.box6 .left .item h1 {
  color: #000;
  font-size: 22px;
  margin-left: 25px;
  font-family: bold;
  line-height: 1;
}

.box6 .left .number {
  width: 26px;
  height: 26px;
  color: #fff;
  font-size: 14px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box6 .left .item.cur .number {
  color: #fff;
  background: #BE1E1C;
}

.box6 .left a {
  margin-top: 60px;
}

.box6 .box6right {
  width: 60%;
}

.box6 .right {
  width: 100%;
  display: none;
  object-fit: cover;
}

.box6 .right .bg {
  width: 100%;
  min-height: 700px;
  object-fit: cover;
  padding-left: 190px;
  position: relative;
}

.box6Swiper .swiper-slide {
  display: flex;
  align-items: center;
}

.box6Swiper {
  position: relative;
}

.box6Swiper .item {
  width: 380px;
  padding: 75px 0 60px;
  background: #fff;
  position: absolute;
  z-index: 1;
}

.box6Swiper .item .number {
  position: absolute;
  left: 35px;
  top: 35px;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 18px;
  font-family: bold;
  background: #BE1E1C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box6Swiper .item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #B7B7B7;
  transform: scale(0.95);
  z-index: -1;
}


.box6Swiper .text {
  color: #000;
  padding: 0 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box6Swiper .text h1 {
  margin: 0;
  font-size: 32px;
  font-family: bold;
}

.box6Swiper .text span {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 150px;
  height: 36px;
  font-size: 16px;
  font-family: bold;
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box6Swiper .text .desc {
  color: #B0B0B0;
  text-align: justify;
  font-size: 14px;
  line-height: 22px;
}

.box6Swiper .item img {
  display: block;
  margin: 0 auto 30px;
  width: 300px;
  height: 150px;
  object-fit: cover;
}

.box6Swiper .item a {
  margin: 0 auto;
}




.box6Swiper .swiper-button-prev {
  margin: 0;
  width: 50px;
  height: 50px;
  background: rgb(255 255 255 / 70%);
  right: 0;
  left: auto;
  top: calc(50% - 25px);
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.box6Swiper .swiper-button-prev::after {
  color: #333;
  font-size: 18px;
  opacity: 1;
}

.box6Swiper .swiper-button-next {
  margin: 0;
  width: 50px;
  height: 50px;
  background: rgb(191 31 29 / 70%);
  right: 0;
  left: auto;
  top: calc(50% + 30px);
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.box6Swiper .swiper-button-next::after {
  color: #fff;
  font-size: 18px;
  opacity: 1;
}

.box6 .item:nth-child(1) .number::after {
  content: "壹";
  display: block;
  color: #fff;
}

.box6 .item:nth-child(2) .number::after {
  content: "贰";
  display: block;
  color: #fff;
}

.box6 .item:nth-child(3) .number::after {
  content: "叁";
  display: block;
  color: #fff;
}

.box6 .item:nth-child(4) .number::after {
  content: "肆";
  display: block;
  color: #fff;
}

.box6 .item:nth-child(5) .number::after {
  content: "伍";
  display: block;
  color: #fff;
}

.box6 .item:nth-child(6) .number::after {
  content: "陆";
  display: block;
  color: #fff;
}

.box6 .item:nth-child(7) .number::after {
  content: "柒";
  display: block;
  color: #fff;
}

/* end-box6 */
/* box7 */





/* end-box7 */
/* box8 */







/* end-box8 */