    <style>
/* 基礎樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url(../images/body.jpg);
    line-height: 1.6;
    font-size: 14px;
}

/* 主要容器 */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    background: url(../images/body.jpg);
}

/* 內容包裹器 */
.content-wrapper {
    background: #fff;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 972px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header 樣式 */
.header {
    background-color: transparent;
    position: relative;
}

.logo-section {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* 導航列樣式 */
.nav-container {
    background: linear-gradient(to right, #0066cc, #004d99);
    padding: 0;
    position: relative;
}

.main-nav {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    flex: 1;
    text-align: center;
    position: relative;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    font-weight: bold;
    position: relative;
    overflow: visible;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav li.active a::after {
    transform: scaleX(1);
}

/* 首頁輪播和影片區塊 */
.slider-and-video-section {
    width: 100%;
    background: #000;
    padding: 20px 0 40px;
}

.slider-container {
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider-container img {
    width: 100%;
    height: auto;
    display: block;
}

.video-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.video-section h2 {
    color: #fff;
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
    padding-bottom: 10px;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 首頁業務推廣區塊 */
.business-promotion-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.promotion-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.promotion-left, 
.promotion-right {
    flex: 1;
    padding: 30px;
    position: relative;
}

.promotion-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    margin: 20px 0;
}

.promotion-left h3 {
    color: #333;
    font-size: 24px;
    margin: 20px 0 30px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
}

.line-contact {
    text-align: center;
    margin-top: 20px;
}

.line-button {
    background: #00c300;
    color: white;

    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin: 15px 0;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.event-info {
    text-align: center;
    padding: 20px;
    border: 2px dashed #00c300;
    border-radius: 10px;
    margin-top: 20px;
}

/* 首頁特色區塊 */
.features {
    padding: 60px 0;
    background: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.feature-item h3 {
    color: #333;
    font-size: 20px;
    margin: 15px 0;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* VIP頁面特定樣式 */
/* VIP介紹區塊 */
.dark-bg {
    background: #000;
    color: #fff;
    padding: 40px 0;
}

.vip-intro-section {
    padding: 40px 0;
}

.vip-intro-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-title {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 38px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 標題文字容器 */
.vip-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.vip-title-main {
    color: #fff;
}

.vip-title-action {
    color: #00a8ff;
    padding: 5px 15px;
    border: 0px solid #00a8ff;
    border-radius: 5px;
    display: inline-block;
}

.vip-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    color: #e0e0e0;
}

.vip-icon {
    flex: 0 0 256px;
    height: 256px;
}

.vip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
}

.vip-text {
    flex: 1;
}

.vip-text p {
    margin-bottom: 15px;
    line-height: 1.8;
	font-size:16px;
}

.container a {
    color:#FFCC00; /* 連結顏色 */
    text-decoration: none; /* 移除預設底線 */
    background: linear-gradient(to bottom, transparent 0%, transparent 90%, #ffd700 90%, #ffd700 100%); /* 創建黃色底線效果 */
    padding-bottom: 1px; /* 調整底線與文字的距離 */
    transition: background 0.3s ease; /* 平滑過渡效果 */
}

.container a:hover {
    background: transparent; /* 滑鼠移過時移除底線 */
}

.highlight {
    color: #00a8ff;
    font-weight: bold;
}

/* VIP頁面系統特色新樣式 */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* VIP頁面系統支援新樣式 */
.system-support-new {
    padding: 60px 0;
    background: #f8f9fa;
}

.support-card-new {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.support-section-new,
.disclaimer-section-new {
    padding: 40px;
}

.section-icon {
    text-align: center;
    margin-bottom: 20px;
}

.section-icon img {
    width: 60px;
    height: 60px;
}

.support-section-new h2,
.disclaimer-section-new h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-content-new {
    color: #555;
}

.disclaimer-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
}

.disclaimer-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disclaimer-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.number {
    background: #007bff;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.disclaimer-item p {
    margin: 0;
    line-height: 1.6;
}

/* Footer 樣式 */
.footer-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 20px;
    background: #333;
}

.footer-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.footer-feature img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.footer-left {
    flex: 6;
	line-height:22px;
}

.footer-right {
    flex: 4;
    text-align: right;
	line-height:22px;
}

/* 版權資訊和聲明的樣式 */
.footer-content .copyright {
    color: #999;
    margin-bottom: 10px;
}

.footer-content .disclaimer {
    color: #999;
    font-size: 12px;
    line-height: 1.5;
}

/* 聯絡資訊樣式 */
.footer-content .contact-info {
    color: #fff;
    margin-bottom: 5px;
}

/* 浮動聯絡資訊區塊 */
.floating-contact {
    background: linear-gradient(145deg, #404040, #2a2a2a);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    text-align: left;
}

.floating-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #4a4a4a, #333);
}

.floating-contact-item {
    margin: 8px 0;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-contact-item i {
    color: #00a8ff;
}

/* 輪播區塊樣式 */
.vip-carousel {
    width: 100%;
    padding: 40px 0;
    background: #f8f9fa;
}

.carousel-container {
    max-width: 960px;
    height: 360px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
}

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 16px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 導航按鈕 */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

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

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

/* 指示點 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* 修改輪播圖片樣式 */
.carousel-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-image:hover {
    opacity: 0.9;
}

/* 燈箱樣式 */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    margin: auto;
    display: block;
    object-fit: contain;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.lightbox-caption {
    color: white;
    font-size: 18px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #bbb;
    transform: scale(1.1);
}

/* 添加載入動畫 */
@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content {
    animation: lightboxIn 0.3s ease-out;
}


.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 102, 204, 0.8);  /* 半透明藍色背景 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: rgba(0, 102, 204, 1);  /* 滑鼠移過時變成實心藍色 */
    transform: translateY(-3px);
}

.back-to-top svg {
    color: white;
}


/* 響應式設計 */
@media (max-width: 768px) {
    .nav-container {
        overflow: hidden;
    }

    .main-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav ul {
        display: inline-flex;
        flex-wrap: nowrap;
        width: auto;
        padding: 0 10px;
    }

    .main-nav li {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* 首頁響應式 */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* VIP頁面響應式 */
    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .vip-intro-card {
        padding: 20px;
    }

    .vip-title {
        font-size: 32px;
    }

    .vip-content {
        flex-direction: column;
        gap: 20px;
    }

    .vip-icon {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
	
    .support-section-new,
    .disclaimer-section-new {
        padding: 20px;
    }

    .disclaimer-item {
        flex-direction: column;
        gap: 10px;
    }

    .number {
        margin-bottom: 10px;
    }

    /* 共用響應式 */
    .footer-features {
        flex-direction: column;
        gap: 20px;
    }

    .footer-feature {
        justify-content: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer-left, 
    .footer-right {
        flex: 1;
        width: 100%;
        text-align: center;
    }


	.section-title {
		font-size: 24px;
	}

	.feature-box {
		padding: 20px;
	}

	.feature-box img {
		width: 60px;
		height: 60px;
	}

	/* 首頁手機版特定調整 */
	.promotion-section {
		flex-direction: column;
	}
	
	.promotion-divider {
		width: auto;
		height: 1px;
		margin: 0 20px;
	}
	
	.promotion-left,
	.promotion-right {
		padding: 20px;
	}

	.line-button {
		width: 80%;
		text-align: center;
	}
	
    .floating-contact {
        display: block;
        margin: 0 auto;
    }

    .floating-contact-item {
        justify-content: center;
    }	
	
    .carousel-container {
        height: 280px;
    }

    .carousel-caption h3 {
        font-size: 20px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
	
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-caption {
        font-size: 16px;
        padding: 15px;
    }
    
    .lightbox-close {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
	
    .vip-title-container {
        flex-direction: column;
    }

    .vip-title {
        font-size: 32px;
    }

    .vip-title-action {
        font-size: 20px;
        margin-top: 10px;
        padding: 8px 20px;
    }
	
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 35px;
        height: 35px;
    }
	
    .footer-content {
        padding: 10px 15px; /* 減少 padding */
        margin: 0; /* 移除 margin */
    }
    
    .footer {
        padding: 0; /* 移除 padding */
        margin: 0; /* 移除 margin */
    }					
}

@media (max-width: 480px) {
    /* 首頁小螢幕調整 */
    .features {
        padding: 30px 0;
    }

    .feature-grid {
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .business-promotion-container {
        padding: 0 10px;
    }
    
    .promotion-left h3 {
        font-size: 20px;
    }

    /* VIP頁面小螢幕調整 */
    .vip-intro-section,
    .features-section,
    .system-support-new {
        padding: 30px 0;
    }

    .vip-content {
        font-size: 14px;
    }

    .vip-icon {
        width: 160px;
        height: 160px;
    }

    .vip-text p {
        font-size: 18px;
        line-height: 1.6;
    }
	
    .support-section-new h2,
    .disclaimer-section-new h2 {
        font-size: 20px;
    }

    .disclaimer-intro {
        font-size: 14px;
    }

    .disclaimer-item {
        padding: 15px;
    }

    /* 共用小螢幕調整 */
    .footer-content {
        padding: 20px 15px;
		margin: 0;
    }

    .footer-features {
        margin-bottom: 10px;
    }

    .footer {
        padding: 0;
        margin: 0;
    }

    .content-wrapper {
        margin-bottom: 0; /* 確保內容區域底部沒有多餘空白 */
    }
	
    .disclaimer {
        font-size: 12px;
    }
	
    .carousel-container {
        height: 200px;
    }

    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .carousel-caption h3 {
        font-size: 18px;
    }

    .carousel-caption p {
        font-size: 12px;
    }	
}

/* 首頁特定樣式 */
.index-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.index-feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.index-feature-item:hover {
    transform: translateY(-10px);
}

.index-feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.index-feature-item h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.index-feature-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .index-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .index-feature-grid {
        grid-template-columns: 1fr;
    }

    .index-feature-item {
        padding: 20px;
    }
}

   </style>