/* 商城版块容器 */
.mall-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 标题样式 */
.mall-title {
    text-align: center;
    margin-bottom: 30px;
}

.mall-title h2 {
    font-size: 28px;
    color: #333;
    margin: 0 0 10px;
    font-weight: 600;
}

.mall-title p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 按钮容器 */
.mall-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* 基础按钮样式 */
.mall-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 280px;
    height: 120px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* 强制文字颜色为白色（包括hover状态） */
.mall-btn .mall-text {
    color: #fff !important;
}

.mall-btn:hover .mall-text {
    color: #fff !important; /* 强制hover时保持白色 */
}

/* 按钮光效动画 */
.mall-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.mall-btn:hover::before {
    left: 100%;
}

/* 按钮悬停效果 */
.mall-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none !important; /* 去除hover时可能出现的下划线 */
}

/* 天猫按钮样式 */
.mall-btn.tmall {
    background: #FF0036; /* 天猫橙色 */
}

/* 京东按钮样式 */
.mall-btn.jd {
    background: #ff0f23; /* 京东红色 */
}


/* 小红书按钮样式 */
.mall-btn.xhs {
    background: #ff2442; /* 京东红色 */
}


/* 图标容器（替换图片用） */
.mall-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 天猫图标（替换为你的图片路径） */
.tmall-icon {
    background-image: url('/template/elec_wpcom_one/news/img/tm1.png');
}

/* 京东图标（替换为你的图片路径） */
.jd-icon {
    background-image: url('/template/elec_wpcom_one/news/img/jd1.png');
}

/* 京东图标（替换为你的图片路径） */
.xhs-icon {
    background-image: url('/template/elec_wpcom_one/news/img/xhs1.png');
}


/* 平板适配 */
@media (max-width: 768px) {
    .mall-title h2 {
        font-size: 24px;
    }
    
    .mall-btn {
        width: 100%;
        max-width: 280px;
        height: 100px;
        font-size: 18px;
    }
    
    .mall-links {
        gap: 20px;
    }
    
    .mall-icon {
        width: 36px;
        height: 36px;
    }
}

/* 手机适配 */
@media (max-width: 480px) {
    .mall-section {
        margin: 30px auto;
    }
    
    .mall-btn {
        height: 90px;
        font-size: 16px;
        gap: 10px;
    }
    
    .mall-icon {
        width: 32px;
        height: 32px;
    }
}