/* 招标公告详情页样式 - v1.0.0 */

.notice-container {
    max-width: 900px;
    margin: 20px auto 50px;
    padding: 0 20px;
}

.notice-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 50px 60px;
}

/* 标题 */
.notice-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e94560;
}

/* 正文 */
.notice-body {
    font-size: 15px;
    color: #333;
    line-height: 2;
}

.notice-body p {
    margin-bottom: 16px;
    text-indent: 2em;
    text-align: justify;
}

.notice-body h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 28px 0 12px;
    line-height: 1.6;
}

/* 编号列表 */
.notice-list {
    list-style: none;
    counter-reset: notice-counter;
    padding: 0;
    margin: 10px 0 16px;
}

.notice-list li {
    counter-increment: notice-counter;
    position: relative;
    padding-left: 2em;
    margin-bottom: 10px;
    line-height: 2;
    text-align: justify;
}

.notice-list li::before {
    content: counter(notice-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #1a1a2e;
}

/* 注释 */
.notice-note {
    color: #666;
    font-size: 14px;
    text-indent: 2em !important;
    margin-top: -4px;
}

/* 联系方式表格 */
.notice-contact {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 15px;
    line-height: 2;
}

.notice-contact td {
    padding: 4px 12px 4px 0;
    vertical-align: top;
}

.notice-contact .label {
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}

/* 附件下载区域 */
.notice-attachment {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #ddd;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.attachment-label {
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    font-size: 15px;
}

.attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a73e8;
    text-decoration: none;
    font-size: 15px;
    transition: color .2s;
    word-break: break-all;
}

.attachment-link:hover {
    color: #e94560;
    text-decoration: underline;
}

.file-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .notice-box {
        padding: 30px 24px;
    }

    .notice-title {
        font-size: 18px;
    }

    .notice-body {
        font-size: 14px;
    }

    .notice-body h2 {
        font-size: 15px;
    }

    .notice-contact td {
        display: inline-block;
        padding: 2px 8px 2px 0;
    }
}
