/* dj93 关于页样式 - 完全复刻 dj93.com */
.aboutMain {
    display: flex;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}
/* 左侧导航栏 */
.aboutSidebar {
    width: 180px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #eaeaea;
}
.aboutSidebarTitle {
    background: #e4393c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px;
    letter-spacing: 1px;
}
.aboutSidebarList {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aboutSidebarList li {
    border-bottom: 1px solid #f2f2f2;
}
.aboutSidebarList li:last-child {
    border-bottom: none;
}
.aboutSidebarList li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
}
.aboutSidebarList li a:hover,
.aboutSidebarList li a.active {
    background: #f5f5f5;
    color: #e4393c;
}
/* 右侧内容区 */
.aboutContentWrap {
    flex: 1;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 30px 40px;
    min-height: 400px;
}
.aboutContentTitle {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    line-height: 1.4;
}
/* 正文字号 - dj93 标准 */
.aboutBody {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #333 !important;
    font-family: "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    word-wrap: break-word;
}
.aboutBody h2 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 20px 0 12px;
}
.aboutBody p {
    margin: 10px 0;
    line-height: 1.8;
}
.aboutBody b, .aboutBody font {
    font-size: 16px;
    color: #666;
}
.aboutBody font[color="#808080"] {
    color: #666;
}
.h20 { height: 20px; clear: both; }
.servers_right_spacer { display: block; height: 20px; clear: both; }
@media (max-width: 768px) {
    .aboutMain {
        flex-direction: column;
        padding: 0 12px;
    }
    .aboutSidebar {
        width: 100%;
    }
    .aboutContentWrap {
        padding: 20px 16px;
    }
}