.journal {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journal .container {
    width: var(--container-width);
}

.journal .content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.journal .content .right {
    width: calc(var(--container-width) - 290px);
    min-height: 1200px;
    background: #fff;
    padding: 60px 80px;
}

.journal .content .right .title {
    width: 100%;
    align-items: start !important;
}

.journal .content .right .profile {
    /* margin-top: 90px; */
    font-size: 16px;
    color: #282828;
    text-indent: 2em;
    line-height: 200%;
    width: 100%;
}

.journal .content .right .profile img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
    text-indent: 0;
}

/* 基础容器样式 */
.journal-info-container {
    line-height: 1.6;
    color: #333;
}

.journal-info-container h2 {
    text-align: center;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 12px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.journal-info-container h3 {
    color: #2980b9;
    font-size: 1.15em;
    margin-top: 25px;
    margin-bottom: 12px;
    border-left: 4px solid #3498db;
    padding-left: 10px;
}

/* 封面 */
.cover-image-container {
    text-align: center;
    margin: 20px auto 25px auto;
}

.cover-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.cover-img:hover {
    transform: translateY(-3px);
}

/* 联系方式区块 */
.contact-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95em;
    word-wrap: break-word;
}

.contact-box a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* 基本信息表格 (桌面端) */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.info-table th,
.info-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    width: 35%;
    color: #555;
    font-weight: 600;
    background-color: #fafafa;
    white-space: nowrap;
}

.info-table td {
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 列表样式 */
.journal-info-container ol {
    padding-left: 20px;
    margin-top: 0;
}

.journal-info-container li {
    margin-bottom: 10px;
}

.journal-info-container a {
    color: #2980b9;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* =========================================
    移动端专属适配 (屏幕宽度小于 600px 时生效)
========================================= */
@media screen and (max-width: 600px) {
    .journal-info-container {
        margin: 10px;
        padding: 15px;
        /* 减小内边距，节省手机屏幕空间 */
        border-radius: 6px;
    }

    .journal-info-container h2 {
        font-size: 1.3em;
    }

    /* 核心优化：将表格转换为上下堆叠的块级布局，防止挤压 */
    .info-table,
    .info-table tbody,
    .info-table tr,
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .info-table th {
        background-color: #f0f4f8;
        color: #2c3e50;
        padding: 8px 12px 4px 12px;
        border-bottom: none;
        font-size: 0.9em;
        white-space: normal;
    }

    .info-table td {
        padding: 4px 12px 12px 12px;
        border-bottom: 1px solid #e0e0e0;
        font-size: 0.95em;
    }

    .info-table tr {
        margin-bottom: 0;
        border: 1px solid #eee;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .contact-box {
        font-size: 0.9em;
        line-height: 1.8;
    }
}