/* 额外样式，可以在这里添加更多自定义样式 */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* 重要提示样式 */
.important-notice {
    background-color: #ff4d4f;
    color: white;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 6px;
    border: 2px solid #ff1f1f;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 77, 79, 0.2);
    animation: pulse 2s infinite;
    font-weight: bold;
}

/* 授权提示样式 */
.authorization-notice {
    background-color: #3498db;
    color: white;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    border-left: 5px solid #2980b9;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* 加载指示器样式 */
.loader {
    display: none;
    margin: 15px auto 5px;
    text-align: center;
    padding: 10px;
    background-color: #fff8f3;
    border-radius: 6px;
    border: 1px solid #ffecdf;
}

.loader-text {
    margin-bottom: 10px;
    color: #e2231a;
    font-weight: bold;
    font-size: 14px;
}

.spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(226, 35, 26, 0.2);
    border-radius: 50%;
    border-top-color: #e2231a;
    animation: spin 1s linear infinite;
    margin-bottom: 5px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 按钮禁用状态 */
button:disabled {
    background-color: #cccccc !important;
    cursor: not-allowed;
}

/* 用户选择下拉菜单 */
.input-with-dropdown {
    position: relative;
    margin-bottom: 20px;
}

#user_dropdown {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 14px;
    cursor: pointer;
}

#user_dropdown:focus {
    outline: none;
    border-color: #e2231a;
}

.user-info {
    margin-top: 10px;
    padding: 10px;
    background-color: #f0f8ff;
    border: 1px solid #d0e3ff;
    border-radius: 4px;
    font-size: 14px;
}

.user-info p {
    margin: 5px 0;
}

.user-info span {
    font-weight: bold;
    color: #333;
}

.warning {
    color: #e2231a;
    padding: 10px;
    background-color: #ffeeee;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
}

.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 14px;
}

/* 微信名称输入框特殊样式 */
.wx-name-input {
    font-size: 16px;
    font-weight: bold;
    padding: 12px !important;
    border: 2px solid #e2231a !important;
}

/* 按钮样式 */
button {
    transition: all 0.2s ease-in-out !important;
    flex: 1;
    width: 100%;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 分隔线样式 */
.divider {
    margin: 25px 0 !important;
    border-top: 1px dashed #ddd !important;
}

/* 结果区域样式 */
.result {
    margin-top: 15px;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .section {
        padding: 10px;
    }
    
    .button-container {
        flex-direction: column;
    }
    
    button {
        margin-bottom: 10px;
    }
} 