﻿/* 基础重置 */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
	background-color:#f7f8fa;
}
        /* 添加自定义样式 */
        .custom-button {
            padding: 10px 20px;
            background: #2196F3;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        /* 隐藏原生文件输入 */
        #fileInput {
            display: none;
        }
/* 布局样式 */
#app {
    min-height: 100vh;
    background: var(--bg-color);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 5px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 100;
}
.nav-title{
    font-size:18px;
	margin:0px auto;
}

.container {
    padding: 70px 15px 20px;
}

/* 按钮样式 */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #5a8dff, #764ba2);
    color: white;
}

.btn.secondary {
    background: linear-gradient(135deg, #44c6f0, #00a8e0);
    color: white;
}

/* 二维码扫描区域 */
.qr-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qr-section p{
    color: #999;
	font-size:14px;
	text-align:center;
}

.divider {
    text-align: center;
    color: #0099cc;
    margin: 15px 0;
    position: relative;
}

/* 图标样式 */
.icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .btn {
        max-width: 300px;
        margin: 10px auto;
    }
}