.WebsitePathBox {
  margin-top: 30px;
  width: 1280px;
}

.ComponentBox {
  display: flex;
  width: 1280px;
}

.Component {
  margin-top: 20px;
  width: 1280px;
  border-radius: 8px;
  background: linear-gradient(-45deg,#e0ecf8,#f3f7fb);
  box-shadow: -3px -3px 10px rgba(255,255,255,.58),3px 3px 10px rgba(166,182,195,.72);
}

.WebsitePath {
  display: flex;
  align-items: center;
  font-size: 20px;
}

.WebsitePath a {
  color: #000;
}

.WebsitePath a:not(:last-child)::after {
  content: ">";
  margin: 10px;
  color: #999;
}

.GalleryImgSwiper {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.GalleryImgSwiper .GalleryBox {
  display: flex;
}

.GalleryImgSwiper .GalleryImg {
  flex-shrink: 0;
  width: 1280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.GalleryImgSwiper .GalleryImg img {
  height: 640px;
  border-radius: 8px;
}

.GalleryImgSwiper .GalleryArrowPrev,
.GalleryImgSwiper .GalleryArrowNext {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.GalleryImgSwiper .GalleryArrowPrev { left: 10px; }
.GalleryImgSwiper .GalleryArrowNext { right: 10px; }

.GalleryImgSwiper .GalleryArrowPrev:after,
.GalleryImgSwiper .GalleryArrowNext:after {
  content: '';
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.GalleryImgSwiper .GalleryArrowPrev:after {
  transform: rotate(-135deg);
}

.GalleryImgSwiper .GalleryArrowNext:after {
  transform: rotate(45deg);
}

.GalleryImgSwiper .GalleryArrowPrev:hover,
.GalleryImgSwiper .GalleryArrowNext:hover {
  background: rgba(0, 0, 0, 0.2);
}

.GalleryInfoFixed {
  padding: 20px 20px 0;
}

.GalleryTitle h1 {
  font-size: 36px;
  font-weight: bold;
  line-height: 50px;
  text-align: justify;
}

.NewsMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #66666666;
  color: #86909c;
  margin: 25px 0;
}

.SourceTime {
  display: flex;
  gap: 20px;
}

.ShareOptions {
  display: flex;
  align-items: center;
}

.SociaMedia {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.SociaMedia svg {
  width: 25px;
  height: 25px;
  fill: #696969;
  transition: fill .3s;
}

.SociaMedia.QQ:hover svg { fill: #12b7f5; }
.SociaMedia.WeChat:hover svg { fill: #07c160; }
.SociaMedia.Weibo:hover svg { fill: #e6162d; }
.SociaMedia.Facebook:hover svg { fill: #1877f2; }
.SociaMedia.X:hover svg { fill: #000; }

.QrPopup {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  z-index: 100;
  text-align: center;
}

.QrPopup img {
  width: 150px;
  height: 150px;
  display: block;
}

.QrPopup p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.GallerySummarySwiper .GalleryBox {
  display: grid;
}

.GallerySummarySwiper .GallerySummary {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 0 20px 20px;
}

.GallerySummarySwiper .GallerySummary.active {
  opacity: 1;
  visibility: visible;
  font-size: 20px;
  text-indent: 2em;
  line-height: 1.75;
  text-align: justify;
  color: #000;
}