.label-text {
  font-weight: 400;
  font-size: 0.7353vw;
  text-align: center;
  color: var(--black-color);
}

/** #region 分割线样式，标题从data-title中读取，需要加上 */
.split-line {
  width: 100%;
  height: 1px;
  background-color: #b13636;
  margin-block-end: 2.2059vw;
  position: relative;
}

.split-line::before {
  /* 从data-title中读取内容 */
  content: attr(data-title);
  position: absolute;
  top: 100%;
  left: 0;
  width: fit-content;
  height: fit-content;
  padding: 0.3676vw 1.4706vw;
  background-color: var(--red-color);
  color: var(--white-color);
}

.split-line-title-text {
  font-weight: 400;
  font-size: 1.0294vw;
  color: var(--white-color);
}

.split-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 0.3676vw;
  height: 0.3676vw;
  background-color: var(--red-color);
  /* 一个菱形，在顶点全在正方形的中点上 */
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.split-line-no-icon.split-line::after {
  display: none;
}

.split-line-more-text {
  position: absolute;
  top: 0.5882vw;
  right: 0.7353vw;
  font-weight: 400;
  font-size: 0.9559vw;
  color: var(--red-color);
  cursor: pointer;
}

/** #regionend 分割线样式 */
/** #region 重邮新闻 */
.focus-section {
  --top-news-transition: 0.5s ease-in-out;
}

.focus-section .focus-layout {
  width: 100%;
  height: 25.7353vw;
  display: grid;
  grid-template-columns: 38.2353vw 41.9118vw;
  grid-template-rows: 1fr;
  justify-content: space-between;
  padding-block-end: 0.2941vw;
}

.focus-section .focus-layout .top-news {
  width: 100%;
  height: 25.4412vw;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.focus-section .focus-layout .top-news:hover::before {
  animation: shine 0.8s;
}

.focus-section .focus-layout .top-news:hover .top-news-photo-image {
  transform: scale(1.1);
}

.focus-section .focus-layout .top-news:hover .top-news-title .top-news-title-text {
  color: #e8c78f;
}

.focus-section .focus-layout .top-news::before {
  content: "";
  position: absolute;
  left: -85%;
  top: 0;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  transform: skewX(-25deg);
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1));
}

@keyframes shine {
  100% {
    left: 115%;
  }
}

.focus-section .focus-layout .top-news .top-news-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform var(--top-news-transition);
}

.focus-section .focus-layout .top-news .top-news-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.4412vw 1.6176vw 0.5882vw 1.6176vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.86));
  color: var(--white-color);
}

.focus-section .focus-layout .top-news .top-news-title .top-news-title-text {
  transition: color var(--top-news-transition);
  display: block;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  color: var(--white-color);
  font-size: 1.3235vw;
  line-height: 1.5;
}

.focus-section .focus-layout .top-news .top-news-title .top-news-content-text {
  display: -webkit-box;
  margin: 0.5882vw 0 0 0;
  overflow: hidden;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--white-color);
  font-size: 1.0294vw;
  line-height: 1.8;
  text-indent: 2em;
}

.focus-section .focus-layout .headline-card {
  box-shadow: 0 0.2941vw 0.2941vw 0 rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-rows: 2.1324vw 1fr;
}

.focus-section .focus-layout .headline-card .headline-head {
  background-color: var(--red-color);
  height: 2.1324vw;
  display: flex;
  flex-direction: row-reverse;
  padding-inline-end: 0.6618vw;
  align-items: center;
}

.focus-section .focus-layout .headline-card .headline-head a {
  font-weight: 400;
  font-size: 0.9559vw;
  text-decoration: none;
  color: var(--white-color);
}

.focus-section .focus-layout .headline-card .compact-list {
  height: 100%;
  padding-block: 2.0588vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.focus-section .focus-layout .headline-card .compact-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 1.4706vw 2.9412vw 1fr;
  column-gap: 0.5882vw;
  align-items: end;
  padding-inline: 1.5441vw;
}

.focus-section .focus-layout .headline-card .compact-list li .date-day,
.focus-section .focus-layout .headline-card .compact-list li .date-month {
  height: fit-content;
  font-weight: 400;
  font-size: 1.1029vw;
  color: var(--red-color);
}

.focus-section .focus-layout .headline-card .compact-list li .date-month {
  font-size: 0.7353vw;
}

