/*
Theme Name: 手表卖场主题
Theme URI: https://your-site.com
Description: 响应式手表卖场主题，带QQ悬浮按钮
Author: Your Name
Version: 1.0
*/

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

/* 全屏背景 */
.fullscreen-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.fullscreen-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.default-bg {
    background: linear-gradient(180deg, #fff3e6 0%, #f0d9e7 100%); /* 默认粉色背景 */
}

/* 中间按钮样式 */
.cta-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff69b4;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.cta-button:hover {
    background-color: #ff1493;
    transform: translate(-50%, -50%) scale(1.05);
}

.cta-button.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* 悬浮QQ按钮 - 位置调整为中间偏右 */
.floating-qq {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: all 0.3s ease;
}

.floating-qq img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.floating-qq:hover {
    transform: translateY(-50%) scale(1.1);
}

/* 底部样式 */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #666;
    font-size: 14px;
    z-index: 5;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .floating-qq img {
        width: 50px;
    }
    
    footer {
        font-size: 12px;
    }
}
    