* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

body,
html {
  padding: 0;
  margin: 0;
}

.page-container {
  position: relative;
  z-index: 0;
  padding-bottom: 121px;
  width: 100%;
}

.page-container .top-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  min-width: 1200px;
  height: auto;
}

.page-container .top-title-box {
  display: flex;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  height: 64px;
  box-shadow: 0px 2px 22px 0px rgba(255, 255, 255, 0.1);
}

.page-container .top-title-box .top-title {
  height: 42px;
  width: auto;
}

.page-container .content-box {
  padding: 36px 60px 55px;
  margin: 429px auto 0;
  width: 1200px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 54, 111, 0.13);
  border-radius: 16px;
}

.page-container .content-box .content-type-list {
  padding-bottom: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CBE5FF;
}

.page-container .content-box .content-type {
  margin-right: 24px;
  padding: 12px 16px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  background: rgba(68, 68, 68, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.page-container .content-box .type-active {
  background: linear-gradient(90deg, #1C50D3 0%, rgba(17, 121, 243, 0.65) 100%);
  color: #fff;
}

.page-container .content-box .news-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 72px;
  border-bottom: 1px solid #CBE5FF;
}

.page-container .news-list .news-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.page-container .news-list .news-label {
  flex-shrink: 0;
  margin-right: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #1C50D3;
  padding: 9px 12px;
  background: linear-gradient(90deg, rgba(34, 112, 255, 0.08) 0%, rgba(45, 112, 234, 0) 100%);
  border-radius: 4px;
}

.page-container .news-list .news-title {
  flex: 1;
  width: 0;
}

.page-container .news-list .news-title .title-text {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.page-container .news-list .news-right {
  margin-left: 24px;
  flex-shrink: 0;
}

/* 分页 */
.pagination-box {
  text-align: right;
}

#pagination-record {
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.pagination button {
  padding: 0 12px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 2px;
}

.pagination button.active {
  background-color: #1C50D3;
  color: #fff;
  border-color: #1C50D3;
}

.pagination button:disabled {
  background-color: #f2f2f2;
  color: #aaa;
  cursor: not-allowed;
}

.jump {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
}

.jump input {
  width: 48px;
  height: 32px;
  padding: 4px;
}

/* 详情页 */
.page-container .content-box .detail-title-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 68px;
}

.page-container .content-box .detail-title-box .go-back {
  align-self: center;
  padding: 9px 12px;
  font-weight: 400;
  font-size: 16px;
  color: #1C50D3;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(34, 112, 255, 0.08) 0%, rgba(45, 112, 234, 0) 100%);
  border-radius: 4px;
}

.detail-title-box .go-back span {
  margin-left: 3px;
}

.detail-title-box .share-box {
  display: flex;
  align-items: center;
  align-self: flex-end;
  font-size: 14px;
  color: #999999;
}

.detail-title-box .share-box .share-icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  object-fit: contain;
  cursor: pointer;
}

.detail-title-box .title-and-other {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74%;
  text-align: center;
}

.detail-title-box .title-and-other .title {
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.85);
}

.detail-title-box .title-and-other .other-box {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
}

.page-container .content-box .detail-text {
  margin-top: 24px;
  padding-top: 24px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  border-top: 1px solid #CBE5FF;
}

.page-container .content-box .attachments-box {
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  border-top: 1px solid #CBE5FF;
}

.page-container .content-box .attachments-box .label {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
}
.page-container .content-box .attachments-box .attachment-item-box {
  margin: 0 0 8px 4px;
}
.page-container .content-box .attachments-box .attachment-item {
  font-weight: 400;
  font-size: 16px;
  color: #1C50D3;
  cursor: pointer;
}