/* 倒计时美化样式 - PC端 */
.vip-countdown-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.vip-countdown-label {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.vip-countdown {
    display: flex;
    align-items: center;
}

.vip-countdown li {
    list-style: none;
    display: inline-block;
}

.vip-countdown .countdownhour,
.vip-countdown .countdownmin,
.vip-countdown .countdownsec {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.vip-countdown .split {
    color: #ff6a00;
    font-size: 18px;
    font-weight: bold;
    margin: 0 5px;
}

/* 优惠标签样式 */
.discount-tag {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* VIP卡片美化 */
.vip-list-item .vip-item {
    transition: all 0.3s ease;
    overflow: hidden;
}

.vip-list-item .vip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 按钮美化 */
.btn-pay {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-pay:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-pay:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* VIP特权和好片部分美化 */
.vipPrivilege h2, .vip-haopian h2 {
    position: relative;
    overflow: hidden;
}

.vipPrivilege h2:after, .vip-haopian h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ff6a00, #ee0979, #ff6a00);
    transform: translateX(-100%);
    animation: slideIn 2s forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
} 