/* 限时免费专区组件样式 */

/* 限时免费专区特殊样式 */
.limited-free-zone {
    background: linear-gradient(135deg, #2462ea 0%, #1e41b0 100%);
    border-radius: 0;
    padding: 24px 0 !important;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    max-width: none !important;
}

.limited-free-zone > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.limited-free-zone .limited-free-tag-container,
.limited-free-zone .limited-free-header,
.limited-free-zone .limited-free-content,
.limited-free-zone .limited-free-explore {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* 黄色标签 */
.limited-free-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* 标题和倒计时区域 */
.limited-free-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
}

.limited-free-title-section {
    flex: 1;
    min-width: 300px;
}

.limited-free-main-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.limited-free-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* 倒计时样式 */
.limited-free-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.countdown-item {
    background: white;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    min-width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #2462ea;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 12px;
    color: #2462ea;
    line-height: 1;
}

.countdown-separator {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 4px;
}

/* 内容区域调整 */
.limited-free-zone .zone-content {
    border-top: none;
    padding-top: 8px;
    margin-bottom: 8px;
}

/* 探索按钮 */
.limited-free-footer {
    text-align: center;
    padding-top: 0;
}

.explore-limited-free-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.explore-limited-free-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.explore-limited-free-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.explore-limited-free-btn:hover::before {
    left: 100%;
}

.explore-limited-free-btn:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .limited-free-header {
        flex-direction: column;
        text-align: center;
    }

    .limited-free-title-section {
        min-width: auto;
    }

    .limited-free-main-title {
        font-size: 24px;
        justify-content: center;
    }

    .countdown-item {
        min-width: 50px;
        padding: 10px 6px;
    }

    .countdown-number {
        font-size: 20px;
    }

    .limited-free-zone {
        padding: 20px 16px;
    }
}