/* 首页主题说明：采用与网游战队网 Logo、导航一致的青绿色，不覆盖公共头部、Logo及原模板样式 */
.home-intro {
    position: relative;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 8px 0 14px;
    padding: 10px 16px 10px 18px;
    overflow: hidden;
    border: 1px solid rgba(14, 133, 123, .16);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(250, 253, 252, .98), rgba(235, 248, 246, .94));
    box-shadow: 0 6px 18px rgba(14, 133, 123, .06);
}
.home-intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0e857b, #18a596);
}
.home-main-title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #0b5f59;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.35;
    letter-spacing: -.01em;
    font-weight: 800;
}
.home-main-summary {
    position: relative;
    z-index: 1;
    flex: 1 1 560px;
    margin: 0;
    color: #5f7774;
    font-size: 12.5px;
    line-height: 1.6;
}
.reserve-count {
    min-width: 0;
    max-width: 122px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media (max-width: 768px) {
    .home-intro { display: block; padding: 9px 13px 10px 16px; border-radius: 11px; }
    .home-main-title { font-size: 16px; }
    .home-main-summary { margin-top: 3px; font-size: 12px; line-height: 1.5; }
}
