/* ============================================
   公开信息披露页面样式
   ============================================ */

/* Main Content */
.gkxxpl-main {
  margin-top: -64px;
  position: relative;
  z-index: 12;
  padding-bottom: 48px;
  transform: translateY(-60px);
}

@media (max-width: 991px) {
  .gkxxpl-main {
    margin-top: 0;
    transform: none;
    padding: 0 16px 32px;
  }
}

/* Categories Grid */
.gkxxpl-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 640px) {
  .gkxxpl-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .gkxxpl-categories {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Category Card */
.gkxxpl-category {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 16px 16px 24px 8px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.gkxxpl-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 21, 30, 0.15);
}

.gkxxpl-category--jbxx:hover {
  border-color: var(--primary);
}

.gkxxpl-category--ndxx {
  --category-color: #f97316;
}

.gkxxpl-category--ndxx:hover {
  border-color: #f97316;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.gkxxpl-category--zdsx {
  --category-color: #e11d48;
}

.gkxxpl-category--zdsx:hover {
  border-color: #e11d48;
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.15);
}

.gkxxpl-category--zxxx {
  --category-color: #d97706;
}

.gkxxpl-category--zxxx:hover {
  border-color: #d97706;
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.15);
}

.gkxxpl-category__decoration {
  position: absolute;
  right: -16px;
  bottom: -16px;
  opacity: 0.05;
  transform: scale(1);
  transition: all 0.5s ease;
  pointer-events: none;
}

.gkxxpl-category:hover .gkxxpl-category__decoration {
  opacity: 0.15;
  transform: scale(1.1);
}

.gkxxpl-category__decoration i {
  width: 96px;
  height: 96px;
  color: var(--category-color, var(--primary));
}

@media (min-width: 992px) {
  .gkxxpl-category__decoration i {
    width: 128px;
    height: 128px;
  }
}

.gkxxpl-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.gkxxpl-category__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gkxxpl-category__num {
  font-size: 28px;
  font-weight: 900;
  color: rgba(201, 21, 30, 0.2);
  font-family: monospace;
  transition: color 0.3s ease;
}

.gkxxpl-category--ndxx .gkxxpl-category__num {
  color: rgba(249, 115, 22, 0.2);
}

.gkxxpl-category--zdsx .gkxxpl-category__num {
  color: rgba(225, 29, 72, 0.2);
}

.gkxxpl-category--zxxx .gkxxpl-category__num {
  color: rgba(217, 119, 6, 0.2);
}

.gkxxpl-category:hover .gkxxpl-category__num {
  color: var(--category-color, var(--primary));
}

.gkxxpl-category__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .gkxxpl-category__title {
    font-size: 18px;
  }
}

.gkxxpl-category:hover .gkxxpl-category__title {
  color: var(--category-color, var(--primary));
}

.gkxxpl-category__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.gkxxpl-category__arrow i {
  width: 16px;
  height: 16px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.gkxxpl-category:hover .gkxxpl-category__arrow {
  background: var(--category-color, var(--primary));
  color: #ffffff;
}

.gkxxpl-category:hover .gkxxpl-category__arrow i {
  color: white;
}

.gkxxpl-category__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.gkxxpl-category__list li {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .gkxxpl-category__list--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }
}

.gkxxpl-category__link {
  position: relative;
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
  padding-left: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gkxxpl-category__link svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--category-color, var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gkxxpl-category__link:hover {
  color: var(--category-color, var(--primary));
}

.gkxxpl-category__link:hover svg {
  opacity: 1;
}

/* Features */
.gkxxpl-features {
  background: rgba(201, 21, 30, 0.03);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  border: 1px solid rgba(201, 21, 30, 0.1);
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 992px) {
  .gkxxpl-features {
    padding: 32px;
  }
}

.gkxxpl-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}

@media (min-width: 1024px) {
  .gkxxpl-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gkxxpl-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gkxxpl-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
  transition: background 0.3s ease;
  color: var(--primary);
}

@media (min-width: 992px) {
  .gkxxpl-feature__icon {
    width: 48px;
    height: 48px;
  }
}

.gkxxpl-feature__icon i {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

@media (min-width: 992px) {
  .gkxxpl-feature__icon i {
    width: 24px;
    height: 24px;
  }
}

.gkxxpl-feature__text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

@media (min-width: 992px) {
  .gkxxpl-feature__text h4 {
    font-size: 16px;
  }
}

.gkxxpl-feature__text p {
  font-size: 12px;
  color: var(--text-light);
}

@media (min-width: 992px) {
  .gkxxpl-feature__text p {
    font-size: 14px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Banner Title - 横幅标题
   ============================================ */

.common-hero .banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  width: 100%;
  text-align: left;
  letter-spacing: 4px;
  user-select: none;
  -webkit-user-select: none;
}

.common-hero .banner-title h1.main-title {
  font-size: 52px;
  color: var(--text-main);
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.2;
}

.common-hero .banner-title .main-title span {
  color: var(--primary);

}

.common-hero .banner-title .sub-title {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.common-hero .banner-title p {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  line-height: 1.6;
}

/* 移动端适配 */
@media (max-width: 991px) {
  .common-hero .banner-title {
    /* top: 45%; */
    padding: 0 16px;
  }

  .common-hero .banner-title h1.main-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .common-hero .banner-title .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .common-hero .banner-title p {
    display: none;
    font-size: 13px;
  }
}