body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  padding-top: 76px; /* 為固定導航欄留出空間 */
  background-image: linear-gradient(
180deg, rgba(217, 212, 202, 1) 0%, rgba(217, 212, 202, 1) 100%);
    text-align: justify ;
}

:root {
    --primary-color: #d3bc92; /* 主色 - 溫暖的淺黃色 */
    --secondary-color: #8b0827; /* 輔色 - 沉穩的珊瑚紅/磚紅 */
    --accent-color: #e03960; /* 點綴色 -  */
    --text-color: #8b0827; /* 主要文字顏色 - 深灰色 */
    --text-color-light: #777777; /* 次要文字顏色 - 中灰色 */
    --light-bg: #f8f5f0; /* 淺色背景 - 非常淺的米黃灰 */
    --dark-bg: #2c3e50; /* 深色背景 - 深藍灰色 */
    --pure-white: #ffffff; /* 純白色 */
    --success-color: #7fb069; /* 成功色 - 柔和的綠色 */
}

.text-color{
    color: #ff8d00 !important;
}

.text-justify{
    text-align: justify !important;
}

/* 導航欄樣式 */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #8b0827;
}

.navbar.scrolled {
    background-color: rgba(224, 244, 250, 0.589);
    backdrop-filter: blur(5px);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    font-size: 1.4rem;
    color: #5a5a5a !important;
    font-weight: bold;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 5px;
}

.nav-link:hover {
    color: #333 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color) !important;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    vertical-align: middle; /* 使圖示與文本垂直對齊 */
    margin-right: 5px; /* 添加一些右邊距 */
}

.dropdown:hover .dropdown-menu {
    display: block; /* 懸停顯示下拉菜單 */
}

.dropdown-toggle::after {
    color:  var(--secondary-color)!important;
}

.dropdown-item {
    font-size: 1.2rem;
}

.carousel{
    padding-top: 1.7rem;
}

/* 輪播圖樣式 */
.carousel-item {
    height: 700px;
    background-size: cover;
    background-position: center;
}

.carousel-control-prev-icon,
    .carousel-control-next-icon {
        filter: invert(1); /* 修改箭头的背景颜色 */
    }

.carousel-indicators button{
    filter: invert(1);
}

.carousel-caption-banner4 {
    border-radius: 10px;
    padding: 20px;
    right: 50% !important;
    bottom: 15rem !important;
    left: 10% !important;
    text-align: left !important;
}

.carousel-caption-banner4 ol {
    list-style-type: none; /* 去除預設數字 */
    counter-reset: item; /* 重置計數器 */
    padding: 0; /* 去除內邊距 */
    color: #000000;
}

.carousel-caption-banner4 ol li {
    position: relative; /* 為了絕對定位 */
    padding-left: 30px; /* 留出空間給圓圈 */
    margin: 1.25rem 0px !important;
}

.carousel-caption-banner4 ol li::before {
    content: counter(item); /* 顯示計數 */
    counter-increment: item; /* 增加計數器 */
    position: absolute; /* 絕對定位 */
    left: 0; /* 左側對齊 */
    top: 0; /* 上側對齊 */
    width: 25px; /* 圓圈寬度 */
    height: 25px; /* 圓圈高度 */
    border: 1px solid black; /* 圓圈邊框 */
    border-radius: 50%; /* 使其為圓形 */
    display: flex; /* 使用彈性盒子 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    background-color: #000;
    color: #fff;
}

.banner4-title-cn{
    font-size: 3.5rem;
    color: #000000 !important;
    font-weight: 1000;
}
    
.banner4-subtitle-cn{
    color: #ffffff !important;
    font-size: 2rem;
    padding: 3px 10px !important;
    margin-left: -5px !important;
    font-weight: bold;
    background-color: var(--text-color) !important;
}

.banner4-title-en{
    font-size: 3rem;
    color: #000000 !important;
    font-weight: 1000;
}
    
.banner4-subtitle-en{
    color: #ffffff !important;
    font-size: 1.8rem;
    padding: 3px 10px !important;
    margin-left: -5px !important;
    font-weight: bold;
    background-color:  var(--text-color) !important;
}

.carousel-caption-banner3 {
    border-radius: 10px;
    padding: 20px;
    right: 10% !important;
    bottom: 15rem !important;
    left: 55% !important;
    text-align: left !important;
}

.banner3-title-cn{
    font-size: 3rem;
    color: #000000 !important;
    font-weight: 1000;
    text-shadow: 
        -2px -2px 0 rgb(255, 255, 255),
        2px -2px 0 rgb(255, 255, 255),
        -2px  2px 0 rgb(255, 255, 255),
        2px  2px 0 rgb(255, 255, 255); /* 边框效果 */
}
    
