@charset "UTF-8";
/* 信息公开页面样式 - SCSS版本 */
.xxgk-banner {
  height: 75vh;
  background: linear-gradient(135deg, rgb(5, 95, 163) 0%, rgba(12, 158, 197, 0.51) 50%, rgba(0, 108, 91, 0) 100%), url("../images/信息公开/banner.png");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
}
.xxgk-banner .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.xxgk-banner .banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.xxgk-banner .banner-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  letter-spacing: 2px;
}

.business-tabs-section {
  background: linear-gradient(to right, rgb(41, 101, 211), rgb(15, 223, 172));
  padding: 0;
}
.business-tabs-section .business-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0;
}
.business-tabs-section .business-tab {
  flex: 0 0 200px;
  padding: 2rem 0;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}
.business-tabs-section .business-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}
.business-tabs-section .business-tab.active {
  transform: translateY(-3px);
}
.business-tabs-section .business-tab.active::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: white;
}

.business-content-section {
  padding: 5rem 0;
  min-height: 100vh;
  background: url("../images/信息公开/bg.svg") no-repeat center center;
  background-size: cover;
}
.business-content-section .business-title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.business-content-section .business-main-title {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 4.5rem;
  letter-spacing: 0.125rem;
  text-align: left;
  color: rgb(15, 89, 146);
  margin: 0;
  position: relative;
  display: inline-block;
}
.business-content-section .business-main-title .title-decoration {
  position: absolute;
  bottom: 1rem;
  right: -4rem;
  display: flex;
  gap: 0.5rem;
}
.business-content-section .business-main-title .title-decoration .slash {
  width: 0.2rem;
  height: 1.5rem;
  transform: rotate(35deg);
}
.business-content-section .business-main-title .title-decoration .slash:nth-child(1) {
  background: rgba(15, 89, 146, 0.5);
}
.business-content-section .business-main-title .title-decoration .slash:nth-child(2) {
  background: rgba(15, 89, 146, 0.12);
}
.business-content-section .business-main-title .title-decoration .slash:nth-child(3) {
  background: rgba(15, 89, 146, 0.5);
}
.business-content-section .business-subtitle {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.25rem;
  letter-spacing: 0.125rem;
  text-align: left;
  background: linear-gradient(to right, rgb(41, 101, 211), rgb(15, 223, 172));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.reports-timeline {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  overflow-x: auto;
  /* 隐藏滚动条 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reports-timeline::-webkit-scrollbar {
  display: none;
}

.year-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 0 0 auto;
  min-width: 300px;
}

.year-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.year-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(41, 101, 211), rgb(15, 223, 172));
  flex-shrink: 0;
}

.year-title {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgb(15, 89, 146);
  margin: 0;
}

.reports-grid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding-left: 2.5rem;
  overflow-x: auto;
  /* 隐藏滚动条 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reports-grid::-webkit-scrollbar {
  display: none;
}

.report-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 0 0 280px;
  min-width: 280px;
}
.report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.report-cover {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0f0f0;
}
.report-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.report-card:hover .report-cover img {
  transform: scale(1.05);
}

.report-footer {
  padding: 1.2rem;
  background: linear-gradient(135deg, rgb(41, 101, 211), rgb(15, 223, 172));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.report-date {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.report-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.5rem;
}
.report-link span:first-child {
  flex: 1;
  line-height: 1.4;
}

.download-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

.announcement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.announcement-item:hover {
  background: rgba(41, 101, 211, 0.02);
  padding-left: 1rem;
  padding-right: 1rem;
}

.announcement-badge {
  flex: 0 0 60px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  border-radius: 14px;
  font-size: 12px;
  font-weight: bold;
}
.announcement-badge.normal {
  background: linear-gradient(135deg, rgb(41, 101, 211), rgb(15, 223, 172));
}

.announcement-content {
  flex: 1;
}

.announcement-title {
  flex: 1;
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #333;
  line-height: 2;
  margin: 0;
  padding-right: 2rem;
}

.announcement-desc {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: rgba(15, 89, 146, 0.7);
  line-height: 2;
  margin-bottom: 0.8rem;
}

.announcement-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-date {
  flex-shrink: 0;
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.1rem;
  color: #999;
  font-weight: 400;
}

.announcement-link {
  color: rgb(15, 89, 146);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
}
.announcement-link:hover {
  color: rgb(41, 101, 211);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 3rem;
}

.pagination-total {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1rem;
  color: #666;
  margin-right: 2rem;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  background: white;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  border-radius: 4px;
}
.pagination-btn:hover:not(:disabled) {
  border-color: rgb(41, 101, 211);
  color: rgb(41, 101, 211);
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-pages {
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-number {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  background: white;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 0 8px;
}
.page-number:hover {
  border-color: rgb(41, 101, 211);
  color: rgb(41, 101, 211);
}
.page-number.active {
  background: rgb(41, 101, 211);
  border-color: rgb(41, 101, 211);
  color: white;
}

.page-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .reports-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .xxgk-banner {
    height: 50vh;
  }
  .xxgk-banner .banner-title {
    font-size: 2rem;
  }
  .xxgk-banner .banner-subtitle {
    font-size: 1rem;
  }
  .business-tabs-section .business-tab {
    flex: 0 0 150px;
    padding: 1.5rem 0;
    font-size: 1.1rem;
  }
  .business-content-section {
    padding: 3rem 0;
  }
  .business-content-section .business-main-title {
    font-size: 2rem;
    line-height: 3rem;
  }
  .business-content-section .business-subtitle {
    font-size: 1.2rem;
  }
  .year-title {
    font-size: 1.5rem;
  }
  .reports-grid {
    grid-template-columns: 1fr;
    padding-left: 1.5rem;
  }
  .announcement-item {
    flex-direction: column;
    padding: 1.5rem;
  }
  .pagination {
    flex-wrap: wrap;
  }
  .pagination-pages {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
  }
}

/*# sourceMappingURL=xxgk.css.map */
