/* ===== review-simple.css - 往届回顾详情页（简洁版） ===== */
/* 单届标题+图片+内容，完全适配后台编辑器 */
/* 新增第三届专用样式：里程碑卡片、主题标语等 */

/* 页面基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 往届回顾主容器 */
.review-simple-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

/* 内容包装器 - 白色卡片效果 */
.review-simple-content-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 60px;
    transition: all 0.3s ease;
}

/* ===== 面包屑导航 ===== */
.review-simple-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    color: #718096;
    font-size: 0.95rem;
}

.review-simple-breadcrumb a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.review-simple-breadcrumb a:hover {
    color: #08358f;
}

.review-simple-breadcrumb i {
    margin: 0 10px;
    font-size: 0.75rem;
    color: #cbd5e0;
}

.review-simple-breadcrumb .current {
    color: #08358f;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}

/* ===== 文章主体 ===== */
.review-simple-article {
    width: 100%;
}

/* ===== 文章头部 ===== */
.article-header {
    margin-bottom: 30px;
}

.article-title {
    color: #08358f;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    word-break: break-word;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    color: #4a5568;
    font-size: 1.05rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

/* ===== 文章正文 - 完全适配编辑器 ===== */
.article-content {
    width: 100%;
    margin: 30px 0 30px;
    line-height: 1.8;
    color: #333;
}

/* 图片样式 */
.review-image {
    margin: 25px 0 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #edf2f7;
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.review-image:hover img {
    transform: scale(1.01);
}

.image-caption {
    padding: 12px 20px;
    background-color: #f8fafc;
    color: #4a5568;
    font-size: 0.95rem;
    text-align: center;
    border-top: 1px solid #edf2f7;
}

/* 图片网格 - 由编辑器控制 */
.review-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 20px;
}

.review-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-image-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(8, 53, 143, 0.1);
}

/* ===== 信息块样式 ===== */
.info-block {
    margin: 30px 0 35px;
    padding: 25px 30px;
    background-color: #f8fafc;
    border-radius: 16px;
    border-left: 6px solid #08358f;
    border: 1px solid #edf2f7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.info-block.highlight {
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    border-left: 6px solid #ff6b6b;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.info-tag {
    background: #08358f;
    color: white;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
}

.info-year {
    color: #ff6b6b;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-block h3 {
    color: #08358f;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block h3 i {
    color: #ff6b6b;
    font-size: 1.2rem;
    width: 24px;
}

.info-block p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #2d3748;
    padding-left: 34px;
}

.info-block ul {
    margin: 0 0 0 34px;
    padding: 0;
    list-style: none;
}

.info-block li {
    position: relative;
    padding: 8px 0 8px 25px;
    font-size: 1.05rem;
    color: #2d3748;
    border-bottom: 1px dashed #e2e8f0;
}

.info-block li:last-child {
    border-bottom: none;
}

.info-block li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #1a4cb3;
    font-size: 0.9rem;
}

/* ===== 里程碑卡片 ===== */
.milestone-block {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    padding: 25px 30px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.milestone-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(8, 53, 143, 0.08);
    border-color: #1a4cb3;
}

.milestone-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #08358f, #1a4cb3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.milestone-content {
    flex: 1;
}

.milestone-content h4 {
    color: #08358f;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.milestone-content p {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== 主题标语 ===== */
.theme-block {
    text-align: center;
    margin: 40px 0 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    border-radius: 60px;
    border: 1px solid rgba(26, 76, 179, 0.1);
}

.theme-block i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin: 0 10px;
}

.theme-block span {
    color: #08358f;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* 段落样式 */
.article-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #2d3748;
    line-height: 1.8;
}

/* 加粗文字 */
.article-content strong {
    color: #08358f;
    font-weight: 600;
}

/* 标题样式 - 编辑器内标题 */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    color: #08358f;
    /*margin: 35px 0 15px;*/
    font-weight: 600;
}

