/* ============================================= */
/* 广东理工学院财务处 - 列表页 & 详情页 扩展样式     */
/* ============================================= */

/* === Page Header === */
.page-header {
  margin-bottom: 28px;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.breadcrumb a {
  color: var(--color-text-secondary);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--color-border);
}

.breadcrumb .current {
  color: var(--color-primary);
  font-weight: 500;
}

.page-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-header h1 svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
}

.page-header p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: 6px;
}

/* === Full List Page === */
.list-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 60px;
}

.list-wrapper {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.list-wrapper .list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  background: #fafbfc;
}

.list-wrapper .list-header .count {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.list-wrapper .list-body {
  padding: 0;
}

.list-wrapper .item-row {
  padding: 14px 24px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid #f0f0f0;
}

.list-wrapper .item-row:last-child {
  border-bottom: none;
}

.list-wrapper .item-row:hover {
  background: var(--color-row-hover);
}

.list-wrapper .item-row .item-left {
  flex: 1;
  min-width: 0;
}

.list-wrapper .item-row .item-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
  transition: color var(--transition);
}

.list-wrapper .item-row:hover .item-title {
  color: var(--color-primary);
}

.list-wrapper .item-row .item-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.list-wrapper .item-row .item-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* === Notice list specific === */
.notice-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* === Guide list specific === */
.guide-cat {
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 10px;
  background: #eef2f7;
  color: var(--color-text-secondary);
}

/* === Download list specific === */
.download-format {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f5f0e0;
  color: #8a7a3a;
  font-weight: 500;
}

.download-size {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* === Link list specific === */
.link-url {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === Detail Page === */
.detail-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 60px;
}

.detail-container {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.detail-header {
  padding: 32px 40px 24px;
  border-bottom: 1px solid var(--color-border);
}

.detail-header .detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.detail-header .detail-meta span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.detail-header .detail-meta span svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.detail-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.detail-body {
  padding: 32px 40px;
}

.detail-body .detail-section {
  margin-bottom: 28px;
}

.detail-body .detail-section:last-child {
  margin-bottom: 0;
}

.detail-body .detail-section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.detail-body .detail-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 20px;
  margin-bottom: 8px;
}

.detail-body .detail-section p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.detail-body .detail-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.detail-body .detail-section ul li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 4px;
}

.detail-body .detail-section ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 12px;
}

.detail-body .detail-section ol li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 4px;
}

.detail-footer {
  padding: 20px 40px 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-footer .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-primary);
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.detail-footer .back-link:hover {
  border-color: var(--color-primary);
  background: #f0f4f8;
}

.detail-footer .back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.detail-footer .detail-nav {
  display: flex;
  gap: 12px;
}

.detail-footer .detail-nav a {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.detail-footer .detail-nav a:hover {
  color: var(--color-primary);
}

.detail-footer .detail-nav a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* === Download-specific detail === */
.download-info-box {
  background: #fafbfc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.download-info-box .info-item {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.download-info-box .info-item strong {
  color: var(--color-text);
  font-weight: 500;
}

.download-info-box .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.download-info-box .download-btn:hover {
  background: var(--color-primary-dark);
}

.download-info-box .download-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* === Link-specific detail === */
.link-info-box {
  background: #fafbfc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.link-info-box .link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.link-info-box .link-btn:hover {
  background: var(--color-primary-dark);
}

.link-info-box .link-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* === Empty State === */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-text-muted);
}

/* === Responsive === */
@media (max-width: 768px) {
  .detail-header {
    padding: 24px 20px 20px;
  }
  .detail-body {
    padding: 24px 20px;
  }
  .detail-footer {
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .list-wrapper .list-header {
    padding: 12px 16px;
  }
  .list-wrapper .item-row {
    padding: 12px 16px;
  }
  .list-page, .detail-page {
    padding: 20px 16px 40px;
  }
  .link-url {
    max-width: 120px;
  }
}
.conth1{ font-size:30px; 
        text-align:center; 
        line-height:45px; 
        padding:20px 0px;}
.conthsj{ height:35px; 
         line-height:35px; 
         text-align:center; 
         color:#999; 
         border-bottom:1px  dotted #e7e7e7;}
.concon{ padding:20px; font-size:14px; line-height:35px;}
.concon p{ text-indent:28px;}
.chao a{color:#044fb9;}
.chao a:hover{color: #4b39ba;}
.detail-container a:hover{color:  #235c98;}