@charset "UTF-8";
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f9ff;
            color: #333;
            line-height: 1.6;
        }
        
        /* 顶部导航栏 */
        header {
            background: linear-gradient(135deg, #1a6dcc 0%, #0d4a9c 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: #1a6dcc;
            font-size: 22px;
            overflow: hidden; /* 确保图片不超出边界 */
        }
        
        /* Logo图片样式 */
        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* 保持图片比例并完整显示 */
            border-radius: 8px;
        }
        
        /* 备用图标样式 - 如果图片加载失败显示 */
        .logo-fallback {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #1a6dcc;
            color: white;
            border-radius: 8px;
            font-size: 24px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo-subtext {
            font-size: 14px;
            opacity: 0.9;
            margin-top: 3px;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .online-consult {
            background-color: #ff9800;
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .online-consult:hover {
            background-color: #e68900;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
        }
        
        .online-consult i {
            margin-right: 8px;
        }
        
        /* 主容器 */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
        }
        
        /* 左侧主要内容区域 */
        .content-left {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        /* 右侧登录区域 */
        .login-right {
            width: 380px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-top: 30px;
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        /* 主标题部分 */
        .hero {
            text-align: center;
            padding: 40px 20px 30px;
            background-color: white;
            margin-bottom: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-top: 20px;
        }
        
        .hero h1 {
            color: #1a6dcc;
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .hero p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        
        .highlight {
            background-color: #e8f4ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #1a6dcc;
            margin-top: 20px;
            text-align: left;
        }
        
        /* 财务报表特色区域 - 优化为一行 */
        .reports-section {
            background: linear-gradient(135deg, #1a6dcc 0%, #0d4a9c 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            color: white;
        }
        
        .reports-section h3 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 24px;
        }
        
        .reports-grid {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .report-item {
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 150px;
        }
        
        .report-item:hover {
            transform: translateY(-8px);
            background-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .report-item i {
            font-size: 36px;
            margin-bottom: 15px;
            display: block;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .report-item div {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
        }
        
        /* 功能区域 */
        .features-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: #e8f4ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1a6dcc;
            font-size: 22px;
        }
        
        .feature-title h3 {
            font-size: 20px;
            color: #1a6dcc;
        }
        
        .feature-list {
            list-style-type: none;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            color: #4CAF50;
            margin-right: 10px;
            font-size: 14px;
        }
        
        /* 登录区域样式 */
        .login-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .login-header h2 {
            color: #1a6dcc;
            margin-bottom: 10px;
            font-size: 24px;
        }
        
        .login-header p {
            color: #777;
            font-size: 14px;
        }
        
        .login-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .login-tab {
            flex: 1;
            padding: 12px;
            text-align: center;
            background: none;
            border: none;
            font-size: 15px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        
        .login-tab.active {
            color: #1a6dcc;
            border-bottom: 3px solid #1a6dcc;
        }
        
        .login-content {
            flex: 1;
        }
        
        .login-form {
            display: block;
        }
        
        .wechat-login {
            display: none;
            text-align: center;
        }
        
        .login-form.show, .wechat-login.show {
            display: block;
        }
        
        .login-form.hide, .wechat-login.hide {
            display: none;
        }
        
        .form-group {
            margin-bottom: 18px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 14px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            transition: border 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #1a6dcc;
            outline: none;
            box-shadow: 0 0 0 2px rgba(26, 109, 204, 0.1);
        }
        
        .btn-login {
            background-color: #1a6dcc;
            color: white;
            border: none;
            padding: 14px;
            width: 100%;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-bottom: 15px;
        }
        
        .btn-login:hover {
            background-color: #0d4a9c;
        }
        
        .register-link {
            text-align: center;
            color: #666;
            font-size: 14px;
        }
        
        .register-link a {
            color: #1a6dcc;
            text-decoration: none;
            font-weight: 500;
        }
        
        .wechat-qrcode {
            width: 180px;
            height: 180px;
            margin: 25px auto;
            background-color: #f5f5f5;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 14px;
            border: 1px dashed #ccc;
        }
        
        .wechat-qrcode i {
            font-size: 50px;
            color: #07c160;
            margin-bottom: 10px;
        }
        
        .wechat-tip {
            text-align: center;
            color: #777;
            font-size: 13px;
            margin-top: 15px;
            line-height: 1.5;
        }
        
        /* 合作伙伴区域 */
        .partners-section {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }
        
        .partners-section h3 {
            color: #1a6dcc;
            margin-bottom: 25px;
            text-align: center;
            font-size: 24px;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }
        
        .partner-item {
            background-color: #f9f9f9;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            color: #555;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }
        
        .partner-item:hover {
            background-color: #e8f4ff;
        }
		
		/* 页脚 - 优化后的样式 */
		      footer {
		          background-color: #1a3a6e;
		          color: white;
		          padding: 40px 20px 30px;
		          margin-top: 50px;
		          width: 100%;
		      }
        
		.footer-container {
		            max-width: 1200px;
		            margin: 0 auto;
		        }
		        
		        .footer-content {
		            text-align: center;
		            margin-bottom: 30px;
		        }
		        
		        .footer-content p {
		            margin-bottom: 10px;
		            font-size: 16px;
		            line-height: 1.6;
		        }
		        
		        .footer-content p:first-child {
		            font-size: 18px;
		            font-weight: 600;
		            margin-bottom: 15px;
		        }
		        
		        /* 备案信息区域 */
		        .footer-record {
		            border-top: 1px solid rgba(255, 255, 255, 0.1);
		            padding-top: 25px;
		            text-align: center;
		        }
		        
		        .record-links {
		            display: flex;
		            justify-content: center;
		            flex-wrap: wrap;
		            gap: 20px;
		            margin-bottom: 15px;
		        }
		        
		        .record-link {
		            color: rgba(255, 255, 255, 0.85);
		            text-decoration: none;
		            font-size: 14px;
		            transition: color 0.3s ease;
		            display: inline-flex;
		            align-items: center;
		        }
		        
		        .record-link:hover {
		            color: white;
		            text-decoration: underline;
		        }
		        
		        .record-link i {
		            margin-right: 6px;
		            font-size: 12px;
		        }
		        
		        .copyright {
		            color: rgba(255, 255, 255, 0.7);
		            font-size: 14px;
		            margin-top: 15px;
		            line-height: 1.6;
		        }
		        
		        .record-badge {
		            display: inline-flex;
		            align-items: center;
		            justify-content: center;
		            margin: 0 8px;
		            padding: 2px 6px;
		            background-color: rgba(255, 255, 255, 0.1);
		            border-radius: 3px;
		            font-size: 13px;
		        }
		        
		        /* 公安备案图标样式 */
		        .police-record {
		            display: inline-flex;
		            align-items: center;
		            margin-left: 5px;
		        }
		        
		        .police-icon {
		            width: 16px;
		            height: 16px;
		            margin-right: 4px;
		            vertical-align: middle;
		        }
		        
		        /* 响应式设计 */
		        @media (max-width: 1100px) {
		            .main-container {
		                flex-direction: column;
		            }
		            
		            .content-left {
		                padding-right: 0;
		            }
		            
		            .login-right {
		                width: 100%;
		                max-width: 500px;
		                margin: 30px auto 0;
		                position: static;
		            }
		            
		            .reports-grid {
		                flex-wrap: wrap;
		                justify-content: center;
		            }
		            
		            .report-item {
		                flex: 0 0 calc(50% - 20px);
		                min-width: 200px;
		                margin-bottom: 15px;
		            }
		        }
		        
		        @media (max-width: 768px) {
		            .header-container {
		                flex-direction: column;
		                text-align: center;
		            }
		            
		            .logo {
		                margin-bottom: 15px;
		            }
		            
		            .header-right {
		                flex-direction: column;
		                gap: 10px;
		                width: 100%;
		            }
		            
		            .online-consult {
		                width: 100%;
		                justify-content: center;
		            }
		            
		            .hero h1 {
		                font-size: 28px;
		            }
		            
		            .features-section {
		                grid-template-columns: 1fr;
		            }
		            
		            .partners-grid {
		                grid-template-columns: repeat(2, 1fr);
		            }
		            
		            .reports-grid {
		                flex-direction: column;
		                align-items: center;
		            }
		            
		            .report-item {
		                width: 100%;
		                max-width: 300px;
		                flex: none;
		            }
		            
		            /* 底部备案信息响应式 */
		            .record-links {
		                flex-direction: column;
		                gap: 12px;
		            }
		            
		            .record-link {
		                justify-content: center;
		            }
		        }
		        
		        @media (max-width: 480px) {
		            .partners-grid {
		                grid-template-columns: 1fr;
		            }
		            
		            .hero {
		                padding: 30px 15px 20px;
		            }
		            
		            .login-right {
		                padding: 20px;
		            }
		            
		            .report-item {
		                min-height: 130px;
		                padding: 20px 10px;
		            }
		            
		            .report-item i {
		                font-size: 32px;
		                margin-bottom: 12px;
		            }
		            
		            .report-item div {
		                font-size: 15px;
		            }
		            
		            .logo-text {
		                font-size: 20px;
		            }
		            
		            .logo-subtext {
		                font-size: 12px;
		            }
		            
		            .footer-content p {
		                font-size: 14px;
		            }
		        }