* {
            /* margin: 0; */
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            color: #333;
            background-color: #f8f9fa;
            margin: 0 auto;
        }        
        header {
            background: linear-gradient(135deg, #1a73e8 0%, #2a5298 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
		footer {
            background-color: #1a1a1a;
            color: #ddd;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
		.container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }		
		/* µ¯´°ÐÎ×´ */
		.hero-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 10px;
        }
		.hero-content {
            flex: 1;
        }
		.cta-button {
            display: inline-block;
            background: linear-gradient(to right,  #3775e1, #0b60f9);
            color: white;
            padding: 14px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
            text-decoration: none;
            margin-top: 20px;
        }        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(42, 82, 152, 0.4);
            background: linear-gradient(to right,  #3775e1, #0b60f9);
        }        
        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }        
        .cta-button:hover i {
            transform: translateX(5px);
        }
		.contact-info {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }        
        .contact-item {
            text-align: center;
        }        
        .contact-item i {
            font-size: 1.5rem;
            color: #2a5298;
            margin-bottom: 10px;
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }     
        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transform: translateY(30px);
            transition: transform 0.4s ease;
            position: relative;
        }       
        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }       
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #888;
            cursor: pointer;
            transition: color 0.2s ease;
        }       
        .modal-content p {
            color: #666;
            margin-bottom: 30px;
        }        
        .phone-number {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: #2a5298;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        }
        .phone-number i {
            margin-right: 15px;
            color: #1a73e8;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .hero-image i {
                font-size: 6rem;
            }
            
            .phone-number {
                font-size: 1.8rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 20px;
            }
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }
        
        .logo p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        
        nav a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 1rem;
            border-radius: 5px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #1a73e8;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #6c757d;
        }
        
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        
        main {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .page-title {
            color: #1a73e8;
            border-bottom: 2px solid #2a5298;
            padding-bottom: 0.8rem;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .meta-info {
            background-color: #f1f8ff;
            padding: 1rem;
            border-left: 4px solid #2a5298;
            margin-bottom: 2rem;
            border-radius: 0 5px 5px 0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .meta-item i {
            color: #1a73e8;
        }
        
        .section {
            margin-bottom: 2.5rem;
        }
        
        .section h2 {
            color: #1a73e8;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eaeaea;
        }
        
        .section p {
            margin-bottom: 1rem;
        }
        
        .highlight-box {
            background-color: #f1f8ff;
            border: 1px solid #f1f8ff;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .highlight-box h3 {
            color: #1a73e8;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .value-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .value-item {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .value-item h4 {
            color: #1a73e8;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .value-item h4 i {
            color: #1a73e8;
        }
        
        .function-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        
        .function-item {
            background-color: #f9f9f9;
            border-left: 4px solid #1a73e8;
            border-radius: 0 5px 5px 0;
            padding: 1.2rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .function-item strong {
            color: #1a73e8;
            display: block;
            margin-bottom: 0.3rem;
            font-size: 1rem;
        }
        
        .goals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        
        .goal-item {
            background-color: #f9f9f9;
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #eee;
        }
        
        aside {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        
        .aside-title {
            color: #1a73e8;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eaeaea;
        }
        
        .contact-widget {
            background: linear-gradient(135deg, #1a73e8 0%, #2a5298 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .contact-widget h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .contact-btn {
            display: inline-block;
            background-color: white;
            color: #1a73e8;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 0.5rem;
            transition: all 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
        }
        
        .qrcode {
            text-align: center;
            padding: 1rem;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        
        .qrcode img {
            max-width: 150px;
            height: auto;
            margin-bottom: 0.5rem;
        }
        
        .faq-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eaeaea;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: #f8f9fa;
            padding: 1rem 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #e9ecef;
        }
        
        .faq-answer {
            padding: 0;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }
        
        .faq-item.active .faq-answer {
            padding: 1.2rem;
            max-height: 500px;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        footer {
            background-color: #1a1a1a;
            color: #ddd;
            padding: 2.5rem 0;
            margin-top: 3rem;
            /* border-radius: 10px 10px 0 0; */
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        
        .footer-section a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #1a73e8;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 100;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 2rem;
        }
        
        .tag {
            background-color: #e9ecef;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #495057;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            nav ul {
                gap: 1rem;
            }
            
            .value-list, .function-grid, .goals-grid {
                grid-template-columns: 1fr;
            }
            
            .meta-info {
                flex-direction: column;
                gap: 0.5rem;
            }
        }<!--ºÄÊ±1776091215.8305Ãë-->