
body {
  background-color: #FAFAFA;
}
.space {
  flex-grow: 1;
}
.container {
  width: 100%;
  min-width: 1050px;
  aspect-ratio: 1920 / 1080;
  background-image: url("./assets/bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
}

.container .imgs {
  width: 1050px;
  display: grid;
  grid-template-rows: repeat(2, max-content);
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 14px;
  
}
.container .imgs .icon {
  justify-self: start;
  /* justify-items: self-start; */
  /* align-self: ; */
}

.container .title1 {
  font-family: SourceHanSansSC-Bold-GBpc-EUC-H, SourceHanSansSC-Bold-GBpc-EUC-H;
  font-weight: 400;
  font-size: 33px;
  color: #FFFFFF;
  line-height: 33px;
  letter-spacing: 1px;
  margin-top: 36px;
}
.container .sub-title1 {
  font-family: SourceHanSansSC-Regular-GBpc-EUC-H, SourceHanSansSC-Regular-GBpc-EUC-H;
  font-weight: 400;
  font-size: 17px;
  color: #FFFFFF;
  line-height: 17px;
  margin-top: 17px;
}

.container .loop {
  margin-top: 24px;
  display: flex;
  align-items: stretch;

}

.container .loop .left {
  width: 690px;
  height: 390px;
  position: relative;
}
.container .loop .left .swiper {
  width: 100%;
  height: 100%;
}
.container .loop .left .swiper .swiper-slide {
  position: relative;
}
.container .loop .left .swiper .swiper-slide .label {
  position: absolute;
  color: #fff;
  font-size: 18px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: #0000005e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.container .loop .left .tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  z-index: 9;
  padding: 0 15px;
  box-sizing: border-box;
  gap: 15px;
}
.container .loop .left .tooltip img {
  width: 16px;
  height: 33px;
  flex-shrink: 0;
  cursor: pointer;
}
.container .loop .left .tooltip .count {
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.container .loop .left .tooltip .count span {
  color: #D60000;
}

.container .loop .right {
  width: 360px;
  height: 390px;
  background-color: #ffffffa7;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.container .loop .right article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 10px;
}
.container .loop .right .title {
  color: #1A1A1A;
  font-size: 17px;
}
.container .loop .right .desc {
  color: #1A1A1A;
  font-size: 12px;
}
.container .loop .right .list {
  width: 100%;
  height: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container .loop .right .list p {
  font-size: 14px;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  
  

}
.container .loop .right .list p::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #000000;
  margin-right: 5px;
}

.point-menu {
  width: 100%;
  background-color: #F2F2F2;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-menu a {
  width: 210px;
  text-align: center;
  font-family: SourceHanSansSC-Regular-GBpc-EUC-H, SourceHanSansSC-Regular-GBpc-EUC-H;
  font-weight: 400;
  font-size: 23px;
  color: #000000;
  line-height: 34px;
  letter-spacing: 1px;
  height: 34px;
  text-decoration: none;
}
.point-menu a + a {
  box-sizing: border-box;
  border-left: 2px solid #B3B3B3;
}

#hdds {
  width: 1050px;
  margin: 60px auto 0;
}
#hdds .bar {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #F2F2F2;
  height: 66px;
  padding: 0 14px;
  box-sizing: border-box;
  gap: 14px;
}
#hdds .bar .line {
  width: 6px;
  height: 44px;
  background: #FF8A14;
  border-radius: 3px 3px 3px 3px;
}

#hdds .bar a{
  font-family: SourceHanSansSC-Regular-GBpc-EUC-H, SourceHanSansSC-Regular-GBpc-EUC-H;
  font-weight: 400;
  font-size: 19px;
  color: #000000;
  line-height: 19px;
  text-decoration: none;
}

#hdds .activity {
  margin-top: 45px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
}
#hdds .activity .card {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;

}
#hdds .activity .card .cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
#hdds .activity .card .desc {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  box-sizing: border-box;
}
#hdds .activity .card .desc .tag {
  background-color: #FF8A14;
  color: #fff;
  font-size: 16px;
  padding: 2px 8px;
  border-radius: 40px;
  flex-shrink: 0;
}
#hdds .activity .card .desc .title {
  font-size: 18px;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  width: 0;
  flex-grow: 1;
  text-decoration: none;
}

#bd {
  width: 1050px;
  margin: 60px auto 0;
}
#bd .bar {
  width: 100%;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#bd .bar .more {
  position: absolute;
  text-decoration: none;
  top: 15px;
  right: 0;
  /* background-color: #F2F2F2; */
  /* width: 129px; */
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#bd .bar .more span {
  font-size: 18px;
  white-space: nowrap;
  font-weight: bold;
}
.bar .more img{
  width: 13px;
  height: 16px;
}
#bd .activity {
  margin-top: 45px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  
}
#bd .activity .card {
  background-color: #fff;
}
#bd .activity .card .cover {
  width: 100%;
  height: 193px;
  object-fit: cover;
}
#bd .activity .card .desc {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  box-sizing: border-box;
}
#bd .activity .card .desc + .desc {
  border-top: 1px solid #cccccc60;
}
#bd .activity .card .desc .dot {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #000000;
}
#bd .activity .card .desc .title {
  font-size: 14px;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  width: 0;
  flex-grow: 1;
  color: #1A1A1A;
  text-decoration: none;
}



