        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', system-ui, sans-serif;
            color: #262626;
            background-color: #f5f5f5;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 75%;
            margin: 0 auto;
            padding: 0 8px;
        }
        
        /* 颜色变量 */
        :root {
            --gold-light: #f5e8c8;
            --gold: #d4af37;
            --gold-dark: #b8860b;
            --primary: #0a3d62;
            --primary-light: #3c6382;
            --primary-dark: #092c48;
            --secondary: #27ae60;
            --neutral-100: #f5f5f5;
            --neutral-200: #e5e5e5;
            --neutral-300: #d4d4d4;
            --neutral-800: #262626;
            --neutral-900: #171717;
            --white: #ffffff;
        }
        
        /* 通用样式 */
        .section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: bold;
            color: #355d59;
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .flex {
            display: flex;
        }
        
        .flex-col {
            flex-direction: column;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .gap-4 {
            gap: 1rem;
        }
        
        .gap-6 {
            gap: 1.5rem;
        }
        
        .gap-8 {
            gap: 2rem;
        }
        
        .gap-10 {
            gap: 2.5rem;
        }
        
        .gap-12 {
            gap: 3rem;
        }
        
        .mb-3 {
            margin-bottom: 0.75rem;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .mb-6 {
            margin-bottom: 1.5rem;
        }
        
        .mb-8 {
            margin-bottom: 2rem;
        }
        
        .mb-10 {
            margin-bottom: 2.5rem;
        }
        
        .mb-16 {
            margin-bottom: 4rem;
        }
        
        .mt-1 {
            margin-top: 0.25rem;
        }
        
        .mt-3 {
            margin-top: 0.75rem;
        }
        
        .mt-10 {
            margin-top: 2.5rem;
        }
        
        .p-3 {
            padding: 0.75rem;
        }
        
        .p-4 {
            padding: 1rem;
        }
        
        .p-6 {
            padding: 1.5rem;
        }
        
        .p-8 {
            padding: 2rem;
        }
        
        .py-2 {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        
        /*.py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }*/
        
        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        

        
        .py-8 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
        
        .py-10 {
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }
        
        .py-16 {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
        
        .py-20 {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        
        .px-3 {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }
        
        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        

        
        .px-8 {
            padding-left: 2rem;
            padding-right: 2rem;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-left {
            text-align: left;
        }
        
        .text-white {
            color: var(--white);
        }
        
        .text-gold {
            color: #c4ae76;
        }
        
        .text-gold-dark {
            color: var(--gold-dark);
        }
        
        .text-primary {
            color: #355d59;
        }
        
        .text-primary-dark {
            color: var(--primary-dark);
        }
        
        .text-neutral-600 {
            color: #757575;
                display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
        }
        
        .text-neutral-800 {
            color: var(--neutral-800);
        }
        
        .text-white-70 {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .text-white-80 {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .text-white-90 {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .font-bold {
            font-weight: bold;
        }
        
        .font-semibold {
            font-weight: 600;
        }
        
        .font-medium {
            font-weight: 500;
        }
        
        .text-xs {
            font-size: 0.75rem;
        }
        
        .text-sm {
            font-size: 0.875rem;
        }
        
        .text-base {
            font-size: 1rem;
        }
        
        .text-lg {
            font-size: 1.125rem;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .text-2xl {
            font-size: 1.5rem;
        }
        
        .text-3xl {
            font-size: 1.875rem;
        }
        
        .text-4xl {
            font-size: 2.25rem;
        }
        
        .text-5xl {
            font-size: 3rem;
        }
        
        .bg-white {
            background-color: var(--white);
        }
        
        .bg-neutral-100 {
            background-color: var(--neutral-100);
        }
        
        .bg-neutral-800 {
            background-color: var(--neutral-800);
        }
        
        .bg-neutral-900 {
            background-color: var(--neutral-900);
        }
        
        .bg-primary {
            background-color: var(--primary);
        }
        
        .bg-primary-dark {
            background-color: var(--primary-dark);
        }
        
        .bg-gold {
            background-color: var(--gold);
        }
        
        .bg-gold-20 {
            background-color: rgba(212, 175, 55, 0.2);
        }
        
        .bg-white-10 {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .bg-white-20 {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .rounded-md {
            border-radius: 0.375rem;
        }
        
        .rounded-lg {
            border-radius: 0.5rem;
        }
        
        .rounded-xl {
            border-radius: 0.75rem;
        }
        
        .rounded-full {
            border-radius: 50%;
        }
        
        .border {
            border-width: 1px;
            border-style: solid;
        }
        
        .border-2 {
            border-width: 2px;
            border-style: solid;
        }
        
        .border-gold-30 {
            border-color: rgba(212, 175, 55, 0.3);
        }
        
        .border-primary {
            border-color: var(--primary);
        }
        
        .border-primary-dark {
            border-color: var(--primary-dark);
        }
        
        .border-white {
            border-color: var(--white);
        }
        
        .border-white-30 {
            border-color: rgba(255, 255, 255, 0.3);
            padding: 0.75rem 1rem;
        }
        
        .border-neutral-700 {
            border-color: #404040;
        }
        
        .shadow-sm {
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .shadow-md {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .shadow-lg {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .shadow-xl {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }
        
        .w-14 {
            width: 3.5rem;
        }
        
        .h-14 {
            height: 3.5rem;
        }
        
        .h-48 {
            height: 12rem;
        }
        
        .w-full {
            width: 100%;
        }
        
        .h-full {
            height: 100%;
        }
        
        .object-cover {
            object-fit: cover;
        }
        
        .overflow-hidden {
            overflow: hidden;
        }
        
        .absolute {
            position: absolute;
        }
        
        .relative {
            position: relative;
        }
        
        .fixed {
            position: fixed;
        }
        
        .static {
            position: static;
        }
        
        .inset-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }
        
        .top-0 {
            top: 0;
        }
        
        .right-0 {
            right: 0;
        }
        
        .bottom-0 {
            bottom: 0;
        }
        
        .left-0 {
            left: 0;
        }
        
        .bottom-2 {
            bottom: 0.5rem;
        }
        
        .right-4 {
            right: 1rem;
        }
        
        .top-4 {
            top: 1rem;
        }
        
        .left-4 {
            left: 1rem;
        }
        
        .bottom-10 {
            bottom: 2.5rem;
        }
        
        .left-1-2 {
            left: 50%;
        }
        
        .z-0 {
            z-index: 0;
        }
        
        .z-10 {
            z-index: 10;
        }
        
        .z-40 {
            z-index: 40;
        }
        
        .z-50 {
            z-index: 50;
        }
        
        .opacity-10 {
            opacity: 0.1;
        }
        
        .opacity-20 {
            opacity: 0.2;
        }
        
        .opacity-50 {
            opacity: 0.5;
        }
        
        .opacity-60 {
            opacity: 0.6;
        }
        
        .opacity-70 {
            opacity: 0.7;
        }
        
        .opacity-80 {
            opacity: 0.8;
        }
        
        .opacity-90 {
            opacity: 0.9;
        }
        
        .opacity-100 {
            opacity: 1;
        }
        
        .transform {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        }
        
        .translate-x-0 {
            --tw-translate-x: 0px;
        }
        
        .translate-x-1-2 {
            --tw-translate-x: -50%;
        }
        
        .translate-y-0 {
            --tw-translate-y: 0px;
        }
        
        .translate-y-100 {
            --tw-translate-y: 100%;
        }
        
        .rotate-180 {
            --tw-rotate: 180deg;
        }
        
        .scale-110 {
            --tw-scale-x: 1.1;
            --tw-scale-y: 1.1;
        }
        
        .transition-all {
            transition-property: all;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }
        
        .transition-colors {
            transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }
        
        .transition-transform {
            transition-property: transform;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }
        
        .duration-300 {
            transition-duration: 300ms;
        }
        
        .duration-500 {
            transition-duration: 500ms;
        }
        
        .hover\:bg-primary:hover {
            background-color: var(--primary);
        }
        
        .hover\:bg-primary-dark:hover {
            background-color: var(--primary-dark);
        }
        
        .hover\:bg-gold:hover {
            background-color: var(--gold);
        }
        
        .hover\:bg-gold-dark:hover {
            background-color: var(--gold-dark);
        }
        
        .hover\:bg-white-10:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .hover\:bg-white-20:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .hover\:bg-primary-5:hover {
            background-color: rgba(10, 61, 98, 0.05);
        }
        
        .hover\:text-gold:hover {
            color: var(--gold);
        }
        
        .hover\:text-gold-dark:hover {
            color: var(--gold-dark);
        }
        
        .hover\:text-white:hover {
            color: var(--white);
        }
        
        .hover\:border-primary-dark:hover {
            border-color: var(--primary-dark);
        }
        
        .hover\:shadow-lg:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .hover\:shadow-xl:hover {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }
        
        .hover\:scale-110:hover {
            --tw-scale-x: 1.1;
            --tw-scale-y: 1.1;
        }
        
        .hover\:translate-y-neg-05:hover {
            --tw-translate-y: -0.125rem;
        }
        
        .hover\:translate-y-neg-1:hover {
            --tw-translate-y: -0.25rem;
        }
        
        .focus\:outline-none:focus {
            outline: 2px solid transparent;
            outline-offset: 2px;
        }
        
        .backdrop-blur-sm {
            backdrop-filter: blur(4px);
        }
        
        .bg-gradient-primary {
            background: linear-gradient(to right, rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.7));
        }
        
        .text-shadow {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .max-w-2xl {
            max-width: 42rem;
        }
        
        .max-w-3xl {
            max-width: 54rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .min-h-screen {
            min-height: 100vh;
        }
        
        .inline-flex {
            display: inline-flex;
        }
        
        .align-start {
            align-items: flex-start;
        }
        
        .content-visibility-auto {
            content-visibility: auto;
        }
        
        .order-first {
            order: -9999;
        }
        
        .order-last {
            order: 9999;
        }
        
        .absolute-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* 自定义组件样式 */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            transition: all 300ms ease;
        }
        
        .btn-primary {
            background-color: #c4ae76;
            color: var(--white);
            border: 2px solid var(--white);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-0.125rem);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #355d59;
            border: 2px solid #355d59;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary:hover {
            background-color: rgba(10, 61, 98, 0.05);
            border-color: var(--primary-dark);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-0.125rem);
        }
        
        .btn-gold {
            background-color: #c4ae76;
            color: #ffffff;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-gold:hover {
            background-color: var(--gold-dark);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-0.125rem);
        }
        
        .btn-outline-light {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 2px solid var(--white);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(4px);
        }
        
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-0.125rem);
        }
        .ad_banner_app_icon{
            background-image:url(/style/img/A_aos.png);
            width: 24px;
            height: 24px;
            background-size: 24px 24px;
            background-repeat: no-repeat;
            
        }
        .io_banner_app_icon{
            background-image:url(/style/img/A_ios.png);
            width: 24px;
            height: 24px;
            background-size: 24px 24px;
            background-repeat: no-repeat;
            color: #355d59;
        }
        .text-white-80{line-height: 50px;}
        .card {
            background-color: var(--neutral-100);
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 300ms ease;
        }
        
        .card:hover {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-0.25rem);
        }
        
        .icon-box {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background-color: rgba(212, 175, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .icon {
            font-size: 2rem;
            color: var(--gold);
        }
        
        .img-card {
            background-color: var(--white);
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 300ms ease;
        }
        
        .img-card:hover {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-0.25rem);
        }
        
        .img-card-img {
            height: 12rem;
            overflow: hidden;
        }
        
        .img-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 500ms ease;
        }
        
        .img-card:hover img {
            transform: scale(1.1);
        }
        
        .img-card-content {
            padding: 1.5rem;
        }
        
        .faq-item {
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 1rem;
        }
        
        .faq-toggle {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.125rem;
            color: #355d59;
        }
        
        .faq-content {
            padding: 0 1.5rem 1.5rem;
            color: #757575;
            display: none;
        }
        
        .badge {
            position: absolute;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-weight: 600;
        }
        
        .badge-primary {
            background-color: var(--primary);
            color: var(--white);
            top: -1rem;
            left: -1rem;
        }
        
        .badge-gold {
            background-color: var(--gold);
            color: var(--primary-dark);
            bottom: -1rem;
            right: -1rem;
        }
        
        .nav {
            position: fixed;
            width: 100%;
            z-index: 50;
            transition: all 300ms ease;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 20px;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-logo img {
            height: 3rem;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--neutral-800);
            font-size: 2rem;
            cursor: pointer;
        }
        
        .mobile-menu {
            display: none;
            background-color: var(--white);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            position: absolute;
            width: 100%;
        }
        
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 0.75rem 20px;
        }
        
        .mobile-menu-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            padding: 0.5rem 20px;
        }
        
        .hero {
            position: relative;
            padding-top: 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-color: var(--neutral-100);
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 0;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
                /*opacity: 0.2;*/
        }
        
        .hero-bg-overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;

        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 42rem;
            padding: 5rem 0;
        }
        
        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: bold;
            color: var(--white);
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }
        
        .hero-desc {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 30rem;
        }
        
        .hero-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .hero-cta {
                flex-direction: row;
            }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            transition: color 300ms ease;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator:hover {
            color: var(--white);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .feature-card {
            padding: 2rem;
        }
        
        .platform-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }
        
        @media (min-width: 1024px) {
            .platform-section {
                flex-direction: row;
            }
            
            .platform-section-reverse {
                flex-direction: row-reverse;
            }
        }
        
        .platform-content {
            flex: 1;
        }
        
        .platform-image {
            flex: 1;
            position: relative;
        }
        
        .platform-image img {
            width: 100%;
            border-radius: 0.75rem;
            /*box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);*/
        }
        
        .platform-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: bold;
            color: #355d59;
            margin-bottom: 1.5rem;
        }
        
        .platform-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .platform-feature {
            display: flex;
            align-items: flex-start;
        }
        
        .platform-feature i {
            color: var(--gold);
            margin-top: 0.25rem;
            margin-right: 0.75rem;
        }
        
        .platform-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .platform-cta {
                flex-direction: row;
            }
        }
        
        .cta-section {
            position: relative;
            padding: 5rem 0;
            background-color: var(--primary-dark);
            overflow: hidden;
        }
        
        .cta-bg {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            opacity: 0.3;
        }
        
        .cta-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cta-content {
            position: relative;
            z-index: 10;
            max-width: 54rem;
            margin: 0 auto;
            text-align: center;
        }
        
        .cta-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: bold;
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta-desc {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
        }
        
        .cta-actions {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
        }
        
        @media (min-width: 640px) {
            .cta-actions {
                flex-direction: row;
            }
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        
        @media (min-width: 768px) {
            .knowledge-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer {
            background-color: #326264;
            color: var(--white);
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 4rem;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-col-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            transition: color 300ms ease;
        }
        
        .footer-link:hover {
            color: var(--gold);
        }
        
        .footer-copyright {
            border-top: 1px solid #d3d3d3;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }
        
        .footer-disclaimer {
            margin-bottom: 1.5rem;
        }
        
        .footer-disclaimer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }
        
        .floating-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #355d59;
            color: var(--white);
            padding: 1rem 1.5rem;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
            z-index: 40;
            transform: translateY(0);
            transition: transform 300ms ease;
        }
        
        .floating-banner-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .floating-banner-content {
                flex-direction: row;
            }
        }
        
        .floating-banner-text {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .floating-banner-text {
                margin-bottom: 0;
            }
        }
        
        .floating-banner-actions {
            display: flex;
            gap: 1rem;
        }
        
        .close-banner {
            position: absolute;
            top: 0.5rem;
            right: 1rem;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: color 300ms ease;
        }
        
        .close-banner:hover {
            color: var(--white);
        }
        
        /* 响应式调整 */
        @media (max-width: 1023px) {
            .nav-links, .nav-actions {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }
        
        @media (min-width: 1024px) {
            .mobile-menu {
                display: none !important;
            }
        }
        @media only screen and (max-width: 1024px){
    .container{
    
    width: 100%;
    max-width: 100%;
    }

}
/*list样式开始*/
.breadcrumb {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
    padding-top: 100px;
}
.page-title {
    font-size: 28px;
    color: #355d59;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5e8c8;
}
.news-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}
.news-thumbnail {
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    float: left;
}
.container-list {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
    padding: 0 10px;
    padding-bottom: 50px;
}
.news-container {
    display: flex;
    gap: 30px;
}
.news-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0a3d62;
}
.news-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}
.news-summary {
    color: #333;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more {
    display: inline-block;
    color: #333;
    font-weight: 500;
    padding: 5px 0;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.widget-title {
    font-size: 18px;
    color: #0a3d62;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5e8c8;
}
.news-list {
    flex: 3;
}
.hot-news li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}
.news-thumbnail img {
    max-width: 500px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s 
ease;
}
.news-text{
    margin-left: 350px;
    }
    
