@charset "UTF-8";

/* ===========================================
   CSS 變數定義
   =========================================== */
:root {
    /* 主要顏色 */
    --primary-blue: #0276cf;
    --primary-orange: #fa6839;
    --primary-yellow: #fedc89;
    --dark-blue: #004c90;
    --light-blue: #f3f7ff;
    --border-blue: #e0ebff;
    --text-dark: #333333;
    --text-white: #ffffff;

    /* 字體 */
    --font-primary: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif, Arial, Helvetica;
    --font-swei: 'SweiGothicCJKtc';

    /* 間距 */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;

    /* 圓角 */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;

    /* 陰影 */
    --shadow-card: 0px 0px 50px 0px rgba(171, 188, 222, 0.6);
    --shadow-mobile: 0px 5px 30px 0 rgba(171, 188, 222, 0.6);
}

/* ===========================================
   字體定義
   =========================================== */

@font-face {
    font-family: 'SweiGothicCJKtc';
    src: url('./../font/SweiGothicCJKtc-Black.ttf');
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 300;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Light.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 400;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Regular.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 500;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Medium.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 700;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Bold.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 300;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Light.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 400;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Regular.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 500;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Medium.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 700;
    src: url('https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Bold.otf') format('opentype');
    font-display: swap;
}
/* ===========================================
   基礎樣式重置
   =========================================== */
html,
body {
    height: 100%;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}

a,
button {
    outline: none;
}

/* 選擇文字樣式 */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

[data-anchor-btn] {
    cursor: pointer;
}

/* 水平線樣式 */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* 媒體元素對齊 */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/* 表單元素重置 */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

/* 標題和段落重置 */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: 1em;
}

p {
    margin: 0;
}

b {
    font-weight: 500;
}

/* 容器 */
.container {
    min-height: 100%;
    overflow: hidden;
}

/* 工具類別 */
.-fadeIn {
    opacity: 0;
}

.-hidden {
    display: none;
}

.-bold {
    font-weight: bold;
}

.-roundText {
    font-family: var(--font-swei);
}

.-rdText {
    color: var(--primary-orange);
}

.-buText {
    color: var(--primary-blue);
}