#shipin {
  width: 1050px;
  margin: 60px auto 0;
}
#shipin .bar {
  width: 100%;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#shipin .bar .more {
  position: absolute;
  text-decoration: none;
  top: 15px;
  right: 0;
  /* background-color: #F2F2F2; */
  width: 129px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#shipin .bar .more span {
  font-size: 18px;
  font-weight: bold;
}
#shipin .activity {
  margin-top: 53px;
  display: grid;
  grid-template-rows: repeat(2, 168px);
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 47px ;
}
#shipin .activity .loop {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
  position: relative;
}
#shipin .activity .loop .pre {
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 99;
  cursor: pointer;
}
#shipin .activity .loop .next {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 99;
  cursor: pointer;
}
#shipin .activity .loop .count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 99;
  color: #fff;
}
#shipin .activity .loop .count span {
  color: #D60000;
}
#shipin .activity .loop .swiper {
  width: 100%;
  height: 100%;
  
  background-color: #1A1A1A;
  overflow: hidden;
}

#shipin .activity .loop .swiper .swiper-slide {
  position: relative;
}
#shipin .activity .loop .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#shipin .activity .loop .swiper .swiper-slide .label {
  position: absolute;
  color: #fff;
  font-size: 18px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: #0000005e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



#shipin .activity .card {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#shipin .activity .card .cover {
  width: 100%;
  height: 139px;
  object-fit: cover;
}
#shipin .activity .card .desc {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}
#shipin .activity .card .desc .title {
  font-size: 14px;
  color: #1A1A1A;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  width: 0;
  flex-grow: 1;
  text-decoration: none;
}



#tuji {
  width: 1050px;
  margin: 60px auto 0;
}
#tuji .bar {
  width: 100%;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#tuji .bar .more {
  position: absolute;
  text-decoration: none;
  top: 15px;
  right: 0;
  /* background-color: #F2F2F2; */
  width: 129px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#tuji .bar .more span {
  font-weight: bold;
  font-size: 18px;
}
#tuji .activity {
  width: 100%;
  margin-top: 50px;
  display: grid;
  grid-template-rows: 627px 197px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#tuji .activity .loop {
  grid-column-start: 1;
  grid-column-end: 4;
  width: 100%;
  height: 100%;
  position: relative;
}
#tuji .activity .loop .pre {
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 99;
  cursor: pointer;
}
#tuji .activity .loop .next {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 99;
  cursor: pointer;
}
#tuji .activity .loop .swiper {
  width: 100%;
  height: 100%;
  
  background-color: #1A1A1A;
  overflow: hidden;
}

#tuji .activity .loop .swiper .swiper-slide {
  position: relative;
}
#tuji .activity .loop .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#tuji .activity .loop .swiper .swiper-slide .label {
  position: absolute;
  color: #fff;
  font-size: 18px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: #0000005e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#tuji .activity .card {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#tuji .activity .card .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#zhuanfang {
  width: 1050px;
  margin: 60px auto 0;
}
#zhuanfang .bar {
  width: 100%;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#zhuanfang .bar .more {
  position: absolute;
  text-decoration: none;
  top: 15px;
  right: 0;
  /* background-color: #F2F2F2; */
  width: 129px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#zhuanfang .bar .more span {
  font-size: 18px;
  font-weight: bold;
}
#zhuanfang .activity {
  display: grid;
  grid-template-rows: 203px 203px;
  grid-template-columns: 0fr 356px;
  gap: 30px;
  margin-top: 30px;
}
#zhuanfang .activity .loop {
  grid-row-start: 1;
  grid-row-end: 3;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
#zhuanfang .activity .loop img {
  width: 270px;
  height: 100%;
}
#zhuanfang .activity .loop .info .title {
  font-size: 23px;
  color: #1A1A1A;
  margin-bottom: 10px;
}
#zhuanfang .activity .loop .info .desc {
  color: #1A1A1A;
  font-size: 15px;
}
#zhuanfang .activity .loop .info {
  overflow-y: auto;

}
#zhuanfang .activity .card {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#zhuanfang .activity .card .cover {
  width: 100%;
  height: 173px;
  object-fit: cover;
}
#zhuanfang .activity .card .desc {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}
#zhuanfang .activity .card .desc .title {
  font-size: 14px;
  color: #1A1A1A;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  width: 0;
  flex-grow: 1;
  text-decoration: none;
}


footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FAFAFA;
  padding: 30px 0;
  gap: 10px;
}
footer p {
  font-size: 14px;

}