.hot-news a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
}

.category-list li {
    margin-bottom: 10px;
}
.category-list a {
    display: flex
;
    justify-content: space-between;
    padding: 5px 0;
}
.pagination {
    display: flex
;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.pagination a {
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #eee;
}
.news-text a {color: #355d59;}
               @media only screen and (max-width: 1024px){
    /*list样式开始*/
.container-list{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}
    .news-container {
        flex-direction: column;
    }
    .news-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}
    .news-thumbnail {
        height: 150px;
        width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    }

.pagination a {
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 20px;
}
.news-text{
    margin-left: 1px;
    }
    .news-thumbnail img {
            height: 150px;
        width: 100%;
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 15px;
    }
} 
/* 文章页样式 */
.article-container {
    display: flex;
    gap: 30px;
}
.article-content {
    flex: 3;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.article-title {
    font-size: 32px;
    color: #355d59;
    margin-bottom: 20px;
    line-height: 1.3;
}
.article-meta {
    display: flex
;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
    font-size: 14px;
}
.article-body {
    color: #333;
    font-size: 16px;
}
.article-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.article-body h2 {
    font-size: 22px;
    color: #355d59;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5e8c8;
}
.article-body h3 {
    font-size: 18px;
    color: #355d59;
    margin: 25px 0 15px;
}
.article-tags {
    margin: 30px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}
.article-tags strong {
    color: #355d59;
    margin-right: 10px;
}
.article-tags a {
    display: inline-block;
    margin-right: 10px;
    color: #666;
    background: #eee;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 14px;
}
.article-tags a:hover{
    background: #c4ae76;
    color: #ffffff; 
    
}
.related-articles {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f5e8c8;
}
.related-title {
    font-size: 20px;
    color: #355d59;
    margin-bottom: 20px;
}
.related-list {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.related-item a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-radius: 6px;
    transition: background 0.3s 
ease;
}
.related-item a:hover{
    background: #eee;
}
.breadcrumb a:hover{
    color: #d4af37 ;
     border-bottom: 1px solid #d4af37;
}
.hot-news  a:hover{
     color: #d4af37 ;
}
.news-text a:hover{
     color: #d4af37 ;
}
 @media only screen and (max-width: 1024px){
         .article-container {
        flex-direction: column;
    }
     .article-content {
    flex: 3;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
     .article-body img{max-width:100%;
     }
     .article-tags {
    margin: 30px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}
.article-tags {
    margin: 30px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}
.article-tags a {
    display: inline-block;
    margin-right: 10px;
    color: #666;
    background: #eee;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 14px;
}
       .related-list {
        grid-template-columns: 1fr;
    }  
     
 }