.banner3-subtitle-cn{
    color: #000000 !important;
    font-size: 2.3rem;
    font-weight: bold;
    text-shadow: 
        -2px -2px 0 rgb(255, 255, 255),
        2px -2px 0 rgb(255, 255, 255),
        -2px  2px 0 rgb(255, 255, 255),
        2px  2px 0 rgb(255, 255, 255); /* 边框效果 */
}
        
.banner3-ol-cn{
    font-size: 1.5rem !important;
    color: #000000 !important;
    font-weight: bold;
    text-shadow: 
        -2px -2px 0 rgb(255, 255, 255),
        2px -2px 0 rgb(255, 255, 255),
        -2px  2px 0 rgb(255, 255, 255),
        2px  2px 0 rgb(255, 255, 255); /* 边框效果 */
}

.banner3-title-en{
    font-size: 2rem;
    color: #000000 !important;
    font-weight: 1000;
    text-shadow: 
        -2px -2px 0 rgb(255, 255, 255),
        2px -2px 0 rgb(255, 255, 255),
        -2px  2px 0 rgb(255, 255, 255),
        2px  2px 0 rgb(255, 255, 255); /* 边框效果 */
}
    
.banner3-subtitle-en{
    color: #000000 !important;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 
        -2px -2px 0 rgb(255, 255, 255),
        2px -2px 0 rgb(255, 255, 255),
        -2px  2px 0 rgb(255, 255, 255),
        2px  2px 0 rgb(255, 255, 255); /* 边框效果 */
}
        
.banner3-ol-en{
    font-size: 1.3rem !important;
    color: #000000 !important;
    font-weight: bold;
    text-shadow: 
        -2px -2px 0 rgb(255, 255, 255),
        2px -2px 0 rgb(255, 255, 255),
        -2px  2px 0 rgb(255, 255, 255),
        2px  2px 0 rgb(255, 255, 255); /* 边框效果 */
}

.banner2-title-en{
    font-size: 3.5rem;
    color: #01095e !important;
    font-weight: 1000;
}
    
.banner2-normal-cn{
    color: #01095e !important;
    font-size: 2rem;
    padding: 3px 5px !important;
    font-weight: bold;
}
        
.banner2-icon-cn{
    font-size: 2rem;
}

.banner2-title-en{
    font-size: 2.3rem;
    color: #01095e !important;
    font-weight: 1000;
}
    
.banner2-normal-en{
    color: #01095e !important;
    font-size: 1.3rem;
    padding: 3px 5px !important;
    font-weight: bold;
}
        
.banner2-icon-en{
    font-size: 1.3rem;
    padding-top: 1px;
}

.carousel-caption-banner2 {
    border-radius: 10px;
    padding: 20px;
    right: 10% !important;
    bottom: 15rem !important;
    left: 45% !important;
    text-align: left !important;
}

.banner1-title-cn{
    font-size: 5rem;
    color: #000!important;
    font-weight: 1000;
}
    
.banner1-subtitle-cn{
    color: #000 !important;
    font-size: 2.5rem;
    padding: 3px 5px !important;
    font-weight: bold;
}
        
.banner1-ol-cn{
    color: #000 !important;
    font-weight: bold;
    font-size: 1.6rem;
}

.banner1-title-en{
    font-size: 2.3rem;
    color: #000 !important;
    font-weight: 1000;
    padding: 0px 5px !important;
}
    
.banner1-subtitle-en{
    color: #000 !important;
    font-size: 1.3rem;
    padding: 3px 5px !important;
    font-weight: bold;
}
         
.banner1-ol-en{
    color: #000 !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.carousel-caption-banner1 {
    border-radius: 10px;
    padding: 20px;
    right: 10% !important;
    bottom: 10rem !important;
    left: 45% !important;
    text-align: left !important;
}

.carousel-caption-remark{
    color: #000 !important;
    background-color: #fff;
    padding: 0rem 1rem;
}

