* { box-sizing: border-box; margin: 0; padding: 0; }

body, html { height: 100%; background: #f0f2f5; }

.index {
    min-height: 100%;
    max-width: 640px;
    margin: auto;
    background: #f0f2f5;
    padding-bottom: 80px;
}

/* ── 顶部 banner ── */
.index_top {
    background: linear-gradient(135deg, #3a6cf4 0%, #5b8cff 100%);
    padding: 52px 18px 28px;
    position: relative;
    overflow: hidden;
}
.index_top::after {
    content: '';
    position: absolute;
    right: -30px; bottom: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}

/* 通知栏 */
.noticebar {
    position: absolute;
    top: 10px; left: 18px;
    right: 18px;
    width: auto;
}
.uv-notice-bar {
    background: rgba(0,0,0,0.12);
    border-radius: 20px;
    padding: 4px 10px;
}
.uv-notice {
    display: flex;
    align-items: center;
    gap: 6px;
}
.uv-notice_swiper {
    height: 18px;
    flex: 1;
    overflow: hidden;
    position: relative;
}
.notice-slide {
    display: none;
    white-space: nowrap;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}
.notice-slide.active { display: block; }

/* 头像 + 名称 */
.index_top_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.index_ti_headImg {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.6);
    flex-shrink: 0;
}
.index_ti_headImg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.index_login_text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* 标题文字 */
.index_top_message { position: relative; z-index: 1; }
.index_tm_f {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}
.index_tm_sub {
    margin-top: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* 车图 */
.index_qcbg {
    position: absolute;
    top: -70px;
    right: -6px;
    width: 210px; height: auto;
    opacity: 0.95;
    pointer-events: none;
}

/* ── 产品卡片区 ── */
.index_list {
    margin: 60px 14px 16px;
    background: #fff;
    border-radius: 18px;
    position: relative;
    padding: 16px 14px 20px;
    box-shadow: 0 4px 20px rgba(58,108,244,0.10);
    overflow: visible;
}

.list-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

#list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.index_list_item {
    background: #f5f8ff;
    border-radius: 12px;
    padding: 14px 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1px solid transparent;
}
.index_list_item:active {
    transform: scale(0.96);
    box-shadow: 0 2px 10px rgba(58,108,244,0.15);
    border-color: #d0ddff;
}

.item-ico {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.item-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e1e2d;
    text-align: center;
    line-height: 1.4;
    word-break: break-all;
}
.index_list_item .item-desc {
    font-size: 10px !important;
    color: #aaa !important;
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
    font-weight: 400 !important;
}
.index_list_item .item-name {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1e1e2d !important;
}
