/* ============================================
   单证下载页面样式
   ============================================ */

/* Banner */
.dzxz-banner {
  position: relative;
  height: 168px;
  background: var(--bg-gray-light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .dzxz-banner {
    height: 280px;
  }
}

.dzxz-banner__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dzxz-banner__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  animation: fadeInUp 0.6s ease-out;
}

.dzxz-banner__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-main);
}

@media (min-width: 992px) {
  .dzxz-banner__title {
    font-size: 48px;
  }
}

/* Main Content */
.dzxz-main {
  max-width: var(--max-width);
  margin: 0 auto;
  margin-top: -42px;
  position: relative;
  z-index: 12;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .dzxz-main {
    margin-top: -56px;
  }
}

/* Tab Content */
.dzxz-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.dzxz-tab-content.active {
  display: block;
}

.dzxz-card__body {
  padding: 32px;
}

@media (max-width: 991px) {
  .dzxz-card__body {
    padding: 16px;
  }
}

/* ============================================
   模块区域 - 一行两个模块
   ============================================ */
.dzxz-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  padding: 24px;
}

@media (max-width: 991px) {
  .dzxz-modules {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   模块样式
   ============================================ */
.dzxz-module {
  margin-bottom: 0;
  overflow: hidden;
}

.dzxz-module__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.dzxz-module__title svg,
.dzxz-module__title i {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   单证列表样式
   ============================================ */
.dzxz-doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dzxz-doc-list li {
  border-bottom: 1px dashed var(--border-light);
}

.dzxz-doc-list li:last-child {
  border-bottom: none;
}

.dzxz-doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.dzxz-doc-item:hover {
  background: var(--bg-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.dzxz-doc-item:hover .dzxz-doc-item__name {
  color: var(--primary);
}

.dzxz-doc-item__name {
  flex: 1;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color var(--transition-fast);
  position: relative;
  padding-left: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dzxz-doc-item__name::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.dzxz-doc-item__name::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.dzxz-doc-item__date {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-muted);
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}