.point-mall-page {
    width: 100%;
    min-width: 1200px;
    background: #fff;
    color: #333;
}

/* ===== Banner Section - 参考 marketing.html ===== */
.point-mall-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.point-mall-hero-bg {
    position: absolute;
    inset: 0;
    background: url(../../assets/image/pc/marketing/marketing-banner.png) no-repeat center center;
    background-size: 100% 100%;
}

.point-mall-hero-bg::before,
.point-mall-hero-bg::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 4px;
    opacity: 0.35;
}

.point-mall-hero-bg::before {
    width: 38%;
    height: 55%;
    left: 6%;
    bottom: -8%;
    transform: rotate(-12deg) skewX(-6deg);
    background: linear-gradient(160deg, rgba(80, 50, 140, 0.5), rgba(20, 10, 40, 0.3));
    box-shadow: 0 0 60px rgba(255, 170, 50, 0.08);
}

.point-mall-hero-bg::after {
    width: 32%;
    height: 48%;
    right: 4%;
    top: -6%;
    transform: rotate(14deg) skewX(8deg);
    background: linear-gradient(200deg, rgba(60, 35, 110, 0.45), rgba(15, 8, 35, 0.25));
}

.point-mall-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 24px 64px;
}

.point-mall-hero-title {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0.5px;
}

.point-mall-hero-sub {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.point-mall-hero-btn {
    background: url(../../assets/image/pc/pointMall/btn-consult.png) no-repeat center center;
    background-size: 100% 100%;
    width: 160px;
    height: 48px;
    margin: 30px auto 0;
    border: none;
    cursor: pointer;
}

/* ===== 通用区块样式 - 参考 equitiesGood.html ===== */
.point-mall-section {
    padding: 56px 0 48px;
}

.point-mall-title {
    margin: 0;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.point-mall-sub {
    margin: 22px 0 0;
    text-align: center;
    color: #666;
    font-size: 18px;
}

/* ===== 信息安全、场景权益、服务到位 Section ===== */
.point-service-section {
    background: #fff;
    padding: 60px 0 70px;
}

.point-service-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.point-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.point-service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.point-service-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px;
}

.point-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.point-service-list li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 4px;
}

/* ===== 专属积分商城体系 Section ===== */
.point-mall-system {
    background: #f8f9fa;
    padding: 60px 0 80px;
}

.point-mall-tabs {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.point-mall-tab {
    padding: 12px 28px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.point-mall-tab:hover {
    border-color: #0148A4;
    color: #0148A4;
}

.point-mall-tab.is-active {
    background: #0148A4;
    border-color: #0148A4;
    color: #fff;
}

.point-mall-tab-content {
    margin-top: 40px;
}

.point-mall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.point-mall-grid-second {
    margin-top: 20px;
}

.point-mall-item {
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.point-mall-img {
    width: 100%;
    max-width: 306px;
    margin: 0 auto;
    /* aspect-ratio: 3 / 4; */
    /* border-radius: 8px; */
    overflow: hidden;
}

.point-mall-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.point-mall-item-title {
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

/* ===== Footer ===== */
.index-footer-part {
    width: 100%;
    min-width: 1200px;
    background: #2f3033;
    padding: 40px 0 34px;
}

.index-footer-main {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footer-company h4 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 500;
}

.footer-company p {
    margin: 6px 0;
    font-size: 12px;
    color: #d1d1d1;
}

.footer-socials {
    margin: 14px 0;
}

.footer-socials a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #8b8b8b;
    border-radius: 50%;
    color: #ddd;
    text-decoration: none;
    margin-right: 8px;
    font-size: 12px;
}

.footer-links {
    margin-top: 18px !important;
}

.footer-nav-col {
    width: 180px;
}

.footer-nav-col h5 {
    margin: 0 0 18px;
    font-size: 13px;
    color: #d8d8d8;
    font-weight: 500;
}

.footer-nav-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #d1d1d1;
    text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .point-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .point-mall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .point-mall-page {
        min-width: auto;
    }
    
    .point-mall-hero-title {
        font-size: 28px;
    }
    
    .point-mall-hero-sub {
        font-size: 14px;
    }
    
    .point-mall-title {
        font-size: 24px;
    }
    
    .point-mall-sub {
        font-size: 14px;
    }
    
    .point-service-grid {
        grid-template-columns: 1fr;
    }
    
    .point-mall-tabs {
        flex-wrap: wrap;
    }
    
    .point-mall-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .point-mall-grid {
        grid-template-columns: 1fr;
    }
}