.article-content h2 {
    font-size: 1.6rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

.article-content h3 {
    color: #1a4cb3;
    font-size: 1.3rem;
    padding-left: 12px;
    border-left: 5px solid #08358f;
}

/* 列表样式 */
.article-content ul,
.article-content ol {
    margin: 15px 0 25px 30px;
}

.article-content li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #2d3748;
}

/* ===== 文章底部 - 返回列表 ===== */
.article-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #edf2f7;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: #f0f7ff;
    color: #08358f;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 53, 143, 0.1);
}

.back-btn:hover {
    background: linear-gradient(135deg, #08358f, #1a4cb3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 53, 143, 0.15);
}

.back-btn i {
    font-size: 0.9rem;
}

/* ===== 响应式设计 ===== */

/* 1400px以下 */
@media screen and (max-width: 1400px) {
    .review-simple-container {
        max-width: 1200px;
        padding: 45px 20px;
    }
    .review-simple-content-wrapper {
        padding: 50px;
    }
}

/* 1200px以下 */
@media screen and (max-width: 1200px) {
    .review-simple-container {
        max-width: 100%;
        padding: 40px 20px;
    }
    .review-simple-content-wrapper {
        padding: 45px;
    }
    .article-title {
        font-size: 1.8rem;
    }
}

/* 992px以下 - 平板 */
@media screen and (max-width: 992px) {
    .review-simple-container {
        padding: 35px 15px;
    }
    .review-simple-content-wrapper {
        padding: 40px 30px;
    }
    .article-title {
        font-size: 1.7rem;
    }
    .review-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-block,
    .milestone-block {
        padding: 20px 25px;
    }
    .info-block p,
    .info-block li,
    .milestone-content p {
        font-size: 0.95rem;
    }
    .theme-block span {
        font-size: 1.2rem;
    }
}

/* 768px以下 - 移动端 */
@media screen and (max-width: 768px) {
    .review-simple-container {
        padding: 30px 15px;
    }
    .review-simple-content-wrapper {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .review-simple-breadcrumb .current {
        max-width: 200px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-meta {
        gap: 20px;
        font-size: 0.95rem;
    }

    .review-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-image-grid img {
        height: 180px;
    }

    .info-block,
    .milestone-block {
        padding: 18px 20px;
        margin: 20px 0 25px;
    }

    .info-block h3,
    .milestone-content h4 {
        font-size: 1.2rem;
    }

    .info-block p,
    .info-block li,
    .milestone-content p {
        font-size: 0.9rem;
        padding-left: 30px;
    }

    .info-block ul {
        margin-left: 30px;
    }

    .milestone-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .milestone-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .theme-block span {
        font-size: 1.1rem;
        display: block;
        margin: 10px 0;
    }

    .article-content p {
        font-size: 0.95rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .image-caption {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* 576px以下 - 手机小屏 */
@media screen and (max-width: 576px) {
    .review-simple-content-wrapper {
        padding: 25px 15px;
    }

    .review-simple-breadcrumb .current {
        max-width: 150px;
    }

    .article-title {
        font-size: 1.3rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-year {
        font-size: 1.1rem;
    }

    .info-block h3,
    .milestone-content h4 {
        font-size: 1.1rem;
    }

    .info-block p,
    .info-block li,
    .milestone-content p {
        font-size: 0.85rem;
    }

    .theme-block span {
        font-size: 1rem;
    }

    .article-content p {
        font-size: 0.9rem;
    }

    .article-content h2 {
        font-size: 1.3rem;
    }

    .article-content h3 {
        font-size: 1.1rem;
        padding-left: 10px;
        border-left-width: 4px;
    }

    .review-image-grid img {
        height: 160px;
    }

    .back-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* 打印样式 */
@media print {
    .review-simple-content-wrapper {
        box-shadow: none;
        padding: 20px;
    }
    .page-banner,
    .header,
    .footer,
    .back-btn {
        display: none;
    }
}