/* 通用布局 */
body {
    margin: 0;
    padding: 0;
    font-family: "Source Han Sans CN", sans-serif;
    background-color: #f3f3f3;
}

.wrap {
    width: 1300px;
    margin: 0 auto;
}

/* 列表项链接样式 (通用) */
.subpage-list-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.subpage-list-item:hover .subpage-list-title {
    color: #FE9900 !important;
}

/* 面包屑样式 */
.breadcrumb-container {
    background-color: #f3f3f3;
    padding: 18px 0;
}

#breadcrumb-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #a8b6c1;
}

#breadcrumb-box .point-icon {
    width: 15px;
    height: 16px;
}

#breadcrumb-box a {
    color: #a8b6c1;
    text-decoration: none;
}

#breadcrumb-box a:hover {
    color: #fe9900;
}

#breadcrumb-box .sep {
    color: #a8b6c1;
}

#breadcrumb-box .current {
    color: #fe9900;
}

/* 详情卡片样式 */
.main-container {
    background-color: #f3f3f3;
    padding-bottom: 32px;
}

.detail-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(4, 44, 101, 0.1);
    padding: 36px;
    min-height: 600px;
}

/* 详情头部 */
.detail-header {
    padding-bottom: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.detail-header .title {
    font-size: 28px;
    color: #333333;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-weight: bold;
}

.info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: #999999;
    font-size: 14px;
    background-color: #f7f7f7;
    height: 32px;
    border-radius: 4px;
}

.info-item {
    display: inline-block;
}

/* 字号切换 */
.font-size-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.size-btn {
    cursor: pointer;
    padding: 2px 8px;
    border: 1px solid #dddddd;
    border-radius: 2px;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: #fe9900;
    color: #fe9900;
}

.size-btn.active {
    background-color: #fe9900;
    border-color: #fe9900;
    color: #ffffff;
}

/* 正文内容 */
.detail-content {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* 字体大小类 */
.detail-content.font-large {
    font-size: 20px;
}

.detail-content.font-medium {
    font-size: 16px;
}

.detail-content.font-small {
    font-size: 14px;
}

.detail-content p {
    margin-bottom: 20px;
    /*text-indent: 2em;*/
}

.detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto !important;
    border-radius: 4px;
    text-indent: 0 !important; /* 强制重置段落缩进影响 */
}

/* 附件区域 */
.attachment-area {
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
}

.attach-title {
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 20px;
}

.attach-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.attach-item {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 12px;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.attach-item:hover {
    background-color: #ffffff;
    border-color: #fe9900;
    box-shadow: 0 4px 12px rgba(4, 44, 101, 0.08);
}

.file-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.file-name-row {
    width: 100%;
}

.file-name {
    font-size: 14px;
    color: #333333;
    font-weight: normal;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-size {
    font-size: 12px;
    color: #b1b6cc;
}

.download-arrow {
    width: 14px;
    height: 15px;
    opacity: 0.8;
}

.attach-item:hover .download-arrow {
    opacity: 1;
}

table {
    border-collapse: collapse;
}
th, td {
  border: 1px solid;
}