.focus-section .focus-layout .headline-card .compact-list li a {
  font-weight: 400;
  font-size: 0.9559vw;
  color: var(--black-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.focus-section .focus-layout .headline-card .compact-list li a:hover {
  color: var(--red-color);
}

/** #endregion 重邮新闻 */
/** #region 邮理说模块样式 学习园地模块样式 */
.pictures-section .pictures-grid {
  display: flex;
  justify-content: space-between;
}

.pictures-section .pictures-grid article {
  width: 19.4853vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.pictures-section .pictures-grid article .picture-photo {
  width: 19.4853vw;
  height: 11.25vw;
  margin-bottom: 1.3235vw;
  box-shadow: 0 0.2941vw 0.2941vw 0 rgba(0, 0, 0, 0.25);
  object-fit: fill;
  object-position: center;
}

.pictures-section .pictures-grid article p {
  width: 100%;
  font-size: 0.8824vw;
  color: var(--black-color);
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

/** #endregion 邮理说模块样式 学习园地模块样式 */
/** #region 校园文化、通知公告、办事指南模块样式 */
.info-columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 24.7059vw);
  grid-template-rows: max-content;
  justify-content: space-between;
  margin-block-start: 3.0147vw;
}

.info-columns::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--red-color);
  top: 0;
  left: 0;
}

.info-columns .info-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-columns .info-panel .news-list {
  flex: 1 0 0;
  background-color: var(--white-color);
  box-shadow: 0 0.2941vw 0.2941vw 0 rgba(0, 0, 0, 0.25);
  padding: 3.6029vw 0.8824vw 2.5vw 1.4706vw;
  height: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9559vw;
}

.info-columns .info-panel .news-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.info-columns .info-panel .news-list li a {
  flex: 1;
  color: var(--black-color);
  font-weight: 400;
  font-size: 0.9559vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-inline-end: 0.2941vw;
  margin-block-end: 0.1471vw;
}

.info-columns .info-panel .news-list li span {
  display: flex;
  flex-direction: column;
  align-content: start;
}

.info-columns .info-panel .news-list li span .date-day {
  font-size: 0.9559vw;
  font-weight: 400;
  color: var(--red-color);
}

.info-columns .info-panel .news-list li span .date-month {
  font-size: 0.5882vw;
  font-weight: 400;
  color: var(--red-color);
}

/** #endregion 校园文化、通知公告、办事指南模块样式 */
/** #region 融媒体矩阵模块样式 */
.social-section {
  margin-top: 2.2059vw;
}

.social-section .social-grid {
  display: flex;
  justify-content: space-between;
}

.social-section .social-grid .social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.social-section .social-grid .social-item .social-item-border {
  width: 5.7353vw;
  height: 5.7353vw;
  border-radius: 50%;
  border: 0.1471vw solid var(--red-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.social-section .social-grid .social-item .social-item-border img {
  width: 4.7794vw;
  height: 4.7794vw;
  border-radius: 50%;
  object-fit: cover;
}

.social-section .social-grid .social-item .social-item-text {
  font-weight: 400;
  font-size: 0.8824vw;
  color: var(--black-color);
  margin-top: 1.5441vw;
  text-align: center;
}

.social-section .social-grid .social-item.social-qr-item {
  position: relative;
}

.social-section .social-grid .social-item.social-qr-item .qr-container {
  position: absolute;
  bottom: calc(100% + var(--tooltip-arrow-height));
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  padding: 0.8824vw;
  background-color: var(--white-color);
  border-radius: 0.2941vw;
  box-shadow: 0 0.1471vw 0.5882vw 0 rgba(0, 0, 0, 0.1), 0 -0.1471vw 0.5882vw 0 rgba(0, 0, 0, 0.1), 0.1471vw 0 0.5882vw 0 rgba(0, 0, 0, 0.1), -0.1471vw 0 0.5882vw 0 rgba(0, 0, 0, 0.1);
}

.social-section .social-grid .social-item.social-qr-item .qr-container .qr-image {
  width: 8.4559vw;
  height: 8.4559vw;
  object-fit: cover;
}

.social-section .social-grid .social-item.social-qr-item .qr-container::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(2 * var(--tooltip-arrow-height));
  height: var(--tooltip-arrow-height);
  /** 倒三角形剪裁 */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--white-color);
  z-index: -1;
}

.social-section .social-grid .social-item.social-qr-item:hover .qr-container {
  transition-delay: 0.3s;
  visibility: visible;
  opacity: 1;
}

/** #endregion 融媒体矩阵模块样式 */

/** #region 首页布局间距 */
.home-page {
  margin-block-start: 1.1029vw;
}

.pictures-section-topic {
  margin-block-start: 1.1029vw;
}

.pictures-section-study {
  margin-block-start: 3.6765vw;
}

.home-footer {
  margin-block-start: 6.8382vw;
}

.focus-section .placeholder {
  height: 1.6912vw;
}

.pictures-section .placeholder {
  height: 2.0588vw;
}

.info-columns .placeholder {
  height: 1.3971vw;
}

.social-section .placeholder {
  height: 2.2059vw;
}

/** #endregion 首页布局间距 */