        /* 页面背景图片 */
        body {
            background-image: url('https://cdn.8i5.net/2025/08/background-choujiang2.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            /* 添加毛玻璃效果 */
            position: relative;
        }

    /* 抽奖页面样式 */
    .oak-prize-lottery-wrapper {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    /* 主要内容区 */
    .oak-prize-lottery-content {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 30px;
        padding: 40px;
    }
    
    /* 左侧抽奖区域 */
    .oak-prize-lottery-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .oak-prize-lottery-points {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 30px;
        padding: 15px 30px;
        background-image: linear-gradient(0deg, #fbfbfb, #ffffff);
        border: 2px solid #ffffff;
        box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
        border-radius: 20px;
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    
    .oak-prize-lottery-points span {
        color: #ff4b2b;
    }
    
    .oak-prize-lottery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 450px;
    }
    
    .oak-prize-lottery-item {
        aspect-ratio: 1/1;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #ffc107;
        border: 3px solid #e0e0e0;
        background-image: url('https://img.8i5.net/image/prize-gezi-background-1.png');
        background-size: cover;
        position: relative;
        overflow: hidden;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    /* 确保内容绝对居中并优化移动端显示 */
    .oak-prize-lottery-item-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
    }
    
    .oak-prize-lottery-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transition: all 0.6s ease;
    }
    
    .oak-prize-lottery-item:hover:not(.oak-prize-lottery-button):not(.oak-prize-active):not(.oak-prize-selected) {
        transform: translateY(-7px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: #ff4b2b;
    }
    
    .oak-prize-lottery-item:hover:not(.oak-prize-lottery-button):not(.oak-prize-active):not(.oak-prize-selected)::before {
        left: 100%;
    }
    
    /* 优化移动端字体大小 */
    .oak-prize-lottery-item i {
        font-size: clamp(28px, 6vw, 42px);
        margin-bottom: 8px;
    }
    
    .oak-prize-lottery-item p {
        font-size: clamp(12px, 3vw, 16px);
        margin: 0;
    }
    
    .oak-prize-lottery-item.prize-再来一次 i {
        color: #2196f3;
    }
    
    .oak-prize-lottery-item.prize-未能抽中 i {
        color: #fff;
    }
    
    .oak-prize-lottery-item:not(.prize-再来一次):not(.prize-未能抽中) i {
        color: #ffc107;
    }
    
    .oak-prize-lottery-button {
        background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
        color: white;
        border: none;
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        position: relative;
    }
    
    .oak-prize-lottery-button-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding-bottom: 8px;
    }
    
    .oak-prize-button-cost {
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        text-align: center;
        font-size: 14px;
        font-weight: normal;
        opacity: 0.9;
    }
    
    .oak-prize-lottery-button:hover {
        opacity: 0.95;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 75, 43, 0.2);
    }
    
    .oak-prize-lottery-button.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    
    /* 动画效果 */
    .oak-prize-lottery-item.oak-prize-active {
        animation: oak-prize-pulse 0.5s infinite;
        border-color: #ff4b2b;
        z-index: 10;
    }
    
    @keyframes oak-prize-pulse {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7); }
        50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 75, 43, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 75, 43, 0); }
    }
    
    .oak-prize-lottery-item.oak-prize-selected {
        animation: oak-prize-selected 1.5s infinite;
        border-color: #ffc107;
        background-color: rgba(255, 193, 7, 0.1);
        z-index: 20;
    }
    
    @keyframes oak-prize-selected {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
        50% { transform: scale(1.08); box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
    }
    
    /* 右侧规则区域 */
    .oak-prize-lottery-right {
        padding: 20px;
        border-radius: 20px;
        background-image: linear-gradient(0deg, #fbfbfb, #ffffff);
        border: 2px solid #ffffff;
        box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
    }
    
    .oak-prize-lottery-rules h3 {
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 24px;
        color: #333;
        font-weight: bold;
        position: relative;
        padding-bottom: 10px;
    }
    
    .oak-prize-lottery-rules h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, #ff416c, #ff4b2b);
    }
    
    .oak-prize-lottery-rules ul {
        margin: 0;
        padding-left: 0;
        list-style-type: none;
    }
    
    .oak-prize-lottery-rules li {
        margin-bottom: 20px;
        line-height: 1.8;
        font-size: 16px;
        position: relative;
        padding-left: 30px;
    }
    
    .oak-prize-lottery-rules li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #ff4b2b;
        font-size: 20px;
        font-weight: bold;
    }
    
    /* 下方抽奖记录区域 */
    .oak-prize-lottery-history {
        margin-top: 0;
        padding: 40px;
        justify-content: space-between;
        align-items: center;
        background-image: url('https://cdn.8i5.net/2025/prize-footer.png');
        background-size: cover;
        border-top: 1px solid #e0e0e0;
    }
    
    .oak-prize-lottery-history h3 {
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 24px;
        color: #333;
        font-weight: bold;
        text-align: center;
        position: relative;
    }
    
    .oak-prize-lottery-history h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #ff416c, #ff4b2b);
    }
    
    .oak-prize-history-container {
        height: 250px;
        max-width: 600px;
        overflow: hidden;
        position: relative;
        border-radius: 15px;
        background-color: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }
    
    .oak-prize-history-list {
        position: absolute;
        width: 100%;
    }
    
    .oak-prize-history-item {
        padding: 20px 30px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 17px;
        transition: all 0.3s ease;
    }
    
    .oak-prize-history-item:last-child {
        border-bottom: none;
    }
    
    .oak-prize-history-item:hover {
        background-color: #fafbfc;
    }
    
    .oak-prize-prize-win {
        color: #28a745;
        font-weight: bold;
    }
    
    .oak-prize-prize-again {
        color: #2196f3;
        font-weight: bold;
    }
    
    .oak-prize-prize-lose {
        color: #6c757d;
    }
    /* 基础布局调整 */
    .oak-prize-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    
    /* 二维码区域 - 仅桌面显示 */
    .desktop-only {
        display: flex;
        justify-content: center;
        padding: 20px;
        background: white;
        border-radius: 15px;
        height: 250px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    /* 响应式布局 - 桌面端 */
    @media (min-width: 768px) {
        .oak-prize-content-wrapper {
            flex-direction: row;
        }
        
        .desktop-only {
            min-width: 250px;
        }
        
        .oak-prize-history-container {
            flex: 2;
        }
    }
    
    /* 移动设备 - 确保抽奖记录正确显示 */
    @media (max-width: 767px) {
        .desktop-only {
            display: none;
        }
        .oak-prize-history-list {
            position: static; /* 移除绝对定位 */
        }
        
        .oak-prize-history-item {
            padding: 15px;
            font-size: 15px;
        }
    }
    /* 弹窗样式 - 横着的长方形 */
    .oak-prize-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(5px);
    }
    
    .oak-prize-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .oak-prize-modal-content {
        background-color: white;
        border-radius: 20px;
        padding: 30px 40px;
        max-width: 480px;
        width: 90%;
        text-align: center;
        transform: scale(0.8);
        transition: transform 0.3s ease;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    
    .oak-prize-modal.active .oak-prize-modal-content {
        transform: scale(1);
    }
    
    .oak-prize-modal-icon {
        font-size: 80px;
        padding: 20px;
        border-radius: 50%;
        flex: 0 0 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .oak-prize-modal-text {
        flex: 1;
        text-align: left;
    }
    
    .oak-prize-modal-title {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .oak-prize-modal-message {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .oak-prize-modal-button {
        background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 12px 30px;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(255, 75, 43, 0.2);
        font-weight: 500;
    }
    
    .oak-prize-modal-button:hover {
        background: linear-gradient(135deg, #ff6b8c 0%, #ff7a5a 100%);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 75, 43, 0.3);
    }
    
    .oak-prize-prize-gift .oak-prize-modal-icon {
        color: #ffc107;
        background-color: rgba(255, 193, 7, 0.1);
    }
    
    .oak-prize-prize-again .oak-prize-modal-icon {
        color: #2196f3;
        background-color: rgba(33, 150, 243, 0.1);
    }
    
    .oak-prize-prize-lose .oak-prize-modal-icon {
        color: #6c757d;
        background-color: rgba(108, 117, 125, 0.1);
    }
    
    /* 响应式布局 */
    @media (max-width: 992px) {
        .oak-prize-lottery-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .oak-prize-lottery-right {
            border-left: none;
            padding: 20px;
            border-top: 1px solid #e0e0e0;
            padding-top: 30px;
        }
        
        .oak-prize-lottery-points {
            max-width: 100%;
        }
        
        .oak-prize-lottery-grid {
            max-width: 100%;
        }
        
        .oak-prize-lottery-history {
            padding: 30px;
        }
        
        .oak-prize-history-item {
            padding: 15px 20px;
        }
    }
    
    @media (max-width: 576px) {
        .oak-prize-lottery-header h1 {
            font-size: 26px;
        }
        
        .oak-prize-lottery-content {
            padding: 20px 15px;
            gap: 20px;
        }
        
        .oak-prize-lottery-grid {
            gap: 12px;
        }
        
        .oak-prize-lottery-item {
            border-width: 2px;
        }
        
        .oak-prize-lottery-button {
            font-size: 18px;
        }
        
        .oak-prize-button-cost {
            font-size: 12px;
        }
        
        .oak-prize-modal-content {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }
        
        .oak-prize-modal-text {
            text-align: center;
        }
        
        .oak-prize-modal-icon {
            font-size: 60px;
            flex: 0 0 80px;
            height: 80px;
        }
        
        .oak-prize-modal-title {
            font-size: 26px;
        }
        
        .oak-prize-modal-message {
            font-size: 18px;
        }
    }
    /* 添加今日抽奖次数提示样式 */
    .oak-prize-lottery-info {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 470px;
        margin-bottom: 30px;
    }
    
    .oak-prize-lottery-points, .oak-prize-lottery-count {
        font-size: 18px;
        padding: 12px 20px;
        background-image: linear-gradient(0deg, #fbfbfb, #ffffff);
        border: 2px solid #ffffff;
        box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
        border-radius: 15px;
        flex: 1;
        margin: 0 5px;
        text-align: center;
    }
    
    .oak-prize-lottery-points span, .oak-prize-lottery-count span {
        color: #ff4b2b;
        font-weight: bold;
    }
    
    /* 错误提示样式 */
    .oak-prize-error {
        background-color: #fff9fa;
        border: 1px solid #ffd1d1;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 20px;
        text-align: center;
        color: #ff4b2b;
        font-weight: bold;
        max-width: 450px;
        width: 100%;
    }
    
    /* 响应式布局 */
    @media (max-width: 576px) {
        .oak-prize-lottery-info {
            flex-direction: column;
            gap: 15px;
        }
        
        .oak-prize-lottery-points, .oak-prize-lottery-count {
            margin: 0;
            width: 100%;
        }
    }

/* 用户信息区域样式 */
.oak-user-info {
    display: flex;
    padding: 1rem;
    background-color: white;
    justify-content: center;
        border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
}
.user-info-content {
    display: flex;
    align-items: center;
}

.user-avatar {
    margin-right: 16px;
}

.user-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.oak-user-info:hover .user-avatar img {
    transform: scale(1.05);
}

.user-details {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.user-details > * + * {
    margin-left: 16px;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

.user-role {
font-size: 0.85rem;
    font-weight: bold;
    color: #000000;
    padding: 1px 8px;
    border: 2px solid #0057ff;
    border-radius: 15px;
}

.oak-choujiang-user-check {
    font-size: 0.85rem;
    font-weight: bold;
    color: #000000;
    padding: 3px 10px; /* 增加内边距给伪元素留出空间 */
    position: relative;
    border-radius: 18px; /* 稍微大一点的圆角 */
    z-index: 1;
}

.oak-choujiang-user-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(to right, #f77062, #fe5196) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}
.user-email {
    flex: 1;
    min-width: 0;
    font-size: 0.85rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*抽奖模态框*/
/* 模态框背景 */
.oak-choujiang-model-overlay {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 9999; /* 确保在最上层 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
    backdrop-filter: blur(5px);
}

/* 模态框内容容器 */
.oak-choujiang-model-content {
    background-color: #fff;
    left: 50%;
    width: 90%;
    top: 50%;
    padding: 25px 20px;
    transform: translate(-50%, -50%);
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* 弹窗头部 */
.oak-choujiang-model-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    text-align: center; /* 标题文字居中 */
}

.oak-choujiang-model-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    display: inline-block; /* 确保标题不占满整行，不影响关闭按钮定位 */
}

/* 右上角关闭按钮 */
.oak-choujiang-model-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    position: absolute; /* 绝对定位 */
    top: 15px; /* 距离顶部 */
    right: 15px; /* 距离右侧 */
    padding: 0 5px;
    line-height: 1; /* 消除按钮默认行高影响 */
}

.oak-choujiang-model-close:hover {
    color: #333;
    transform: scale(1.1); /* hover时轻微放大，增强交互感 */
}

/* 弹窗内容（文字居中） */
.oak-choujiang-model-body {
    text-align: center; /* 内容文字居中 */
    padding: 15px 0;
    min-height: 60px; /* 确保内容区域高度稳定 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
}

.oak-choujiang-model-body p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6; /* 增加行高，提升可读性 */
}

/* 弹窗底部按钮 */
.oak-choujiang-model-footer {
    margin-top: 10px;
    text-align: center; /* 按钮居中 */
    padding-top: 10px;
}

.oak-choujiang-model-login-btn {
    display: inline-block;
    padding: 0px 25px;
    background-color: #2655ff;
    color: #fff;
    text-decoration: none;
    border-radius: 36px;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}