html {
  scroll-behavior: smooth;
}
html img{
    border: 0;
    display: block;
    margin: 0;
    max-width: 100%;
    height: auto;
}
table, th, td, img {
    border: none; /* 移除边框 */
}
html table td a {
    display: block;
    margin: 0;
}
html table {
    max-width: 100%;
    border: 0;
    display: block;
    margin: 0 auto;

}
html .mainContainer{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#OfficialFooterWrapper{
  display: none !important;

}
.padding img {
    
    max-height: 0;
}
iframe {
    cursor: pointer;
}


         /* 共同的樣式設定 */
        .container {
            overflow: hidden;
            width: 100%;
            white-space: nowrap;
            position: relative;
            max-width: 1200px; /* 最大寬度為 1200px */
            margin: 0 auto; /* 水平置中 */
            background-color: #333333;
        }

        .slider {
            display: flex;
            transition: transform 0.3s ease;
        }

        .slide {
            flex: 0 0 33.33%; /* 一次顯示三張圖片 */
            padding: 10px;
            box-sizing: border-box;
        }

        /* 左右滑動按鈕樣式 */
        .prev-btn, .next-btn {
            padding: 10px;
            background-color: #aca7a7c2;
            top: 39%;
            cursor: pointer;
            position: absolute;
            transform: translateY(-50%);
            z-index: 1; /* 將按鈕置於圖片上方 */
            border-radius: 10px;
            font-size: 140%;
        }

        .prev-btn {
            left: 0; /* 左滑動按鈕靠左定位 */
        }

        .next-btn {
            right: 0; /* 右滑動按鈕靠右定位 */
        }

        @media (max-width: 1199px) {
            .prev-btn, .next-btn {
            font-size: 550%;
        }
        }

        /* 手機版特定樣式 */
        @media (max-width: 767px) {
            .slide {
                flex: 0 0 100%;
            }

            .slider {
                overflow: hidden;
            }
            .prev-btn, .next-btn {
            font-size: 300%;
        }
        }



        /* 立即購買按鈕樣式 */
        .buy-btn {
            display: block;
            margin-top: 10px;
            text-decoration: none;
            margin-bottom: -3%;
        }