@charset "utf-8";
/* CSS Document */


/* 二维码引导层样式 */
#qrOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.qr-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 30px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    opacity: 0;
    animation: scaleIn 0.4s ease-out forwards 0.1s;
    position: relative;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.qr-container h2 {
    color: #1A1A1A;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    margin-top: 0;
}

.qr-container p {
    color: #666;
    margin:10px 0;
}

.qr-image-container {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

.wechat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #07C160;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.close-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: #f5f5f5;
    transform: translateX(-50%) scale(1.1);
}

.close-btn:active {
    transform: translateX(-50%) scale(0.9);
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

#deadline {
    /* 核心文字样式 */
    font-family: 'Arial', sans-serif;
    font-size: 18px; /* 固定为14px字号 */
    font-weight: bold; /* 加粗增强醒目度 */
    
    /* 仅保留必要的阴影效果 */
    color: #e74c3c; /* 主色调保持红色系突出 */
    text-shadow: 0 1px 2px rgba(231, 76, 60, 0.5); /* 文字阴影增强立体感 */
    
    /* 基础布局 - 仅保持居中显示 */
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    
    /* 移除所有多余样式 */
    padding: 0;
    box-shadow: none;
    border: none;
    background: none;
}