/* 公司簡介樣式 */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 產品區域樣式 */
.products-section {
    padding: 80px 0;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto 30px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

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

.product-img {
    height: 250px;
    object-fit: cover;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

/* 頁尾樣式 */
footer {
    background-color: white;
    padding: 40px 0 20px;
    color: #2c3e50;
}

.footer-subtitle {
    text-decoration: none;
    font-weight: bolder;
    font-size: 1.2rem;
    color: #333 !important;
}

.footer-subtitle:hover { 
    color: #5a5a5a !important;
}

.footer-title{
    font-weight: bolder;
}

.footer-title-a{
    font-weight: bolder;
    text-decoration: none;
    color: #333 !important;
}

.footer-title-a:hover{
    font-weight: bolder;
    color: #5a5a5a !important;
}

.footer-section {
    padding: 0 20px;
}

.footer-mid {
    border-right:  1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
}

.collapsed-content {
    transition: all 0.3s ease;
}

.toggle-btn {
    transition: all 0.3s ease;
    font-weight: bolder;
}

.toggle-btn.collapsed .bi-chevron-down {
    transform: rotate(0deg);
}

.toggle-btn .bi-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.remark {
    font-size: 0.7rem!important;
}


/* 产品頁面 */
/* 产品图片区域 */
.product-hero {
    background-color: var(--light-bg);
    padding: 3rem 0 0 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* 产品名称样式 */
.product-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* 目录导航 */
.section-nav {
    position: sticky;
    top: 90px;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.section-nav .nav-link {
    color: var(--secondary-color);
    border-left: 3px solid transparent;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.section-nav .nav-link:hover,
.section-nav .nav-link.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.05);
}



/* 内容区块样式 */
.content-section {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    scroll-margin-top: 90px;
}

.section-title {
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 10px 10px 0 rgba(187,160,100,.2);
}

.section-title-en {
    font-size: 1.5rem !important;
}

.section-subtitle {
    font-weight: bold;
    color: var(--text-color);
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
}

/* 视频容器 */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* 优势卡片样式 */
.advantage-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.list-hash {
    font-size: 0.8rem!important;
    list-style-type: "#"; /* 去掉預設的符號 */
    padding-left: 0;
}

.list-hash li {
    padding-left: 20px;
}

.list-asterisk {
    font-size: 0.8rem!important;
    list-style-type: "*"; /* 去掉預設的符號 */
    padding-left: 0;
}

.list-asterisk li {
    padding-left: 20px;
}
  
.faq-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.color-green{
    color: #4ee859;
}

.color-icon{
    color: #ffa701;
}

.term-title {
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.section-title {
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.section-title:first-of-type {
    margin-top: 0;
}

.section-title:hover {
    color: var(--primary-color);
}

.section-title::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.section-title.collapsed::after {
    transform: rotate(-90deg);
}

.subsection {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.subsection-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.subsection-content {
    color: #333;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #e9ecef;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}


/* 聯絡我們 */

.contact-section {
    padding: 4rem 0;
}

.contact-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-form {
    background-color: #eee;
    padding: 2rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(58, 110, 165, 0.25);
}
        
.btn-danger{
    background-color: var(--secondary-color)!important;
}   

.btn-danger:hover{
    background-color: var(--accent-color)!important;
}

.cert{
    width: 50%;
    padding-bottom: 1rem;
}

.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.modal-header {
    background: #efea00;
    color: white;
    border-bottom: none;
    padding: 15px 20px;
}
.modal-title {
    font-weight: 600;
}
.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 0.8;
}
.btn-close:hover {
    opacity: 1;
}
.modal-body {
    padding: 0;
    text-align: center;
}
.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* 響應式調整 */

@media (max-width: 1360px) {

    .banner2-title-cn{
        font-size: 2.5rem;
    }
        
    .banner2-normal-cn{
        font-size: 1.5rem;
    }
        
    .banner2-icon-cn{
        font-size: 1.5rem;
    }

    .banner2-title-en{
        font-size: 1.6rem;
    }
        
    .banner2-normal-en{
        font-size: 1.2rem;
    }
        
    .banner2-icon-en{
        font-size: 1.2rem;
    }

    .carousel-caption-banner2 {
        bottom: 16rem !important;
        left: 45% !important;
    }

    .carousel-caption-banner3 {
        right: 10% !important;
        bottom: 14rem !important;
        left: 50% !important;
    }
            
    .banner1-ol-cn{
        font-size: 1.5rem !important;
    }
            
    .banner1-ol-en{
        font-size: 1.3rem !important;
    }

    .banner3-title-cn{
        font-size: 2.3rem;
    }
        
    .banner3-subtitle-cn{
        font-size: 2rem;
    }
            
    .banner3-ol-cn{
        font-size: 1.4rem !important;
    }

    .banner3-title-en{
        font-size: 1.6rem;
    }
        
    .banner3-subtitle-en{
        font-size: 1.3rem;
    }
            
    .banner3-ol-en{
        font-size: 1rem !important;
    }

    .banner4-title-en{
        font-size: 1.8rem;
    }
        
    .banner4-subtitle-en{
        font-size: 1.3rem !important;
        padding: 3px 10px !important;
        margin-left: -5px !important;
    }

}

@media (max-width: 992px) {
    
    .carousel-item {
        height: 400px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .footer-menu li {
        width: 45%;
    }

    .banner1-title-cn{
        font-size: 2.5rem;
    }
        
    .banner1-subtitle-cn{
        font-size: 1.9rem;
    }
            
    .banner1-ol-cn{
        font-size: 1.2rem !important;
    }

    .banner1-title-en{
        font-size: 1.5rem;
        margin: 3px 0px !important;        
    }
        
    .banner1-subtitle-en{
        font-size: 1rem;
        margin: 3px 0px !important;        
    }
            
    .banner1-ol-en{
        font-size: 1rem !important;
        margin: 3px 0px !important;        
    }


    .carousel-caption-banner1 {
        right: 10% !important;
        bottom: 2rem !important;
        left: 42% !important;
    }

    .banner2-title-cn{
        font-size: 1.9rem;
        padding: 0px 1px !important;
    }
        
    .banner2-normal-cn{
        font-size: 1rem;
        padding: 0px 1px !important;
    }
        
    .banner2-icon-cn{
        font-size: 1rem;
    }

    .banner2-title-en{
        font-size: 1.3rem;
        padding: 0px 1px !important;
    }
        
    .banner2-normal-en{
        font-size: 0.8rem;
        padding: 0px 1px !important;
    }
        
    .banner2-icon-en{
        font-size: 1rem;
    }

    .carousel-caption-banner2 {
        bottom: 5rem !important;
        left: 43% !important;
    }

    .carousel-caption-banner3 {
        right: 10% !important;
        bottom: 3rem !important;
        left: 50% !important;
    }

    .banner3-title-cn{
        font-size: 1.8rem;
    }
        
    .banner3-subtitle-cn{
        font-size: 1.5rem;
    }
            
    .banner3-ol-cn{
        font-size: 1.2rem !important;
    }

    .banner3-title-en{
        font-size: 1.2rem;
    }
        
    .banner3-subtitle-en{
        font-size: 1rem;
    }
            
    .banner3-ol-en{
        font-size: 0.8rem !important;
    }

    .carousel-caption-banner4 {
        bottom: 3rem !important;
        left: 10% !important;
    }

    .banner4-title-cn{
        font-size: 2rem;
    }
        
    .banner4-subtitle-cn{
        font-size: 1.5rem !important;
        padding: 3px 10px !important;
        margin-left: -5px !important;
    }
        
    .banner4-ol-cn{
        font-size: 1rem !important;
    }

    .carousel-caption-banner4 ol li{
        padding-left: 35px !important; /* 留出空間給圓圈 */
        margin: 1rem 0px !important;        
    }

    .banner4-title-en{
        font-size: 1rem;
    }
        
    .banner4-subtitle-en{
        font-size: 1rem !important;
        padding: 3px 10px !important;
        margin-left: -5px !important;
    }
        
    .banner4-ol-en{
        font-size: 0.8rem !important;
    }

}

@media (max-width: 768px) {

    .carousel-item {
        height: 300px;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .footer-divider {
        border-right: none;
        border-bottom: 1px solid #a1d6ff;
        margin: 15px 0;
        padding-bottom: 15px;
    }

    .footer-section:last-child .footer-divider {
        border-bottom: none;
    }
    
    .section-nav {
        position: static;
        margin-bottom: 2rem;
    }

    .faq-container {
        padding: 1.5rem;
    }
    
    .subsection {
        margin-left: 0.5rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
       
    .carousel-caption-banner1 {
        font-size: 0.9rem;
    }

    .footer-title-a{
        margin-left: 1rem !important;
    }

    .banner1-title-cn{
        font-size: 1.5rem;
        margin-bottom: 0rem !important;
    }
        
    .banner1-subtitle-cn{
        font-size: 1rem;
        margin-bottom: 0rem !important;
    }
            
    .banner1-ol-cn{
        font-size: 0.9rem !important;
        margin-bottom: 0rem !important;
    }

    .banner1-title-en{
        font-size: 1rem;
        margin-bottom: 0rem !important;
    }
        
    .banner1-subtitle-en{
        font-size: 0.7rem;
        margin-bottom: 0rem !important;
    }
            
    .banner1-ol-en{
        font-size: 0.6rem !important;
        margin-bottom: 0rem !important;
    }

    .carousel-caption-banner1 {
        right: 10% !important;
        bottom: 0.6rem !important;
        left: 40% !important;
    }

    .banner2-title-cn{
        font-size: 1.2rem;
        padding: 0px 1px !important;
    }
        
    .banner2-normal-cn{
        font-size: 1rem;
        padding: 0px 1px !important;
        margin-bottom: 0rem !important;
    }
        
    .banner2-icon-cn{
        font-size: 1rem;
    }

    .banner2-title-en{
        font-size: 1rem;
        padding: 0px 1px !important;
    }
        
    .banner2-normal-en{
        font-size: 0.8rem;
        padding: 0px 1px !important;
        margin-bottom: 0rem !important;
    }
        
    .banner2-icon-en{
        font-size: 0.8rem;
    }

    .carousel-caption-banner2 {
        bottom: 1rem !important;
        left: 40% !important;
    }

    .carousel-caption-banner3 {
        right: 10% !important;
        bottom: 2rem !important;
        left: 43% !important;
    }

    .banner3-title-cn{
        font-size: 1.6rem;
        margin-bottom: 0rem !important;
    }
        
    .banner3-subtitle-cn{
        font-size: 1rem;
        margin-bottom: 0rem !important;
    }
            
    .banner3-ol-cn{
        font-size: 0.9rem !important;
        margin-bottom: 0rem !important;
    }

    .banner3-title-en{
        font-size: 1rem;
        margin-bottom: 0.4rem !important;
        text-shadow: 
            -1px -1px 0 rgb(255, 255, 255),
            1px -1px 0 rgb(255, 255, 255),
            -1px  1px 0 rgb(255, 255, 255),
            1px  1px 0 rgb(255, 255, 255); /* 边框效果 */
    }
        
    .banner3-subtitle-en{
        font-size: 1rem;
        margin-bottom: 0.2rem !important;
        text-shadow: 
            -1px -1px 0 rgb(255, 255, 255),
            1px -1px 0 rgb(255, 255, 255),
            -1px  1px 0 rgb(255, 255, 255),
            1px  1px 0 rgb(255, 255, 255); /* 边框效果 */
    }
            
    .banner3-ol-en{
        font-size: 0.7rem !important;
        margin-bottom: 0rem !important;
        text-shadow: 
            -1px -1px 0 rgb(255, 255, 255),
            1px -1px 0 rgb(255, 255, 255),
            -1px  1px 0 rgb(255, 255, 255),
            1px  1px 0 rgb(255, 255, 255); /* 边框效果 */
    }
    
    .carousel-caption-banner4 {
        bottom: 0.5rem !important;
        left: 10% !important;
        right: 45% !important;
    }

    .banner4-title-cn{
        font-size: 1.2rem;
        margin-bottom: 0rem !important;
        padding: 0px 5px !important;
    }
        
    .banner4-subtitle-cn{
        font-size: 1.1rem !important;
        padding: 0px 10px !important;
        margin-left: -5px !important;
        margin-bottom: 5px !important;
    }
        
    .banner4-ol-cn{
        font-size: 0.7rem !important;
    }

    .banner4-title-en{
        font-size: 0.8rem;
        margin-bottom: 0rem !important;
        padding: 0px 5px !important;
    }
        
    .banner4-subtitle-en{
        font-size: 0.6rem !important;
        padding: 0px 10px !important;
        margin-left: -5px !important;
        margin-bottom: 5px !important;
    }
        
    .banner4-ol-en{
        font-size: 0.6rem !important;
    }

    .carousel-caption-banner4 ol li{
        padding-left: 25px !important; /* 留出空間給圓圈 */
        margin: 0rem 0px !important;        
    }

    .carousel-caption-banner4 ol li::before {
        width: 15px; /* 圓圈寬度 */
        height: 15px; /* 圓圈高度 */   
    }


}