/* 響應式顯示控制 */
@media only screen and (min-width: 1024px) {
    .-mbOnly {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .-pcOnly {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) {
    .-mbDownOnly {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .-padUpOnly {
        display: none;
    }
}

/* ===========================================
   Header 組件
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 20px;
    background-image: url(../images/background/header.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-color: white;
    z-index: 100;
}

.header .anchor {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    padding: 0 15px;
    font-size: 18px;
}

.header .anchor a {
    color: #333;
    text-decoration: none;
}

.header .yuantaplusLogo {
    width: 130px;
    height: 39px;
    background-image: url(../images/logo/yuantaplus.svg);
    background-repeat: no-repeat;
}

.header .burger {
    display: none;
}

.header-logo {
    display: block;
    width: 187px;
}

/* Header 響應式設計 */

@media only screen and (max-width: 1280px) {
    .header .anchor {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1023px) {
    .header {
        padding: 16px;
        height: 68px;
    }

    .header .yuantaplusLogo {
        width: 105px;
        height: 36px;
        display: none;
    }

    .header {
        height: 59.5px;
    }

    .header .anchor {
        position: fixed;
        top: 59.5px;
        left: 0;
        width: 100%;
        height: calc(100% - 59.5px);
        padding: 50px;
        flex-direction: column;
        justify-content: center;
        font-size: 16px;
        text-align: center;
        background-color: #f3f7ff;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }

    .header .anchor a {
        padding-bottom: 15px;
        margin-top: 15px;
        border-bottom: 1px solid #333;
    }

    .header .anchor a:first-child {
        margin-top: 0;
    }

    .-anchorOpen .header .anchor {
        opacity: 1;
        pointer-events: visible;
    }

    .header .yuantaplusLogo {
        width: 83px;
        height: 26px;
    }

    .header .burger {
        display: block;
        width: 25px;
        height: 25px;
        background: url(../images/icon/burger.png) no-repeat center/contain;
    }

    .-anchorOpen .header .burger {
        background-image: url(../images/icon/cross.png);
    }

    .header-logo {
        width: 123px;
        height: 26px;
    }
}

/* ===========================================
   Main 內容區域
   =========================================== */
.main {
    margin-top: 80px;
}

@media only screen and (max-width: 1023px) {
    .main {
        margin-top: 68px;
    }
}

@media only screen and (max-width: 767px) {
    .main {
        margin-top: 59.5px;
    }
}

/* ===========================================
   Footer 組件
   =========================================== */
.footer {
    width: 100%;
    background-color: #007fe0;
    padding: 10px 0;
}

.footer a {
    color: #fff;
}

.footerCont {
    color: white;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 28px;
    text-align: center;
}

.footerCont .copyright {
    width: 100%;
}

.footerCont .contWrapper {
    width: 100%;
}

.contWrapper .footer-item {
    display: inline-block;
    padding: 0 5px;
}

.contWrapper .footer-item a {
    display: inline-block;
    text-decoration: underline;
}

/* App Download 組件 */
.appDownload {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.appDownload-QRcode img {
    width: 125px;
    margin-right: 20px;
}

.appDownload-link h5 {
    margin-bottom: 13px;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
}

.appDownload-link a {
    display: inline-block;
    padding: 0 3px;
    text-decoration: none;
    transition: 0.3s;
}

.appDownload-link img {
    width: 170px;
}

/* Footer 響應式設計 */
@media only screen and (min-width: 1024px) {
    .appDownload-link a:hover {
        transform: translateY(-10%);
    }
}

@media only screen and (max-width: 1023px) {
    .appDownload-QRcode {
        display: none;
    }

    .appDownload-link h5 {
        font-size: 13px;
        font-weight: normal;
    }

    .appDownload-link img {
        width: 140px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        height: auto;
        margin-bottom: 48px;
    }

    .footerCont {
        font-size: 12px;
        line-height: 20px;
        text-align: left;
    }

    .contWrapper .footer-item {
        width: 100%;
        display: block;
        padding: 0;
    }

    .footerCont .copyright,
    .footerCont .contact {
        float: none;
        display: block;
        max-width: 100%;
        padding-bottom: 10px;
    }
}

/* ===========================================
   浮動工具組件
   =========================================== */
/* 側邊欄 */
.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 100;
}

.side-item {
    width: 54px;
    height: 54px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.side-item.yuantaman {
    background-image: url('../images/side/yuantaman.svg');
}

.side-item.lineicon {
    background-image: url('../images/side/lineicon.svg');
}

.side-item.goTop {
    background-image: url('../images/side/goTop.svg');
    opacity: 0.7;
    cursor: pointer;
}

.yuantaman-box {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    width: 200px;
    padding: 8px;
    font-size: 12px;
    color: #0072ff;
    line-height: 1.6;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
}

.yuantaman-box span {
    color: #707070;
}

/* 浮動按鈕 */
.float {
    position: fixed;
    top: 220px;
    right: 15px;
    z-index: 10;
}

.float a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    background: #005bac;
    font-size: 16px;
    padding: 12px 10px;
    border-radius: 10px;
    text-decoration: none;
    margin: 8px 0;
}

.float a:first-child {
    background: #fa6839;
}

.float a img {
    margin-bottom: 4px;
    width: 20px;
}

/* 回到頂部按鈕 */
.gotop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    opacity: 1;
    overflow: hidden;
    z-index: 50;
}

/* 社群媒體圖示 */
.mediaIcons {
    position: fixed;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    display: none;
    margin: 0;
    padding: 0;
    z-index: 20;
}

.mediaIcons li {
    margin: 20px 10px;
    list-style: none;
}

.mediaIcons li a {
    display: block;
    width: 33px;
    height: 33px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.mediaIcons li a.facebook {
    background-image: url(../images/icon/social/facebook-bk.png);
}

.mediaIcons li a.line {
    background-image: url(../images/icon/social/line-bk.png);
}

.mediaIcons li a.instagram {
    background-image: url(../images/icon/social/instagram-bk.png);
}

.mediaIcons li a.youtube {
    background-image: url(../images/icon/social/youtube-bk.png);
}

.mediaIcons li a.telegram {
    background-image: url(../images/icon/social/telegram-bk.png);
}

/* 浮動工具響應式設計 */
@media only screen and (min-width: 768px) {
    .yuantaman:hover .yuantaman-box {
        display: flex;
    }
}

@media screen and (min-width: 1025px) {
    .goTop:hover {
        opacity: 1;
    }

    .gotop:hover {
        opacity: 0.7;
    }

    .mediaIcons li a:hover {
        opacity: 1;
    }

    .mediaIcons li a:hover.facebook {
        background-image: url(../images/icon/social/facebook-hover.png);
    }

    .mediaIcons li a:hover.line {
        background-image: url(../images/icon/social/line-hover.png);
    }

    .mediaIcons li a:hover.instagram {
        background-image: url(../images/icon/social/instagram-hover.png);
    }

    .mediaIcons li a:hover.youtube {
        background-image: url(../images/icon/social/youtube-hover.png);
    }

    .mediaIcons li a:hover.telegram {
        background-image: url(../images/icon/social/telegram-hover.png);
    }
}

@media only screen and (max-width: 1023px) {
    .mediaIcons {
        right: 0;
    }
}

@media (max-width: 767px) {
    .sidebar {
        bottom: 70px;
    }

    .side-item {
        width: 43px;
        height: 43px;
    }

    .float {
        top: auto;
        bottom: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .float a {
        width: auto;
        flex: 1;
        border-radius: 0;
        writing-mode: unset;
        margin: 0;
    }

    .float a img {
        width: auto;
        margin-bottom: 0;
        margin-right: 4px;
        height: 22px;
    }

    .gotop {
        right: 12px;
    }

    .mediaIcons {
        bottom: 0;
        right: 0;
        transform: none;
        width: 100%;
        padding: 4px 0;
        text-align: center;
        background-color: rgba(0, 159, 232, 0.9);
    }

    .mediaIcons li {
        display: inline-block;
        vertical-align: middle;
        margin: 6px;
    }

    .mediaIcons li a {
        width: 28px;
        height: 28px;
        opacity: 1;
    }

    .mediaIcons li a.facebook {
        background-image: url(../images/icon/social/facebook-wt.svg);
    }

    .mediaIcons li a.line {
        background-image: url(../images/icon/social/line-wt.svg);
    }

    .mediaIcons li a.instagram {
        background-image: url(../images/icon/social/instagram-wt.svg);
    }

    .mediaIcons li a.youtube {
        background-image: url(../images/icon/social/youtube-wt.svg);
    }

    .mediaIcons li a.telegram {
        background-image: url(../images/icon/social/telegram-wt.svg);
    }
}

/* ===========================================
   動畫定義
   =========================================== */
@keyframes cloud {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translate(20%);
    }
}

@keyframes arrow {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    75% {
        transform: translateY(-75%);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20%);
    }
}

/* ===========================================
   Banner 組件
   =========================================== */
.banner {
    position: relative;
    padding-bottom: 510px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.banner-bg img {
    width: auto;
    height: 100%;
}

.banner-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1340px;
    height: 100%;
    font-size: 0;
    z-index: 1;
}

.banner-wrap div {
    position: absolute;
}

.banner-wrap img {
    width: 100%;
}

.banner-wrap img.-mb {
    display: none;
}

.banner-pic {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-money {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bag {
    top: 5.4902%;
    right: 34.62687%;
    width: 6.19403%;
    transform-origin: right bottom;
}

.banner-bag img {
    animation: float 3s ease-in-out infinite alternate;
}

.banner-coin.-right {
    top: 30.78431%;
    right: 2.23881%;
    width: 7.46269%;
    animation: float 3s ease-in-out infinite alternate-reverse;
}

.banner-coin.-left {
    bottom: 4.70588%;
    right: 31.34328%;
    width: 5.29851%;
    animation: float 3s ease-in-out infinite alternate;
}

.banner-coin.-mb {
    display: none;
    animation: float 3s ease-in-out infinite alternate-reverse;
}

.banner-cloud {
    animation: cloud 3s ease-in-out infinite;
}

.banner-cloud.-left {
    right: 32.46269%;
    bottom: 22.35294%;
    width: 10.67164%;
    animation-direction: alternate-reverse;
}

.banner-cloud.-right {
    right: 10.29851%;
    top: 7.84314%;
    width: 10.07463%;
    animation-direction: alternate;
}

.banner-arrow {
    width: 2.31343%;
    animation: arrow 1.5s linear infinite;
}

.banner-arrow.-left {
    right: 34.32836%;
    top: 38.62745%;
}

.banner-arrow.-right {
    right: 9.85075%;
    bottom: 27.64706%;
}

.banner-hand {
    right: 6.71642%;
    bottom: -4.31373%;
    width: 27.68657%;
}

.banner-items {
    top: 4.31373%;
    right: 8.58209%;
    width: 32.23881%;
}

.banner-wording {
    top: 24%;
    left: 4.5%;
    width: 51%;
}

/* Banner 響應式設計 */
@media only screen and (min-width: 1921px) {
    .banner-bg {
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
    }

    .banner-bg img {
        width: 100%;
        height: auto;
    }

    .banner-bg img.-mb {
        display: none;
    }
}

@media only screen and (max-width: 1340px) {
    .banner {
        padding-bottom: 38.0597%;
    }
}

@media only screen and (max-width: 1023px) {
    .banner {
        padding-bottom: 48.0597%;
    }

    .banner-wrap {
        width: 110%;
    }

    .banner-pic {
        left: 2.5%;
    }

    .banner-wording {
        left: 8%;
    }
}

@media only screen and (max-width: 767px) {
    .banner {
        padding-bottom: 123.95833%;
    }

    .banner img.-pc {
        display: none;
    }

    .banner img.-mb {
        display: block;
    }

    .banner-wrap {
        width: 100%;
    }

    .banner-pic {
        left: 0;
    }

    .banner-bag {
        top: 45.21008%;
        right: 67.8125%;
        width: 11.25%;
    }

    .banner-coin.-right {
        top: 59.2437%;
        right: 9.375%;
        width: 13.54167%;
    }

    .banner-coin.-left {
        bottom: 4.95798%;
        right: 61.77083%;
        width: 9.47917%;
    }

    .banner-coin.-mb {
        display: block;
        left: 6.66667%;
        top: 60.58824%;
        width: 11.97917%;
    }

    .banner-cloud.-left {
        right: 63.85417%;
        bottom: 14.87395%;
        width: 19.27083%;
    }

    .banner-cloud.-right {
        right: 24.0625%;
        top: 46.55462%;
        width: 18.22917%;
    }

    .banner-arrow {
        width: 4.16667%;
    }

    .banner-arrow.-left {
        right: 67.5%;
        top: 63.10924%;
    }

    .banner-arrow.-right {
        right: 23.125%;
        bottom: 18.9916%;
    }

    .banner-hand {
        right: 17.39583%;
        bottom: 0;
        width: 50%;
    }

    .banner-items {
        top: 44.53782%;
        right: 20.9375%;
        width: 58.33333%;
    }

    .banner-wording {
        top: 11%;
        left: 9%;
        width: 85%;
    }
}

/* ===========================================
   按鈕組件
   =========================================== */
.btn {
    box-sizing: border-box;
    display: inline-block;
    width: 200px;
    padding: 13px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 27px;
    background-color: #63a3f2;
    cursor: pointer;
}

@media only screen and (min-width: 1181px) {
    .btn {
        transition: 0.3s;
    }

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

@media only screen and (max-width: 1023px) {
    .btn {
        width: 180px;
        padding: 11px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .btn {
        width: 140px;
        padding: 9px;
        font-size: 14px;
    }
}

/* ===========================================
   主要內容組件
   =========================================== */
.content {
    background-color: #e0eaff;
}

.block {
    padding: 100px 25px;
}

.block-title {
    font-size: 56px;
    text-align: center;
}

.block-text {
    margin-top: 5px;
    font-size: 36px;
    text-align: center;
}

.block-text span {
    color: #005bac;
}

.block-text img {
    height: 35px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.block-anchor {
    transform: translateY(-80px);
}

.block-wrap {
    position: relative;
    box-sizing: border-box;
    max-width: 1160px;
    margin: 0 auto;
    z-index: 1;
}

.block-content {
    margin-top: 35px;
}

.block.-mainInfo {
    position: relative;
    background-color: #f3f7ff;
}

.block.-mainInfo::before,
.block.-mainInfo::after {
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    width: 228px;
    height: 718px;
    background: url(../images/background/arrow.png) no-repeat center bottom/contain;
}

.block.-mainInfo::before {
    left: 5%;
}

.block.-mainInfo::after {
    right: 5%;
}

.block.-discount {
    background-color: #f3f7ff;
}

.block.-discount .block-wrap {
    max-width: 1180px;
}

.block.-bottom .block-wrap {
    max-width: 1180px;
}

/* 主要內容響應式設計 */
@media only screen and (max-width: 1340px) {
    .block.-mainInfo::before,
    .block.-mainInfo::after {
        width: 135px;
        height: 425px;
        display: none;
    }

    .block.-mainInfo::before {
        left: 1%;
    }

    .block.-mainInfo::after {
        right: 1%;
    }
}

@media only screen and (max-width: 1023px) {
    .block {
        padding: 70px 25px;
    }

    .block-anchor {
        transform: translateY(-68px);
    }

    .block-title {
        font-size: 38px;
    }

    .block-text {
        margin-top: 5px;
        font-size: 24px;
    }

    .block-text img {
        height: 24px;
        margin-bottom: 5px;
    }

    .block-content {
        margin-top: 25px;
    }

    .block.-bank .block-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .block {
        padding: 50px 0;
    }

    .block-anchor {
        transform: translateY(-59.5px);
    }

    .block-wrap {
        padding: 0 15px;
    }

    .block-title {
        font-size: 30px;
    }

    .block-text {
        margin-top: 0;
        font-size: 20px;
    }

    .block-text img {
        height: 20px;
        margin-bottom: 4px;
    }

    .block-content {
        margin-top: 20px;
    }

    .block.-mainInfo::before,
    .block.-mainInfo::after {
        width: 60px;
        height: 190px;
    }

    .block.-mainInfo::before {
        left: 5%;
    }

    .block.-mainInfo::after {
        right: 5%;
    }

    .block.-bank .block-title {
        font-size: 30px;
    }
}

/* ===========================================
   Info 組件
   =========================================== */
.info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    color: var(--text-white);
    background-color: var(--dark-blue);
}

.info-date {
    flex: 0 0 auto;
    text-align: center;
    font-family: var(--font-swei);
}

.info-date p {
    margin: 0;
    line-height: 1.8;
}

.info-date p:first-child {
    font-size: 32px;
}

.info-date p:last-child {
    font-size: 42px;
}

.info-divider {
    width: 1px;
    height: 117px;
    background-color: var(--text-white);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-text {
    font-size: 18px;
    line-height: 1.8;
}

.info-text p {
    margin: 0;
}

.info-bonus {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.bonus-tag {
    background-color: var(--primary-yellow);
    color: #005bac;
    padding: 4px 16px;
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.bonus-text {
    font-size: 18px;
    line-height: 1.6;
}

.info-content .-highlight {
    color: var(--primary-yellow);
    font-weight: bold;
}

.info-content .-highlight-large {
    color: var(--primary-yellow);
    font-size: 24px;
    font-weight: bold;
}

.info-content .-highlight-small {
    color: var(--primary-yellow);
    font-size: 16px;
    font-weight: normal;
}

.info-content .-break {
    display: none;
}

/* Info 響應式設計 */
@media only screen and (max-width: 1199px) {
    .info .-break {
        display: block;
    }
}

@media only screen and (max-width: 1023px) {
    .info {
        padding: 25px 20px;
        gap: 20px;
    }

    .info-date p:first-child {
        font-size: 28px;
    }

    .info-date p:last-child {
        font-size: 36px;
    }

    .info-divider {
        height: 100px;
    }

    .info-content .-highlight-large {
        font-size: 22px;
    }

    .info-content .-highlight-small,
    .info-content .small {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .info {
        display: block;
        padding: 25px 10px;
        text-align: center;
    }

    .info-date {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #fff;
    }

    .info-date p:first-child {
        font-size: 24px;
    }

    .info-date p:last-child {
        font-size: 32px;
    }

    .info-divider {
        display: none;
    }

    .info-content {
        max-width: 370px;
        margin: 0 auto;
        gap: 20px;
    }

    .info-bonus {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .info-content .-highlight-small,
    .info-content .small {
        font-size: 14px;
    }
}

/* ===========================================
   Bonus 組件
   =========================================== */
.bonus {
    display: flex;
    font-size: 20px;
    font-weight: 500;
    border-radius: 45px;
    border: 2px solid var(--primary-orange);
    background-color: #fff;
    overflow: hidden;
    text-decoration: none;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.bonus-title {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 12px 35px;
    color: #fff;
    background-color: var(--primary-orange);
}

.bonus-content {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    padding: 12px 25px 12px 30px;
    color: var(--text-dark);
    min-width: 0;
}

.bonus-content p {
    flex: 0 1 auto;
    min-width: 0;
}

.bonus-content .smBtn {
    margin-left: 10px;
    padding: 2px 15px 5px;
    font-size: 16px;
    color: #fff;
    border-radius: 16px;
    background-color: #fa6839;
}

/* Bonus 響應式設計 */
@media only screen and (min-width: 1181px) {
    .bonus {
        transition: 0.3s;
    }

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

@media only screen and (max-width: 1023px) {
    .bonus {
        font-size: 16px;
        width: fit-content;
        max-width: 100%;
    }

    .bonus-title {
        padding: 8px 25px;
    }

    .bonus-content {
        padding: 8px 25px;
        flex: 0 1 auto;
    }

    .bonus-content p {
        flex: 0 1 auto;
    }

    .bonus-content .smBtn {
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .bonus {
        font-size: 14px;
        border-radius: var(--radius-sm);
        border-width: 1px;
        width: fit-content;
        max-width: 100%;
    }

    .bonus-title {
        padding: 10px;
    }

    .bonus-content {
        padding: 10px;
        flex: 0 1 auto;
    }

    .bonus-content p {
        flex: 0 1 auto;
    }

    .bonus-content .smBtn {
        padding: 2px 8px 5px;
        margin-left: 5px;
        font-size: 13px;
    }
}

/* ===========================================
   Way 組件
   =========================================== */
.way {
    max-width: 1200px;
    margin: 65px auto 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
}

.way-card {
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    background-color: #fff;
}

.way-card.-left {
    flex: 2;
    margin-top: 10px;
}

.way-card.-right {
    flex: 1;
    margin-top: 10px;
}

.way-step {
    font-family: var(--font-swei);
    position: absolute;
    top: 0;
    left: 40px;
    box-sizing: border-box;
    width: 42px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    border-radius: 0 0 50px 50px;
    background-color: var(--primary-blue);
    z-index: 10;
}

.way-card-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    height: 100%;
}

.way-pic {
    width: 280px;
    height: 140px;
    margin-bottom: 8px;
}

.way-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.way-options {
    display: flex;
    gap: 30px;
    align-items: stretch;
    min-height: 200px;
}

.way-option {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.way-divider {
    width: 1px;
    background-color: #eee;
    flex-shrink: 0;
    align-self: stretch;
}

.way-title {
    text-align: center;
    font-size: 30px;
    line-height: 1.6;
    color: var(--text-dark);
}

.way-title span {
    font-size: 24px;
    color: var(--primary-blue);
}

.way-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    color: var(--text-dark);
}

.way-content p {
    margin: 0;
    text-align: center;
}

.way-content .-rdText {
    color: var(--primary-orange);
}

.way-content span {
    color: var(--primary-blue);
}

.way-note {
    font-size: 16px;
    font-weight: normal;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: center;
}

.way-definition {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: center;
    margin: 0;
}
.way-date {
    font-size: 18px;
    font-weight: normal;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 5%;
    font-weight: bold;
}

@media only screen and (max-width: 1023px) {
    .way {
        max-width: 900px;
        margin-top: 50px;
        flex-direction: column;
        gap: 30px;
    }

    .way-card.-left {
        flex: none;
        width: 100%;
    }

    .way-card.-right {
        flex: none;
        width: 100%;
        height: auto;
    }

    .way-card-content {
        padding: 30px 20px;
    }

    .way-options {
        flex-direction: column;
        gap: 20px;
    }

    .way-divider {
        width: 80%;
        height: 1px;
        background-color: #eee;
        align-self: center;
    }

    .way-step {
        left: 30px;
        width: 36px;
        height: 54px;
        font-size: 20px;
    }

    .way-pic {
        width: 200px;
        height: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .way {
        margin-top: 35px;
        flex-direction: column;
        gap: 20px;
    }

    .way-card {
        border-radius: 10px;
        box-shadow: 0px 5px 30px 0 rgba(171, 188, 222, 0.6);
    }

    .way-card.-left {
        margin-top: 5px;
    }

    .way-card.-right {
        margin-top: 5px;
        height: auto;
    }

    .way-options {
        flex-direction: column;
        gap: 15px;
    }

    .way-step {
        left: 20px;
        width: 30px;
        height: 45px;
        font-size: 18px;
    }

    .way-pic {
        width: 150px;
        height: 75px;
        margin-bottom: 5px;
    }

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

    .way-title span {
        font-size: 20px;
    }

    .way-content {
        font-size: 16px;
        gap: 6px;
    }

    .way-content .way-note {
        font-size: 14px;
    }
    .way-definition {
        font-size: 12px;
    }
}

.advance {
    box-sizing: border-box;
    display: flex;
    max-width: 764px;
    margin: 0 auto;
    padding: 50px 50px 40px 10px;
    border-radius: 20px;
    box-shadow: 0px 14px 46px 0 rgba(171, 188, 222, 0.6);
    background-color: #fbfcff;
}

.advance-pic {
    flex: 0 0 auto;
    width: 258px;
}

.advance-pic img {
    width: 100%;
}

.advance-content {
    flex: 1;
}

.advance-text {
    font-size: 20px;
    font-weight: 500;
}

.advance-text span {
    font-size: 28px;
}

.advance-btn {
    margin-top: 15px;
}

@media only screen and (max-width: 1023px) {
    .advance {
        padding: 40px 40px 25px 0;
    }

    .advance-pic {
        width: 230px;
        margin-right: 10px;
    }

    .advance-text {
        font-size: 16px;
    }

    .advance-text span {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .advance {
        display: block;

        padding: 30px 18px;
        box-shadow: 0px 5px 30px 0 rgba(171, 188, 222, 0.6);
    }

    .advance-pic {
        width: 180px;
        margin: 0 auto;
        text-align: center;
    }

    .advance-content {
        margin-top: 15px;
    }

    .advance-text {
        font-size: 14px;
    }

    .advance-text span {
        font-size: 20px;
    }

    .advance-btn {
        text-align: center;
    }
}

.gift {
    margin-right: -45px;
}

.gift .swiper-wrapper {
    flex-wrap: wrap;
}

.gift-item {
    flex: 0 0 auto;
    width: calc((100% / 3) - 45px);
    margin-top: 45px;
}

.gift-item:nth-child(-n + 3) {
    margin-top: 0;
}

.gift-item::before {
    content: '';
    display: block;
    height: 43px;
    background: url(../images/background/gift.png) no-repeat center bottom/contain;
}

.gift-item:not(.swiper-slide-duplicate) {
    opacity: 0;
}

.gift-item.swiper-slide-prev {
    opacity: 0;
}

.gift-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: calc(100% - 43px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0px 10px 18px 0 rgba(171, 188, 222, 0.6);
    background-color: #fbfcff;
}

.gift-title {
    margin-bottom: 35px;
    font-size: 24px;
    color: #0276cf;
    text-align: center;
}

.gift-pic {
    margin-bottom: 20px;
}

.gift-pic img {
    width: 100%;
}

.gift-content {
    flex: 1 0 auto;
}

.gift-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gift-content li {
    position: relative;
    padding-left: 30px;
}

.gift-content li::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    display: block;
    width: 21px;
    height: 20px;
    background: url(../images/icon/star.png) no-repeat center/contain;
}

.gift-content li + li {
    margin-top: 25px;
}

.gift-btn {
    margin-top: 30px;
    text-align: center;
}

.gift-msg {
    margin-top: 30px;
    padding: 8.5px 0;
    font-size: 24px;
    color: #fa6839;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .gift .swiper-wrapper {
        transform: none !important;
    }
}

@media only screen and (max-width: 1023px) {
    .gift {
        margin-right: -20px;
    }

    .gift-item {
        width: calc((100% / 3) - 20px);
        margin-top: 20px;
    }

    .gift-item::before {
        height: 30px;
    }

    .gift-card {
        height: calc(100% - 30px);
        padding: 20px;
        border-radius: 15px;
    }

    .gift-title {
        margin-bottom: 15px;
        font-size: 22px;
    }

    .gift-pic {
        margin: 0 -20px;
        margin-bottom: 10px;
    }

    .gift-content li {
        padding-left: 25px;
        font-size: 15px;
    }

    .gift-content li::before {
        width: 19px;
        height: 18px;
    }

    .gift-content li + li {
        margin-top: 10px;
    }

    .gift-btn {
        margin-top: 20px;
    }

    .gift-msg {
        margin-top: 20px;
        padding: 8px 0;
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .gift {
        margin-right: 0;
    }

    .gift .swiper-wrapper {
        flex-wrap: nowrap;
    }

    .gift-item {
        width: 240px;
        margin-top: 0;
    }

    .gift-item::before {
        height: 26px;
    }

    .gift-card {
        height: calc(100% - 26px);
        border-radius: 10px;
    }

    .gift-content li {
        padding-left: 20px;
        font-size: 15px;
    }

    .gift-content li::before {
        width: 16px;
        height: 15px;
    }

    .gift-msg {
        padding: 7.5px 0;
        font-size: 16px;
    }
}

.notice {
    box-sizing: border-box;
    margin: 60px auto 0;
    padding: 0 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 50px 0px #abbcde99;
}

.notice ul {
    list-style: none;
    padding-left: 1em;
}
.notice ul li {
    margin-bottom: 0.5em;
}

.notice-action {
    position: relative;
    display: block;
    padding: 28px 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.notice-action::after {
    content: '＋';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    font-size: 1.2em;
    transition: 0.3s;
}

.notice-content {
    display: none;
    padding: 25px 0;
    font-size: 16px;
    border-top: 1px solid #333;
}

.notice.is-open .notice-action::after {
    content: '－';
    transform: translateY(-50%) rotate(180deg);
}

@media only screen and (max-width: 1023px) {
    .notice {
        margin-top: 37px;
        padding: 0 20px;
        border-radius: 5px;
    }

    .notice-action {
        padding: 20px 0;
        font-size: 16px;
    }

    .notice-content {
        padding: 20px 0;
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .notice-action {
        padding: 13px 0;
    }

    .notice-content {
        padding: 13px 0;
    }
}

ol {
    line-height: 1.7;
    margin: 0;
    padding-left: 25px;
}

ol.chinese {
    list-style-type: none;
    padding-left: 30px;
}

ol.chinese > li {
    position: relative;
}

ol.chinese > li::before {
    content: '(' attr(data-num) ')';
    position: absolute;
    top: 0;
    left: -5px;
    transform: translateX(-100%);
}

ol.brackets {
    list-style-type: none;
}

ol.brackets > li {
    position: relative;
    counter-increment: section;
}

ol.brackets > li::before {
    content: '(' counter(section, decimal) ')';
    position: absolute;
    top: 0;
    left: -5px;
    transform: translateX(-100%);
}

ol.cjk {
    list-style-type: none;
    padding-left: 32px;
}

ol.cjk > li {
    position: relative;
}

ol.cjk > li::before {
    content: attr(data-num) '、';
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}

@media only screen and (max-width: 767px) {
    ol {
        font-size: 14px;
    }
}

.swiper-slide {
    height: auto;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
    display: none;
}

@media only screen and (max-width: 767px) {
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination {
        display: block;
    }
}

.swiper-button-prev,
.swiper-button-next {
    top: 125px;
    width: 20px;
    height: 35px;
    margin-top: 0;
    background: url(../images/icon/arrow.svg) no-repeat center/contain;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev {
    left: 10%;
    transform: rotate(180deg);
}

.swiper-button-next {
    right: 10%;
}

.swiper-pagination {
    position: static;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    background-color: #abcdf8;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #0276cf;
}

.step {
    margin-top: 45px;
}

.step-item {
    display: flex;
    flex-direction: column;
    width: 210px;
}

.step-pic {
    width: 100%;
}

.step-title {
    margin-top: 30px;
    font-size: 22px;
    color: #0376cf;
}

.step-text {
    flex: 1 0 auto;
    margin-top: 10px;
    font-size: 18px;
}

.step-btn {
    margin-top: 40px;
}

.step-msg {
    padding: 8px 0;
    font-size: 16px;
    color: #fa6839;
}

[data-slider='step02'] .step-msg {
    font-size: 22px;
}

@media only screen and (max-width: 1023px) {
    .step {
        margin-top: 40px;
    }

    .step-item {
        width: 180px;
    }

    .step-title {
        margin-top: 20px;
        font-size: 18px;
    }

    .step-text {
        margin-top: 5px;
        font-size: 16px;
    }

    .step-btn {
        margin-top: 25px;
    }

    .step-msg {
        padding: 8px 0;
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .step {
        position: relative;
        margin-top: 25px;
    }

    .step-item {
        width: 100%;
        align-items: center;
    }

    .step-pic {
        width: 150px;
    }

    .step-title {
        margin-top: 15px;
        font-size: 17px;
    }

    .step-btn {
        margin-top: 20px;
    }

    .step-msg {
        padding: 6px 0;
        font-size: 16px;
    }
}

.tab {
    margin-top: 85px;
}

.tab-nav {
    display: flex;
    text-align: center;
    border-bottom: 3px solid #0276cf;
}

.tab-nav a {
    flex: 1;
    padding: 11px;
    padding-bottom: 8px;
    font-size: 24px;
    font-weight: 500;
    color: #0276cf;
    text-decoration: none;
    border-radius: 20px 20px 0 0;
}

.tab-nav a.-active {
    color: #fff;
    background-color: #0276cf;
}

.tab-content {
    height: 0;
    text-align: center;
    overflow: hidden;
    pointer-events: none;
}

.tab-content.-active {
    height: auto;
    margin-top: 45px;
    pointer-events: visible;
}

.tab-content .remind {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}

@media only screen and (min-width: 1181px) {
    .tab-nav a {
        transition: 0.3s;
    }

    .tab-nav a:not(.-active):hover {
        background-color: rgba(2, 118, 207, 0.2);
    }
}

@media only screen and (max-width: 1023px) {
    .tab {
        margin-top: 70px;
    }

    .tab-nav {
        border-width: 2px;
    }

    .tab-nav a {
        font-size: 20px;
        border-radius: 15px 15px 0 0;
    }

    .tab-content.-active {
        margin-top: 40px;
    }

    .tab-content .remind {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .tab {
        margin-top: 45px;
    }

    .tab-nav a {
        padding: 8px;
        padding-bottom: 6px;
        font-size: 16px;
        border-radius: 10px 10px 0 0;
    }

    .tab-content.-active {
        margin-top: 25px;
    }

    .tab-content .remind {
        font-size: 14px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: 1em;
}

p {
    margin: 0;
}

b {
    font-weight: 500;
}

.-roundText {
    font-family: var(--font-swei);
}

.-rdText {
    color: var(--primary-orange);
}

.-bold {
    font-weight: bold;
}

.-buText {
    color: var(--primary-blue);
}

@media only screen and (min-width: 1024px) {
    .-mbOnly {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .-pcOnly {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) {
    .-mbDownOnly {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .-padUpOnly {
        display: none;
    }
}

.-hidden {
    display: none;
}

.date {
    background-color: var(--light-blue);
}

.date .block {
    padding-bottom: 10px;
}

/* 日期標題樣式 */
.date-block-title {
    font-family: var(--font-swei);
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .date-block-title {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

/* Date Card List Component Styles */
.dateList {
    padding: 10px;
    border-radius: 20px;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0px 0px 50px 0px rgba(171, 188, 222, 0.6);
}

.date-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
}

.date-item {
    position: relative;
    border-radius: 20px;
    background: white;
    border: 2px solid #e0ebff;
    overflow: hidden;
    min-width: 0;
    max-width: none;
    transition: all 0.5s;
}
.date-item:hover {
    transform: scale(1.03);
}

.date-item.-gird-2 {
    flex: 2;
}

.date-item.-gird-1 {
    flex: 1;
}

.date-header {
    padding: 6px 0;
    background: white;
    border-radius: 20px 20px 0 0;
}

.date-content {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.date-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.date-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
    color: #0276cf;
    margin: 0;
}

.date-subtitle {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.date-divider {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    white-space: nowrap;
    flex-shrink: 0;
}

.underline {
    text-decoration: underline;
    text-underline-position: from-font;
}

.date-footer {
    background: #f3f7ff;
    padding: 6px 0;
    border-radius: 0 0 20px 20px;
    border-top: 2px solid #e0ebff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.date-prize {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
    color: #fa6839;
    text-align: center;
    white-space: nowrap;
}

/* 桌面版卡片樣式 */
.desktop-cards {
    display: block;
}

/* 手機版專用卡片樣式 */
.mobile-date-cards {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    background-color: #fff;
    margin: 10px 0;
    box-shadow: 0px 0px 50px 0px rgba(171, 188, 222, 0.6);
    border-radius: 20px;
}

.mobile-date-item {
    display: flex;
    align-items: stretch;
    background: white;
    border: 1px solid #e0ebff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    min-height: auto;
}

.mobile-date-content {
    flex: 1;
    padding: 6px 6px 6px 10px;
    background: white;
    display: flex;
    align-items: center;
}

.mobile-date-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mobile-date-title {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.6;
    color: #0276cf;
    margin: 0;
    white-space: nowrap;
}

.mobile-date-highlight {
    color: #333333;
    font-weight: bold;
}

.mobile-date-underline {
    color: #333333;
    font-weight: bold;
    text-decoration: underline;
    text-underline-position: from-font;
}

.mobile-date-normal {
    color: #333333;
    font-weight: normal;
}

.mobile-date-prize {
    background: #f3f7ff;
    padding: 6px;
    width: 80px;
    flex-shrink: 0;
    border-left: 1px solid #e0ebff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.mobile-date-prize p {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    color: #fa6839;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    /* 隱藏桌面版卡片 */
    .desktop-cards {
        display: none;
    }

    /* 顯示手機版卡片 */
    .mobile-date-cards {
        display: flex;
    }
}

/* ------------------------------- Discount ------------------------------- */
.discount {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding: 60px 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 50px 0px rgba(171, 188, 222, 0.6);
}

.discount.-new {
    margin-bottom: 40px;
}

.discount-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.discount-title {
    font-family: var(--font-swei);
    font-size: 42px;
    color: var(--primary-orange);
    line-height: 1.6;
}

.discount-subtitle {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.6;
}

.discount-subtitle p {
    margin: 0;
}

.discount-cards {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.discount-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 280px;
    padding: 30px 0;
    background-color: var(--light-blue);
    border-radius: 20px;
}

.discount-card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.discount-card-icon {
    width: 170px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discount-card-title {
    font-family: var(--font-swei);
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: center;
}

.discount-card-title p {
    margin: 0;
}

.discount-card-image {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discount-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 54px;
    padding: 16px 48px;
    background-color: #63a3f2;
    border-radius: 33px;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
    overflow: hidden;
}

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

.discount-card-btn span {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
}

.discount-main-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 48px;
    background-color: #ffffff;
    border-radius: 33px;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 6px 0 0 #63a3f2;
}

.discount-main-btn:hover {
    transform: translateY(-5px);
}
.discount-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #63a3f2;
    border-radius: 33px;
    box-shadow: 0px 6px 0px 0px #63a3f2;
    pointer-events: none;
}

.discount-main-btn span {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: bold;
    color: #63a3f2;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
}

/* Discount Cards Swiper 分頁指示器樣式 */
.discount-cards[data-swiper] .swiper-pagination {
    position: static;
    margin-top: 20px;
    line-height: 0;
    display: none;
}

.discount-cards[data-swiper] .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background-color: #abcdf8;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.discount-cards[data-swiper] .swiper-pagination-bullet-active {
    background-color: #63a3f2;
    transform: scale(1.2);
}

@media only screen and (max-width: 1023px) {
    .discount {
        gap: 20px;
        padding: 40px 15px;
        border-radius: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .discount-title {
        font-size: 36px;
    }

    .discount-subtitle {
        font-size: 20px;
    }

    .discount-card-icon {
        width: 150px;
        height: 60px;
    }

    .discount-card-title {
        font-size: 16px;
    }

    .discount-card-image {
        width: 140px;
        height: 140px;
    }

    .discount-card-btn {
        width: 180px;
        height: 50px;
        padding: 14px 40px;
        border-radius: 30px;
    }

    .discount-card-btn span {
        font-size: 16px;
    }

    .discount-main-btn {
        padding: 14px 40px;
        border-radius: 30px;
    }

    .discount-main-btn::before {
        border-radius: 30px;
        box-shadow: 0px 5px 0px 0px #63a3f2;
    }

    .discount-main-btn span {
        font-size: 20px;
    }

    /* 在平板以下啟用 Swiper 功能 */
    .discount-cards[data-swiper] .swiper-pagination {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .discount.-new {
        margin-bottom: 20px;
    }

    .discount-title {
        font-size: 28px;
    }

    .discount-subtitle {
        font-size: 16px;
    }

    .discount-cards {
        width: 90%;
        overflow: hidden;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .discount-card-icon {
        width: 130px;
        height: 50px;
    }

    .discount-card-title {
        font-size: 14px;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .discount-card-image {
        width: 120px;
        height: 120px;
    }

    .discount-card-btn {
        width: 180px;
        height: 45px;
        padding: 12px 35px;
        border-radius: 25px;
        box-sizing: border-box;
    }

    .discount-card-btn span {
        font-size: 18px;
    }

    .discount-main-btn {
        width: 180px;
        padding: 12px 35px;
        border-radius: 25px;
        box-sizing: border-box;
    }

    .discount-main-btn::before {
        border-radius: 25px;
        box-shadow: 0px 4px 0px 0px #63a3f2;
    }

    .discount-main-btn span {
        font-size: 18px;
    }
}

/* ------------------------------- Discount Cards Old Variant ------------------------------- */
.discount-cards.-old {
    justify-content: center;
}

.discount-cards.-old .discount-card {
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: 30px 60px 30px 30px;
    max-width: 600px;
    width: 100%;
}

.discount-cards.-old .discount-card-image {
    flex: 0 0 auto;
    width: 160px;
    height: 160px;
}

.discount-cards.-old .discount-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.discount-cards.-old .discount-card-icon {
    width: 270px;
    height: 68px;
}

@media only screen and (max-width: 1023px) {
    .discount-cards.-old .discount-card {
        gap: 20px;
        padding: 25px 40px 25px 20px;
        max-width: 500px;
    }

    .discount-cards.-old .discount-card-image {
        width: 140px;
        height: 140px;
    }

    .discount-cards.-old .discount-card-content {
        gap: 25px;
    }

    .discount-cards.-old .discount-card-icon {
        width: 200px;
        height: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .discount-cards.-old {
        width: 90%;
        overflow: hidden;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .discount-cards.-old .discount-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .discount-cards.-old .discount-card-image {
        width: 120px;
        height: 120px;
    }

    .discount-cards.-old .discount-card-content {
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .discount-cards.-old .discount-card-icon {
        width: 100%;
        max-width: 180px;
        height: 50px;
    }

    .discount-cards.-old .discount-card-title {
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
