.ads-slider {
    position: relative;
    height: 150px;
    overflow: hidden;
    margin: 5px 5px;
    border-radius: 10px;
}

.ads-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.quick-nav {
    padding: 15px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.quick-nav-item {
    flex: 1;
    padding: 10px 5px;
}

.quick-nav-item img {
    width: 40px;
    height: 40px;
}

.quick-nav-item p {
    font-size: 12px;
    color: #333;
    margin: 0;
}

.promotion-nav {
    display: flex;
    padding: 10px 15px;
    background: #fff;
    margin-top: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.promotion-item {
    width: 44%!important;
    margin-bottom: 10px;
    padding: 5px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.promotion-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.scroll-area {
    background: #fff;
    margin: 10px 15px;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.scroll-list {
    height: 30px;
    overflow: hidden;
    position: relative;
}

.scroll-item {
    padding: 5px 0;
    color: #666;
    font-size: 13px;
}

.package-area {
    padding: 15px;
    background: #fff;
    margin-top: 10px;
}

.package-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.package-item {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
    padding: 15px;
    color: white;
    text-align: center;
}

.package-item:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.package-item:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.package-item:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-area {
    padding: 15px;
    background: #fff;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

.service-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 12px;
    color: #333;
    margin: 0;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-item {
    text-align: center;
    flex: 1;
}

.nav-item.active p {
    color: #ff6b6b;
}

.nav-item p {
    font-size: 12px;
    margin: 5px 0 0;
    color: #999;
}
.feature-grid {
    background: #fff;
    margin: 10px 15px;
    border-radius: 10px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 12px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 375px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .feature-item img {
        width: 35px;
        height: 35px;
    }
    
    .feature-item p {
        font-size: 11px;
    }
}

.scroll-area {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 10px 15px;
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-left: 4px solid #ff6b6b;
}

.scroll-header {
    display: flex;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 20px;
}

.scroll-header img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.scroll-header span {
    font-size: 12px;
    color: #ff6b6b;
    font-weight: bold;
}

.marquee-box {
    flex: 1;
    overflow: hidden;
    height: 28px;
    position: relative;
}

.marquee-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.marquee-list {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-msg {
    flex-shrink: 0;
    padding: 0 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-msg .user {
    color: #1890ff;
    font-weight: 500;
}

.marquee-msg .action {
    color: #666;
    margin: 0 3px;
}

.marquee-msg .type {
    color: #52c41a;
    font-weight: 500;
    margin: 0 3px;
}

.marquee-msg .amount {
    color: #faad14;
    font-weight: bold;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}