/* VIP内容样式 - 最终优化版 */
.vip-content-box {
    border-radius: 8px;
    padding: 8px 15px;
    margin: 20px 0;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: auto;
}

/* VIP用户框 - 绿色虚线 */
.vip-user-box {
    border: 2px dashed #4CAF50;
    background: #ffffff;
}

/* 非VIP用户框 - 浅灰色 */
.non-vip-box {
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
}

.vip-message {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    justify-content: center;
}

.vip-text {
    font-size: 15px;
    color: #333;
    margin-right: 8px;
}

/* VIP用户按钮 - 绿底白字 */
.vip-user-btn {
    background: #4CAF50;
    color: white !important;
    border: none;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.vip-user-btn:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: white !important;
}

/* 非VIP用户按钮 - 橙底白字 */
.vip-upgrade-btn {
    background: #fe5f34;
    color: white !important;
    border: none;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.vip-upgrade-btn:hover {
    background: #e64a19;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: white !important;
}

.vip-hidden-content {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}