/* CSS Document */

  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 100%px;
            margin: 0 auto;
            padding: 0 300px;
        }

    /**   img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ????????? */
     /**   table, tbody, tr, td {
            display: block;
            width: 100% !important;
        }

        table {
            overflow-x: auto;
        }

        /* Header Styles */
        .header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            flex-wrap: wrap;
        }

        .logo h1 {
            color: #003366;
            font-size: 28px;
            font-weight: 700;
        }

        .navigation ul {
            display: flex;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
			
        }

        .navigation a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            padding: 5px 0;
            position: relative;
        }

        .navigation a:hover {
            color: #0066cc;
        }

        .navigation a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #0066cc;
            transition: width 0.3s ease;
        }

        .navigation a:hover::after {
            width: 100%;
        }

        /* Top Banner - ???????? */
        .top-banner table {
            width: 100% !important;
        }

        .top-banner td {
            display: inline-block;
            text-align: center;
            padding: 5px;
        }

        .top-banner img {
            height: 20px;
            width: auto;
            margin: 0 2px;
        }

        /* Navigation Bar - ???????? */
        .nav-bar table {
            width: 100% !important;
        }

        .nav-bar td {
            padding: 8px 5px;
        }

        .nav-bar a {
            font-size: 12px;
            white-space: nowrap;
            padding: 0 5px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjMDAzMzY2IiBkPSJNMCAwaDEyMDB2ODAwSDB6Ii8+PHBhdGggZD0iTTAgMGgxMjAwdjgwMEgweiIgZmlsbD0idXJsKCNhKSIvPjxwYXRoIGQ9Ik0wIDBoMTIwMHY4MDBIMHoiIGZpbGw9InVybCgjYikiLz48L2c+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iMCIgeTE9IjAiIHgyPSIxMjAwIiB5Mj0iODAwIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjMDAzMzY2Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDA2NmNjIi8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9ImIiIHgxPSIxMjAwIiB5MT0iMCIgeDI9IjAiIHkyPSI4MDAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVzZTIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMwMDMzNjYiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDY2Y2MiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48L3N2Zz4=');
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h2 {
            font-size: 42px;
            margin-bottom: 25px;
            font-weight: 300;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            background-color: #ff6600;
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
        }

        .cta-button:hover {
            background-color: #e55a00;
            transform: translateY(-2px);
        }

        /* Carousel Styles */
        .carousel {
            position: relative;
            width: 100%;
            height: 815px;
            overflow: hidden;
            margin: 10px 0;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
			background-repeat: no-repeat; /* ?????? */
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 50px;
            left: 100px;
            color: white;
            max-width: 500px;
            background-color: rgba(0, 51, 102, 0.8);
            padding: 30px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .carousel-caption h3 {
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .carousel-caption p {
            font-size: 18px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .carousel-cta {
            display: inline-block;
            background-color: #ff6600;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .carousel-cta:hover {
            background-color: #e55a00;
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .carousel-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.7);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        .carousel-nav i {
            font-size: 20px;
            color: #003366;
        }

        /* Main Content */
        .main-content {
            padding: 30px 0;
        }

        .section {
            margin-bottom: 10px;
            padding: 10px 0;
        }

        .section h2 {
            font-size: 32px;
            color: #003366;
            margin-bottom: 10px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
           
        }

        .section-content {
            max-width: 100%;
			
        }

        .section-content p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 10px;
            color: #444;
        }

        .read-more {
            display: inline-block;
            background-color: #0066cc;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            margin-top: 20px;
            font-size: 15px;
        }

        .read-more:hover {
            background-color: #0052a3;
        }

        /* ????????? - ????????? */
        .content-row {
            display: flex;
            align-items: center;
            gap: 30px;
            margin: 20px 0;
        }

        .content-col {
            flex: 1;
        }

        .content-col img {
            width: 99%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Highlight Section */
        .highlight-section {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 50px;
            margin: 20px 0;
        }

        .highlight-section h2 {
            color: #0066cc;
        }

        /* Market Cards */
        .market-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #0066cc;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .card h3 {
            color: #003366;
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 600;
        }

        .card p {
            font-size: 15px;
            margin: 0;
            color: #666;
            line-height: 1.6;
        }

        .card img {
            max-width: 100%;
            height: auto;
            margin: 10px auto;
        }

        /* Business Grid */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .business-unit {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #0066cc;
            transition: transform 0.3s ease;
        }

        .business-unit:hover {
            transform: translateY(-5px);
        }

        .business-unit h3 {
            color: #003366;
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 600;
        }

        .business-unit p {
            font-size: 15px;
            margin: 0;
            color: #666;
            line-height: 1.6;
        }

        /* ?????????? */
        .address-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .address-item {
            text-align: center;
        }

        .address-item img {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin: 0 auto 15px;
            border-radius: 8px;
        }

            /* Footer */
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 50px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .footer-section {
            text-align: center;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #0066cc;
        }

        .footer-section img {
            max-width: 300px;
            height: auto;
            margin: 0 auto;
        }
#main-nav a {
    text-decoration: none;
	color:#000000;
}
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 14px;
        }

        /* ============================
           ??????? - Mobile First
           ============================ */

        /* ????L?? (????1200px) */
        @media (min-width: 1200px) {
            .container {
                max-width: 100%px;
            }
        }

        /* ?????L?? (992px - 1199px) */
        @media (max-width: 1199px) {
            .container {
                max-width: 960px;
            }
            
            .carousel-caption {
                left: 50px;
                bottom: 80px;
                max-width: 450px;
            }
            
            .hero-content h2 {
                font-size: 36px;
            }
        }

        /* ????? (768px - 991px) */
        @media (max-width: 991px) {
            .container {
                max-width: 720px;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .navigation ul {
                justify-content: center;
                gap: 20px;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero-content h2 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 18px;
            }
            
            .carousel {
                height: 400px;
            }
            
            .carousel-caption {
                left: 50%;
                transform: translateX(-50%);
                bottom: 60px;
                text-align: center;
                max-width: 80%;
                padding: 25px;
            }
            
            .carousel-caption h3 {
                font-size: 28px;
            }
            
            .carousel-caption p {
                font-size: 16px;
            }
            
            .content-row {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .content-col {
                width: 100%;
            }
            
            .address-grid {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 30px 0;
                margin-bottom: 60px;
            }
            
            .highlight-section {
                padding: 30px;
            }
            
            .market-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ????? (576px - 767px) */
        @media (max-width: 767px) {
            .container {
                max-width: 540px;
                padding: 0 15px;
            }
            
            /* ???????Z? */
            .navigation ul {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .navigation a {
                font-size: 14px;
            }
            
            /* ??????????????Z? */
            .top-banner td {
                padding: 3px;
            }
            
            .top-banner img {
                height: 16px;
                width: auto;
            }
            
            /* Hero?????Z? */
            .hero {
                padding: 60px 0;
            }
            
            .hero-content h2 {
                font-size: 28px;
                margin-bottom: 20px;
            }
            
            .hero-content p {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 14px;
            }
            
            /* ?????Z? */
            .carousel {
                height: 300px;
                margin: 20px 0;
            }
            
            .carousel-caption {
                bottom: 40px;
                padding: 20px;
                max-width: 90%;
            }
            
            .carousel-caption h3 {
                font-size: 22px;
                margin-bottom: 10px;
            }
            
            .carousel-caption p {
                font-size: 14px;
                margin-bottom: 15px;
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
            }
            
            .carousel-nav i {
                font-size: 16px;
            }
            
            /* ????????????Z? */
            .main-content {
                padding: 40px 0;
            }
            
            .section h2 {
                font-size: 26px;
                margin-bottom: 20px;
            }
            
            .section-content p {
                font-size: 15px;
                line-height: 1.6;
            }
            
            .card, .business-unit {
                padding: 20px;
            }
            
            .market-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            /* ???Z? */
            .card img {
                max-width: 100%;
                height: auto;
            }
            
            /* ????Z? */
            .footer {
                padding: 30px 0 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-section img {
                max-width: 80px;
            }
        }

        /* ?????? (???576px) */
        @media (max-width: 575px) {
            .container {
                padding: 0 10px;
            }
            
            .logo h1 {
                font-size: 24px;
            }
            
            .hero {
                padding: 50px 0;
            }
            
            .hero-content h2 {
                font-size: 24px;
            }
            
            .hero-content p {
                font-size: 15px;
            }
            
            .carousel {
                height: 250px;
            }
            
            .carousel-caption {
                bottom: 20px;
                padding: 15px;
            }
            
            .carousel-caption h3 {
                font-size: 18px;
            }
            
            .carousel-caption p {
                font-size: 12px;
            }
            
            .carousel-cta {
                padding: 8px 20px;
                font-size: 12px;
            }
            
            .carousel-dot {
                width: 8px;
                height: 8px;
            }
            
            .carousel-nav {
                width: 30px;
                height: 30px;
            }
            
            .carousel-nav i {
                font-size: 12px;
            }
            
            .section h2 {
                font-size: 22px;
            }
            
            .read-more {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .highlight-section {
                padding: 20px;
            }
            
            /* ???????????L?????? */
            .nav-bar a {
                font-size: 10px;
                padding: 0 3px;
            }
        }

        /* ?????L?? (???400px) */
        @media (max-width: 400px) {
            .hero-content h2 {
                font-size: 20px;
            }
            
            .hero-content p {
                font-size: 14px;
            }
            
            .carousel {
                height: 200px;
            }
            
            .carousel-caption {
                padding: 10px;
                bottom: 10px;
            }
            
            .carousel-caption h3 {
                font-size: 16px;
            }
            
            .carousel-caption p {
                font-size: 11px;
                display: none; /* ??????L?????????????? */
            }
            
            .section h2 {
                font-size: 20px;
            }
            
            .cta-button, .read-more, .carousel-cta {
                padding: 8px 15px;
                font-size: 12px;
            }
            
            /* ???????????????L????Z? */
            .top-banner img {
                height: 12px;
                margin: 0 1px;
            }
        }

        /* ????g??Z? */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                padding: 40px 0;
            }
            
            .carousel {
                height: 250px;
            }
            
            .carousel-caption {
                bottom: 20px;
            }
        }

        /* ????????L?Z? */
        @media {
            .container {
                max-width: 100%px;
            }
        }

        /* ?????? */
        @media print {
            .header, .carousel-nav, .carousel-controls, .footer {
                display: none;
            }
            
            .carousel {
                height: auto;
                box-shadow: none;
            }
            
            .carousel-slide {
                position: relative;
                opacity: 1;
                page-break-inside: avoid;
            }
            
            .carousel-caption {
                position: relative;
                left: 0;
                bottom: 0;
                background: none;
                color: #000;
                padding: 20px 0;
            }
        }
    .STYLE1 {font-size: 12px}
.STYLE3 {font-size: 18px}
    .STYLE4 {font-size: 17px}
    .STYLE5 {color: #FF0000}
    .STYLE7 {color: #FF0000; font-weight: bold; }
    .STYLE8 {color: #0000FF}
	
	
	
	/* 基础样式 */
.address-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.address-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.address-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 响应式设计 - 在移动端调整为两列 */
@media (max-width: 768px) {
    .address-grid {
        justify-content: center;
    }
    .address-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* 在更小的屏幕上调整为一列 */
@media (max-width: 480px) {
    .address-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}