* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
    line-height: 1.6;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.header .url {
    font-size: 14px;
    color: #666;
}

.notice-card {
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 50%, #e74c3c 100%);
    border-radius: 16px;
    padding: 30px 25px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.notice-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.notice-list {
    list-style: none;
    margin-bottom: 30px;
}

.notice-list li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.notice-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.bank-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.confirm-btn {
    display: block;
    width: 100%;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.confirm-btn:hover {
    background-color: #27ae60;
}

.confirm-btn:active {
    transform: scale(0.98);
}

/* 微信浏览器适配 */
@media screen and (min-width: 768px) {
    .notice-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* 防止长按选中 */
.notice-card {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 微信浏览器特定样式调整 */
.wechat-browser .confirm-btn {
    -webkit-tap-highlight-color: transparent;
}