.ComponentBox {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1280px;
}

.ComponentLeft {
  margin: 30px 0;
  padding: 20px;
  width: 800px;
  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);
}

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

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

.WebsitePath a {
  color: #333;
  text-decoration: none;
}

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

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

.NewsMeta {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 15px;
  line-height: 16px;
  color: #86909c;
}

.NewsContent {
  display: flex;
  flex-direction: column;
}

.NewsContent p {
  font-size: 20px !important;
}

.NewsContent h1,
.NewsContent h2,
.NewsContent h3,
.NewsContent h4,
.NewsContent h5,
.NewsContent h6 {
  margin: 12px 0;
}

.NewsContent img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5em;
}

.NewsContent figcaption {
  margin-bottom: 20px;
}

.ShareBar {
  padding-top: 20px;
  border-top: 1px solid #f5f5f5;
  text-align: right;
}

.ShareOptions {
  display: inline-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;
}