/* 全局样式和重置 */
        html {
            height: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            overflow-y: hidden; /* 确保HTML不产生垂直滚动条 */
        }

        :root {
            --primary-color: #007bff;
            --accent-color: #28a745;
            --text-color: #333;
            --light-text-color: #666;
            --border-color: #e0e0e0;
            --bg-color-light: #fff;
            --bg-color-white: #fff;
            --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.05);
            --sidebar-width-desktop: 220px;
            --header-height: 56px;
            --bottom-nav-height: 0px; /* Default to 0, overridden for mobile */
            --content-max-width-desktop: 800px;
            --hover-bg-color: #f0f2f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: var(--bg-color-light);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            overflow-y: hidden; /* 确保body不产生垂直滚动条 */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-top: calc(var(--header-height) - 30px);
            padding-bottom: 0; /* 将此值设为0，因为底部操作栏会提供空间 */
            height: 100vh; /* 确保body高度为视口高度 */
        }

        /* 布局容器 */
        .main-container {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background-color: var(--bg-color-light);
            transition: margin-left 0.3s ease;
            justify-content: flex-start;
            align-items: center;
            height: 100%; /* 确保main-container占据所有可用高度 */
        }

        /* 顶部导航栏 */
        .header {
            background-color: var(--bg-color-white);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-light);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-sizing: border-box;
            z-index: 100;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .menu-toggle-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            width: 40px;
            height: 40px;
        }

        .menu-toggle-btn .menu-icon {
            width: 32px;
            height: 32px;
        }

        .app-name-lg {
            font-size: 20px;
            font-weight: bold;
            color: #333; /* Was var(--dark-text-color, #333) */
            margin-left: 10px;
        }

        .app-name-lg a,
        .app-title a {
            color: #333;
            text-decoration: none;
        }

        .header-middle {
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .header-middle .logo {
            height: 30px;
            margin-right: 8px;
        }

        .header-middle .app-title {
            font-size: 16px;
            font-weight: bold;
            color: #333; /* Was var(--dark-text-color, #333) */
        }

        .header-middle .plus-icon {
            font-size: 12px;
            margin: 0 5px;
            color: var(--light-text-color);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 10px;
            border: none;
        }

        .header .logo {
            height: 30px;
            width: 30px;
            border-radius: 50%;
        }

        .header .plus-icon {
            font-size: 18px;
            color: var(--light-text-color);
            cursor: pointer;
        }

        .header .search-btn-sm {
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-color);
            cursor: pointer;
        }

        /* 侧边栏 */
        .sidebar {
            position: fixed;
            top: var(--header-height);
            left: -100%;
            width: 200px;
            height: calc(100vh - var(--header-height) - var(--bottom-nav-height));
            background-color: var(--bg-color-white);
            box-shadow: var(--shadow-light);
            display: flex;
            flex-direction: column;
            padding: 20px 0;
            z-index: 105;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .sidebar.sidebar-open {
            left: 0;
        }

        .menu-list {
            list-style: none;
            flex-grow: 1;
        }

        .menu-list li a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: var(--text-color);
            text-decoration: none;
            transition: background-color 0.2s;
            font-size: 15px;
            font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: 320;
        }

        .menu-list li a:hover {
            background-color: var(--hover-bg-color);
        }

        .menu-list li a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: var(--light-text-color);
        }

        .sidebar-bottom {
            padding: 20px 0 0;
            margin-top: 20px;
        }

        .sidebar-bottom a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: var(--text-color);
            text-decoration: none;
            transition: background-color 0.2s;
        }
        .sidebar-bottom a:hover {
            background-color: var(--hover-bg-color); /* Changed from --bg-color-light */
        }
        .sidebar-bottom a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        .sidebar-bottom a .fa-chevron-right {
            margin-left: auto;
            margin-right: 0;
        }
        .sidebar-footer-links {
            padding-top: 10px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-color);
            margin-top: 10px;
            padding-bottom: 10px;
        }
        .sidebar-footer-links a {
            padding: 5px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-size: 13px;
            color: var(--light-text-color);
        }
        .sidebar-footer-links a i {
            font-size: 18px;
            margin-right: 0;
            margin-bottom: 5px;
        }

        /* 遮罩层 */
        .overlay {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--header-height) - var(--bottom-nav-height));
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .overlay.overlay-active {
            opacity: 1;
            visibility: visible;
        }

        /* 主内容区域 */
        .content {
            flex-grow: 1;
            width: 100%;
            max-width: var(--content-max-width-desktop);
            padding: 20px;
            margin-bottom: 20px;
            position: relative; /* For z-index of other elements if needed */
            display: flex; /* 使用 flex 布局 */
            flex-direction: column; /* 垂直排列子元素 */
            height: 100%; /* 确保 content 占据所有可用高度 */
        }

        .aibianzheng-system-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            color: #333;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
            display: flex;
            flex-direction: column;
            height: 100%; /* 确保在父容器中占据所有可用高度 */
        }

        .aibianzheng-system-wrapper h1 {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 30px;
            color: #444;
            text-align: center;
        }

        .aibianzheng-system-wrapper .card {
            background-color: #fff;
            border: 1px solid #f0f2f5;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 0;
            text-align: left;
            display: flex; /* 使其成为 flex 容器 */
            flex-direction: column; /* 子元素垂直堆叠 */
            flex-grow: 1; /* 允许卡片占据剩余空间 */
            min-height: 0; /* 允许 flex 项正确收缩 */
            position: relative; /* 确保堆叠上下文 */
            z-index: 2; /* 确保在底部操作栏之上 */
        }

        .aibianzheng-system-wrapper .tabs {
            display: flex;
            background-color: #f0f2f5;
            padding: 10px 80px 0px 80px;
            border-radius: 10px 8px 0 0;
            border-bottom: 1px solid #FFFFFF;
        }

        .aibianzheng-system-wrapper .tab-link {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background: none;
            cursor: pointer;
            font-size: 18px;
            font-weight: 500;
            color: #555;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s ease-in-out;
            border-radius: 8px 8px 0px 0px;
        }

        .aibianzheng-system-wrapper .tab-link:hover {
            background-color: #e4e6eb;
        }

        .aibianzheng-system-wrapper .tab-link.active {
            background-color: #fff;
            color: #007bff;
           
        }

        .aibianzheng-system-wrapper .tab-link svg {
            width: 20px;
            height: 20x;
        }
        
        .aibianzheng-system-wrapper .tab-content-wrapper {
            padding: 20px 20px 20px 20px;
            flex-grow: 1;
            overflow-y: auto;
            min-height: 0;
            box-sizing: border-box;
            max-height: calc(100vh - var(--header-height) - 276px); /* 精确限制最大高度并强制滚动 */
        }

        .aibianzheng-system-wrapper .tab-content {
            display: none;
        }

        .aibianzheng-system-wrapper .tab-content.active {
            display: block;
        }

        .aibianzheng-system-wrapper .form-section-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
            padding-bottom: 3px;
            
        }
        
        .aibianzheng-system-wrapper .form-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px 80px;
            align-items: center;
            margin-bottom: 8px;
			
        }
        .aibianzheng-system-wrapper .form-grid span  {
            margin: 10px 0px 3px 0px;
            font-size: 14px;
            color: #555;
        }
        .aibianzheng-system-wrapper .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .aibianzheng-system-wrapper .form-group.full-width {
            grid-column: 1 / -1;
        }

        .aibianzheng-system-wrapper .form-group label {
            margin:10px 0px 3px 0px;
            font-size: 14px;
            color: #555;
        }

        .aibianzheng-system-wrapper input[type="text"],
        .aibianzheng-system-wrapper select,
        .aibianzheng-system-wrapper textarea {
            width: 100%;
            padding: 5px 5px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.2s;
            font-family: inherit;
	        background-color: #F8F8F8;
			grid-template-columns: repeat(2, 1fr);
        }

        .aibianzheng-system-wrapper input[type="text"]:focus,
        .aibianzheng-system-wrapper select:focus,
        .aibianzheng-system-wrapper textarea:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
        }
        
        .aibianzheng-system-wrapper textarea {
            resize: vertical;
            min-height: 65px;
        }

        .aibianzheng-system-wrapper .inquiry-section {
            margin-bottom: 25px;
        }
        .aibianzheng-system-wrapper .inquiry-title {
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 600; 
            padding-bottom: 5px;
            
        }
        .aibianzheng-system-wrapper .inquiry-title input[type="checkbox"] {
            width: 15px;
            height: 15px;
            margin-left: 10px;
	
        }
        .aibianzheng-system-wrapper .inquiry-grid {
             display: grid;
             grid-template-columns: repeat(2, 1fr);
             gap: 50px;
             
        }
		.aibianzheng-system-wrapper .inquiry-grid span  {
            margin: 10px 0px 3px 0px;
            font-size: 14px;
            color: #555;
        }
        .aibianzheng-system-wrapper .inquiry-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .aibianzheng-system-wrapper .input-with-controls {
            display: flex;
            align-items: center;
        }
        .aibianzheng-system-wrapper .input-with-controls input,
        .aibianzheng-system-wrapper .input-with-controls select {
             border-radius: 6px 6px 6px 6px;
        }
        .aibianzheng-system-wrapper .control-btn {
            padding: 4px 4px;
            border: 1px solid #ccc;
            border-left: none;
            background-color: #f8f8f8;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 27px;
            height: 25px;
			margin-left:10px;
        }
        .aibianzheng-system-wrapper .control-btn:last-child {
            border-radius: 15px 15px 15px 15px;
        }
        .aibianzheng-system-wrapper .control-btn:hover {
            background-color: #e9e9e9;
        }
        
        .aibianzheng-system-wrapper .doctor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        .aibianzheng-system-wrapper .doctor-item {
            text-align: center;
            cursor: pointer;
        }
        .aibianzheng-system-wrapper .doctor-item img, 
        .aibianzheng-system-wrapper .doctor-item svg {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background-color: #f0f0f0;
            border: 1px solid #ddd;
            margin-bottom: 8px;
            object-fit: cover;
        }
        .aibianzheng-system-wrapper .doctor-item p {
            font-size: 13px;
            color: #555;
        }
        .aibianzheng-system-wrapper .settings-note {
            text-align: center;
            font-size: 13px;
            color: #888;
            margin-top: 25px;
        }
        
        .aibianzheng-system-wrapper .bottom-actions {
            padding-top: 30px;
            padding-bottom: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            background-color: var(--bg-color-white);
        }
        
        .aibianzheng-system-wrapper .next-button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 8px 100px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            transition: background-color 0.2s, box-shadow 0.2s;
            margin-bottom: 10px;
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3) !important;
        }

        .aibianzheng-system-wrapper .next-button:hover {
            background-color: #218838;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .aibianzheng-system-wrapper .footer-note {
            font-size: 12px;
            color: #999;
        }

        /* 底部导航栏 (只在小屏幕显示) */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: var(--bottom-nav-height); /* Overridden in mobile to 55px */
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow-light);
            z-index: 99;
            background-color: var(--bg-color-white) !important;
            backdrop-filter: none !important;
            opacity: 1 !important;
        }

        .bottom-nav .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--light-text-color);
            font-size: 12px;
            position: relative;
            padding: 5px 0;
        }

        .bottom-nav .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .bottom-nav .nav-item.active {
            color: var(--accent-color);
            font-weight: bold;
        }

        .bottom-nav .nav-item .hot-badge {
            position: absolute;
            top: -5px;
            right: 50%;
            transform: translateX(calc(50% + 5px));
            background-color: #ff4d4f;
            color: white;
            font-size: 10px;
            padding: 2px 5px;
            border-radius: 10px;
            white-space: nowrap;
        }

        /* 响应式设计 - 媒体查询 */
        .desktop-only { display: none !important; }
        .mobile-only { display: flex; }
        .header .search-btn-sm { display: block; }


        /* 桌面端布局 (屏幕宽度大于等于 1024px) */
        @media (min-width: 1024px) {
            :root {
                --header-height: 60px;
                /* --bottom-nav-height: 0px; /* Already default in :root */
            }

            .desktop-only { display: flex !important; }
            .mobile-only { display: none !important; }
            .header .search-btn-sm, .bottom-nav { display: none !important; }

            body {
                display: flex; /* 修改为 flex */
                flex-direction: column; /* 确保垂直布局 */
            }

            .main-container {
                flex-direction: column;
                padding-top: var(--header-height);
                padding-bottom: 0;
                margin-left: 0;
                min-height: calc(100vh - var(--header-height));
                align-items: stretch;
            }

            .main-container.sidebar-open-desktop-shifted {
                margin-left: var(--sidebar-width-desktop);
                width: calc(100% - var(--sidebar-width-desktop));
            }

            .header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 110;
                padding: 10px 0px;
                min-height: var(--header-height);
            }
            
            .header-left { padding-left: 15px; gap: 20px; width: var(--sidebar-width-closed, auto); justify-content: flex-start; }
            .header-left .menu-toggle-btn { font-size: 20px; }
            .header-left .search-toggle-container { margin-left: 25px; }
            .header-middle { margin-left: 0; justify-content: flex-start; flex-grow: 1; }
            .header-middle .app-title { font-size: 1.0rem; }
            .header-right { margin-left: auto; padding-right: 15px; gap: 20px; }
            .header .source-text-lg { color: var(--light-text-color); font-size: 14px; white-space: nowrap; }
            .header .source-icon-lg { height: 20px; width: 20px; }
            .header-icon {
                width: 25px; height: 25px; vertical-align: middle;
                object-fit: contain; filter: brightness(0);
            }
            .header .download-btn-lg,
            .header .login-btn-lg {
                background: transparent; border: none; color: var(--light-text-color);
                font-size: 14px; cursor: pointer; padding: 5px 10px;
                border-radius: 5px; transition: background-color 0.2s;
                display: flex; align-items: center; justify-content: center;
            }

            .header .search-toggle-container {
                display: flex; align-items: center; background: transparent;
                border: none; cursor: pointer; padding: 0;
                transition: width 0.3s ease, background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
                position: relative; pointer-events: auto; margin-left: 50px;
                box-shadow: none; width: 40px; height: 40px;
                overflow: hidden; justify-content: flex-start; border-radius: 20px;
            }
            .header .search-toggle-container .search-icon {
                transition: opacity 0.3s ease, transform 0.3s ease;
                flex-shrink: 0; width: 25px; height: 25px; pointer-events: auto;
            }
            .header .search-toggle-container .search-input {
                display: none; width: 0;
                transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
                opacity: 0; padding: 8px 12px; border: none;
                border-radius: 20px; margin-left: 0; pointer-events: none;
                background-color: transparent; outline: none; font-size: 14px;
                flex-grow: 1; box-sizing: border-box;
            }
            .search-submit-btn {
                background: transparent; border: none; cursor: pointer;
                margin-left: 0; padding: 0 10px; display: none;
                flex-shrink: 0; pointer-events: auto; border-radius: 0 20px 20px 0;
                transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
            }
            .header .search-toggle-container.search-active {
                width: 320px; height: 40px;
                background-color: var(--hover-bg-color) !important;
                border: 1px solid var(--border-color);
                border-radius: 25px; box-shadow: var(--shadow-light);
                padding: 0 5px; justify-content: flex-start; align-items: center;
            }
            .header .search-toggle-container.search-active .search-icon { display: none; }
            .header .search-toggle-container.search-active .search-input {
                display: block; width: auto; opacity: 1;
                margin-left: 0; padding: 0 0 0 10px; border: none;
                background-color: transparent; border-radius: 0; flex-grow: 1;
                box-shadow: none; height: 100%; box-sizing: border-box;
            }
            .header .search-toggle-container.search-active .search-submit-btn {
                display: block; background-color: transparent; border: none;
                border-radius: 0; padding: 0 10px; box-shadow: none;
                color: var(--primary-color); height: 100%; box-sizing: border-box;
            }
            .header .search-toggle-container:not(.search-active):hover { background-color: var(--hover-bg-color); }
            .header .login-btn-lg:hover, .header .download-btn-lg:hover { background-color: var(--hover-bg-color); }
            .header .search-btn-lg i { margin-right: 5px; }

            .sidebar {
                position: fixed; top: var(--header-height); left: -100%; /* Will be transformed */
                width: var(--sidebar-width-desktop);
                height: calc(100vh - var(--header-height)); /* No bottom nav on desktop */
                padding-top: 20px; box-shadow: none;
                border-right: 1px solid var(--border-color);
                transition: transform 0.3s ease;
                transform: translateX(-100%);
                z-index: 105;
            }
            .sidebar.sidebar-open { transform: translateX(0); }

            .content {
                max-width: none;
                margin: 0 auto;
                padding-top: 0;
                padding-bottom: 0;
                padding-left: 0;
                padding-right: 0;
                display: flex; /* 使用 flex 布局 */
                flex-direction: column; /* 垂直排列子元素 */
                height: calc(100vh - var(--header-height)); /* 占据视口高度减去头部高度 */
            }
            .sidebar-footer-links { display: flex; }
            .sidebar-hover-trigger {
                position: fixed; top: var(--header-height); left: 0;
                width: 20px; height: calc(100vh - var(--header-height));
                z-index: 106; display: block;
            }
            .overlay { display: none !important; }
            .app-title { font-size: 1.2rem; }

            .header .header-nav-item { margin-left: 15px; font-size: 15px; }
        }

        /* Mobile-specific adjustments for header */
        @media (max-width: 1023px) {
            :root {
                --header-height: 50px;
                --bottom-nav-height: 55px;
            }
            .mobile-only { display: flex !important; }
            .header { padding: 5px 15px; min-height: var(--header-height); }
            .menu-toggle-btn { width: 35px; height: 35px; }
            .menu-toggle-btn .menu-icon { width: 35px; height: 35px; }
            .header-middle { flex-grow: 1; justify-content: center; }
            .header-middle .logo { height: 28px; margin-right: 6px; }
            .header-middle .app-title { font-size: 16px; }

            .main-container {
                padding-top: var(--header-height);
                height: auto;
                overflow-y: visible;
                /* background-color: var(--bg-color-white); /* Already set on body/main-container */
                border: none;
                align-items: stretch;
            }
            .content {
                padding-top: 10px;
                padding-bottom: 10px;
                padding-left: 15px;
                padding-right: 15px;
                /* background-color: var(--bg-color-light); /* Already set */
                border: none;
                display: flex;
                flex-direction: column;
                flex-grow: 1;
            }
            .aibianzheng-system-wrapper .tab-content-wrapper {
                 padding: 10px;
            }
            .aibianzheng-system-wrapper .form-grid {
                grid-template-columns: 1fr;
            }
             .aibianzheng-system-wrapper .inquiry-grid {
                grid-template-columns: 1fr;
            }
            .aibianzheng-system-wrapper .inquiry-item {
                 display: flex;
                 flex-direction: column;
                 gap: 5px;
            }

            body {
                /* background-color: var(--bg-color-light); /* Already set */
                min-height: 100vh;
                overflow-y: auto;
                padding-bottom: calc(var(--bottom-nav-height) + 20px) !important;
            }
            .bottom-nav {
                border-top: 1px solid var(--border-color);
                box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
                background-color: var(--bg-color-white) !important;
                backdrop-filter: none !important;
                opacity: 1 !important;
                height: var(--bottom-nav-height); /* Ensure height is applied */
            }
        }
		/* --- login.html 页面样式 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
	margin: 0 auto;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.social-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.social-button:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
}

.social-button img {
    width: 20px;
    height: 20px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e0e0e0;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.login_form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #6366f1;
}

input::placeholder {
    color: #999;
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 20px;
    user-select: none;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-wrapper label {
    margin: 0;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.checkbox-wrapper a {
    color: #6366f1;
    text-decoration: none;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button:hover {
    background-color: #5558e3;
}

.submit-button::after {
    content: '►';
    margin-left: 8px;
    font-size: 12px;
}

.footer-text {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

.footer-text a {
    color: #6366f1;
    text-decoration: none;
    margin-left: 5px;
}

.footer-text a:hover {
    text-decoration: underline;
}

.sidebar-info-links {
    margin-left: 3px;
    margin-right: 3px;
    background-color: #F7F7F7; /* 淡黑色背景 */
    border-radius: 10px;
    padding: 8px 10px; /* 调整内边距 */
    display: flex; /* 确保排版正常 */
    justify-content: space-around;
    align-items: center;
    border: 1px solid #e0e0e0; /* 添加边框 */
}
.sidebar-info-links a {
    color: #898989;
    font-size: 12px; /* 设置字体大小 */
    text-decoration: none;
}
.sidebar-info-links a:hover {
    text-decoration: underline;
    color: #555;
    text-decoration: none;
}


