/* scroll_down */
@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/* 跑馬燈 */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* -------- .slick-dots -------- */
.slick-dots li button {
    border-radius: 50%;
    
}

.slick-dots li button::before {
    font-size: 12px;
    position: absolute;
    top: 1px;
    left: 0px;
    border-radius: 50%;
    color: #999;
}

.slick-dots li.slick-active button::before {
    color: #285ee4;
    opacity: 1;
}

.slick-dots li button:hover {
    background: #9999994d;
}


.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    line-height: 1;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 0;
    opacity: .75;
    color: #285ee4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background: none;
    border: none;
    position: relative;
}

.slick-prev {
    left: -48px;
}

.slick-next {
    right: -48px;
}

.homepage .slick-dots li button {
    border-radius: 50%;
}
.homepage .slick-dots li button:before {
    font-size: 12px;
    position: absolute;
    top: 1px;
    left: 0px;
    border-radius: 50%;
    color: #999;
}
.homepage .slick-dots li.slick-active button:before {
    color: #285ee4;
    opacity: 1;
}
.homepage .slick-dots li button:hover {
    background: #9999994d;
}


/* ========== homepage header ========== */
.scroll_down {
    display: block;
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 66px;
    animation: bounce 2s infinite 2s;
    outline: none;
    cursor: auto;
}

.scroll_down>img {
    width: 100%;
}

.homepage_header {
    /* background-color: #fff; */
    background-color: rgb(255, 255, 255, .5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    position: relative;
    padding-top: 40px;
    padding-bottom: 140px;
    /* max-height: 100vh; */
    /* height: 100%; */
}


.homepage_header .action .btn {
    height: 48px;
    border-radius: 24px;
    font-size: 32px;
    line-height: 1;
    padding-left: 16px;
    padding-right: 16px;
}

.homepage_content {
    position: relative;
    /* border: 1px solid red; */
    margin-bottom: 40px;
}

.homepage_bg {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.homepage_title{
    text-align: center;
}

.homepage_title h1 {
    font-size: calc(2rem + 1.6vw);
    /* font-size: 4rem; */
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 32px;
}

.dataimport_content >.dataimport{
    text-align: center;
}

.dataimport_content >.dataimport img {
    width: 90%;
}

@media screen and (max-width:767px) {
    .homepage_header {
        padding-top: 24px;
    }

}


  /* ========== AI 智能驅動，讓記帳更簡單 ========== */
  .product_tab {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.product_tab .itemx {
    background: #fff;
    color: var(--main-primary-color);
    border: 1px solid var(--main-primary-color);
    box-shadow: var(--primary-box-shadow);
    border-radius: 24px;
    padding: 8px 24px;
    margin: 8px;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.product_tab .itemx:hover,
.product_tab .itemx.active {
    background: var(--main-primary-color);
    color: #fff;
}

.product_slider-thumb{
    visibility: hidden;
}

.product_content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid red; */
}

.description_text {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.description_text h4 {
    font-size: 2rem;
    color: var(--main-primary-color);
    font-weight: bold;
    margin-bottom: 32px;
}

.description_text p {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.33;
}

.product_content>img {
    flex: 1;
    flex-shrink: 1;
    height: auto;
    width: calc(100% - 312px);
    object-fit: contain;
    /* max-height: 660px; */
}

@media screen and (max-width:1024px) {
    .product_content {
        flex-direction: column;
    }

    .product_content>img {
        width: 100%;

    }
}

@media screen and (max-width:450px) {
    .product_tab .itemx {
        font-size: 24px;
        padding: 8px 16px;
        margin: 8px 4px;
    }
}


/* ========== 告別繁瑣Excel記帳 啟動系統化帳務管理 ========== */
.section_system .l_title h2 {
    line-height: 1.4;
}

.section_system .matl_statement_text {
    width: 100%;
    max-width: 496px;
    margin-bottom: 32px;
}

.section_system .matl_statements {
    width: 100%;
    max-width: 914px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


@media screen and (max-width:1024px) {
    .section_system_title {
        flex-direction: column;
        align-items: center;
    }
}


/* ========== section-populated ========== */
.section-populated {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-populated .group {
    text-align: center;
    margin-bottom: 32px;
}


.section-populated .group>img {
    width: 70px;
    height: 70px;
    margin-bottom: 44px;
}

.section-populated .group h3 {
    font-size: 4rem;
    /* font-size: calc(2.2rem + 1.5vw); */
    font-weight: bold;
    color: var(--main-primary-color);
    margin-bottom: 24px;
}

.section-populated .group h3::after {
    content: "%"
}

.section-populated .group span {
    font-size: 2.5rem;
}

.section-populated .group.dividing {
    position: relative;
    margin-left: 80px;
    margin-right: 80px;
}

.section-populated .group.dividing:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -12%;
    width: 2px;
    height: 80%;
    background: #ebebeb;
}

.section-populated .group.dividing:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -12%;
    width: 2px;
    height: 80%;
    background: #ebebeb;
}

@media screen and (max-width: 1279.98px) {
    .point-populated {
        flex-direction: column;
    }

    .section-populated .group.dividing {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }

    .section-populated .group.dividing:before {
        content: "";
        position: relative;
        left: 0;
        width: 343px;
        height: 2px;
        margin-bottom: 36px;
    }

    .section-populated .group.dividing:after {
        content: "";
        position: relative;
        right: 0;
        width: 343px;
        height: 2px;
        margin-top: 36px;
    }

    /* .section-populated .group h3 {
        font-size: 3rem;
    } */

    .section-populated .group span {
        font-size: 1.75rem;
    }

    .section-populated .group+.group {
        margin-top: 28px;
    }
}


/* ========== 財報雲問專家(20251210新增) ========== */
.expert-section {
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(220,240,255,0.4) 40%, rgba(255,245,220,0.3) 100%);
    overflow-x: clip;
}

.expert-title-group {
    text-align: center;
    margin-bottom: 48px;
}
.expert-title-group h2 {
    font-size: 56px; 
    font-weight: 700;
    color: var(--main-primary-color);
    margin-bottom: 16px;
}
.expert-title-group h3 {
    font-size: 40px;
    font-weight: 500;
    color: #333;
}

.expert-content {
    display: flex;
    justify-content: center;
    align-items: center; 
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.expert-card-wrapper {
    position: relative;
    max-width: 1000px;
    width: 100%;
    z-index: 2;
}

.expert-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    position: relative;
}

.expert-info-card h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #000;
}

.expert-features {
    list-style: none;
    margin-bottom: 0;
}

.expert-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 24px;
    color: #555;
    line-height: 1.5;
}

/* 針對 SVG 和 i 標籤的共用樣式 */
.expert-features li i,
.expert-features li svg {
    color: var(--main-primary-color);
    fill: var(--main-primary-color);
    margin-right: 12px;
    margin-top: 6px;
    font-size: 24px; 
    width: 24px; /* SVG 大小 */
    height: 24px; /* SVG 大小 */
    flex-shrink: 0;
}

/* 按鈕樣式 */
.expert-btn {
    display: inline-block;
    background-color: var(--main-primary-color);
    color: #fff;
    padding: 12px 60px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(40, 94, 228, 0.3);
    text-decoration: none;
    white-space: nowrap;
    
    position: absolute;
    top: 100%; 
    margin-top: 24px; 
    left: 50%;
    transform: translateX(-50%); 
    z-index: 10;
    width: 373px;
    min-width: 200px;
}

.expert-btn:hover {
    background-color: var(--secondary-dark-color);
    transform: translateX(-50%) translateY(-2px);
    color: #fff;
}

/* Right Visuals (Phone) */
.expert-visuals {
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -150px; 
    z-index: 5;
}

.phone-image-container {
    width: 230px;
    height: 466px;
    position: relative;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
}

.phone-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 40px;
}

.expert-qrcode-card {
    position: absolute;
    bottom: 0px;
    right: 180px;
    border-radius: 15px;
    z-index: 6; 
    width: 176px;
    height: 176px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform-origin: center center;
    transform: rotate(0deg); 
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    box-sizing: border-box;
}

.expert-qrcode-card.is-visible {
    transform: rotate(-10deg);
}

.expert-qrcode-card img {
    display: block;
    transform: none !important;
}
.expert-qrcode-card span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    color: #00b900;
    font-size: 14px;
}


/* RWD 響應式設定 */
@media screen and (max-width: 1200px) {
    .expert-visuals { margin-left: -100px; }
}

@media screen and (max-width: 1024px) {
    .expert-card-wrapper { max-width: 100%; margin-right: 0; }
    .expert-visuals { margin-left: -50px; }
    .expert-title-group h2 { font-size: 48px; }
    .expert-title-group h3 { font-size: 32px; }
}

@media screen and (max-width: 960px) {
    .expert-content {
        flex-direction: column; 
        gap: 0; /* 歸零 gap，改用 margin 控制間距 */
        padding-bottom: 0;
    }

    /* ★ 1. 隱藏手機圖片 ★ */
    .phone-image-container {
        display: none;
    }

    /* ★ 2. 調整 QR Code 容器位置 (排在最上面) ★ */
    .expert-visuals {
        margin-left: 0; 
        margin-top: 0; 
        order: 1; /* 順序 1：放在標題下方、卡片上方 */
        width: 100%; /* 寬度佔滿 */
        /* height: auto; */
        padding-top: 0;
        margin-bottom: 30px; /* 與下方卡片的間距 */
        display: flex;       /* 讓內部 QR Code 置中 */
        justify-content: center;
    }
    
    /* ★ 3. 卡片 (排在中間) ★ */
    .expert-card-wrapper {
        order: 2; /* 順序 2 */
        margin-bottom: 40px; /* 與下方按鈕的間距 */
        z-index: auto;
    }

    .expert-info-card {
        padding: 30px;
    }

    /* ★ 4. 按鈕 (排在最後) ★ */
    .expert-btn {
        position: static; 
        transform: none; 
        margin: 0 auto; /* 置中 */
        order: 3; /* 順序 3 */
        top: auto;
        
        font-size: 24px;
        padding: 10px 40px;
    }
    
    /* 5. QR Code 卡片本身樣式重置 (置中、取消絕對定位) */
    .expert-qrcode-card { 
        position: relative; /* 改為相對定位 */
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 0 auto;
        margin-bottom:24px;
        
        /* 維持尺寸 */
        width: 240px; 
        height: 240x;
        padding: 10px;
        /* 確保手機版初始狀態無旋轉 */
        transform: none; 
    }

    /* 強制覆蓋動畫狀態，讓手機版不旋轉 */
    .expert-qrcode-card.is-visible {
        transform: none;
    }
    
    .expert-qrcode-card img { width: 240px; }
    .expert-title-group h2 { font-size: 48px; }
    .expert-title-group h3 { font-size: 32px; }
    .expert-info-card h4 { font-size: 24px; }
    .expert-features li { font-size: 20px; }
}

@media screen and (max-width: 450px) {
    .expert-section { padding: 40px 0; }
}


/* ========== 用戶信任的財務夥伴 ========== */
.partner_content {
    position: relative;
}

.partner_content .action {
    margin-top: 80px;
    text-align: center;
}

.partner_content .btn {
    width: 100%;
    max-width: 343px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
}

.partner_content .title {
    margin-bottom: 96px;
}

.partner_content .custom-slider {
    visibility: hidden;
}

.partner_info .slick-prev:before {
    content: url(/static/v2/images/components/btn_type/slider-prev_b_23.svg);
}

.partner_info .slick-next:before {
    content: url(/static/v2/images/components/btn_type/slider-next_b_23.svg);
}


.partner_info .partner_content .custom-box {
    width: 394px;
    height: 222px;
    margin: 0 8px;
    padding: 24px 16px;
    text-align: center;
    background-color: rgb(255, 255, 255, .5);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.partner_info .partner_content .custom-box>a {
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

.partner_info .partner_content .custom-box .item {
    width: 224px;
    height: 128px;
    margin-bottom: 24px;
    border-radius: 16px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.partner_info .partner_content .custom-box .item>img {
    width: 100%;
}

@media screen and (max-width: 500px) {
    .partner_info .slick-dots {
        position: relative;
        bottom: -32px
    }
}



/* card_slider */
.info_content {
    width: 100%;
    max-width: 1279.98px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* border: 1px solid red; */
    margin-bottom: 80px;
}

.card_slider_ul {
    visibility: hidden;
}

.card_slider_ul {
    width: 100%;
    height: 100%;
    position: relative;
}

.card_slider_ul .slick-prev,
.card_slider_ul .slick-next {
    width: 98px;
    height: 98px;
}

.card_slider_ul .slick-prev {
    top: auto;
    bottom: -48px;
    left: auto;
    right: 152px;
}

.card_slider_ul .slick-next {
    top: auto;
    bottom: -48px;
    left: auto;
    right: 40px;
}

.card_slider_ul .slick-prev:before {
    content: url(/static/v2/images/components/btn_type/slider-prev_b_98.svg);
}

.card_slider_ul .slick-next:before {
    content: url(/static/v2/images/components/btn_type/slider-next_b_98.svg);
}



.card_slider {
    position: relative;
    margin-left: 8px;
    margin-right: 8px;
}

.card_slider_bg {
    width: 100%;
    height: 99%;
    max-width: 1148px;
    /* min-height: 436px; */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-48%);
    background: rgb(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 16px;
    z-index: -1;
}

.card_slider .card_slider_img {
    width: 100%;
    height: 100%;
    max-width: 604px;
    margin-left: -1%;
}

.card_slider .card_body_intro {
    position: relative;
    max-width: 604px;
    min-width: 288px;
    width: 100%;
    color: #000;
    margin-left: -2%;
    padding-top: 36px;
    padding-bottom: 36px;
}

/* ========== 用戶好評 comment_info ========== */
.comment_info .comment_slider a {
    display: flex;
    padding: 24px 8px;
}

.comment_info .comment_slider .intro_text_frame {
    position: relative;
}

.comment_info .comment_slider .intro_text_frame::before {
    content: url("/static/v2/front/pages/official/images/quotes.png");

}

.comment_info .comment_slider .intro_text_frame::after {
    content: url("/static/v2/front/pages/official/images/quotes.png");
    transform: scaleY(-1);
    display: block;
    text-align: right;
}

.comment_info .comment_slider .intro_text {
    padding: 16px;
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 1.2;
    box-sizing: border-box;
}

.comment_info .comment_slider .intro_author {
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
}

.comment_info .comment_slider .intro_author .author {
    font-size: 1.75rem;
    font-weight: 500;
    margin-right: 40px;
}

.comment_info .comment_slider .intro_author .publish {
    font-size: 1.5rem;
    font-weight: 400;
}

/* ========== 媒體報導 news_info ========== */
.news_info>.action {
    text-align: center;
}

.news_info>.action .btn {
    width: 100%;
    max-width: 343px;
    height: 48px;
    font-size: 32px;
    line-height: 1;
}

.news_info .news_slider>.group {
    display: flex;
    padding: 24px 8px;
}

.news_info .news_slider .intro_text {
    /* padding: 24px 16px 16px 24px; */
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
}

.news_info .news_slider .intro_title {
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
}

.news_info .news_slider .card_body_intro>.action {
    width: 100%;
    text-align: end;
    margin-top: 16px;
}


.news_info .news_slider .card_body_intro>.action .btn>span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_info .news_slider .card_body_intro>.action .btn>span:after {
    content: url(/static/v2/images/components/btn_type/arrow-right_w_20.svg);
    width: 20px;
    height: 20px;
    margin-left: 8px;
}


@media screen and (max-width: 1279.98px) {
    .card_slider_bg {
        transform: translateX(-50%);
    }

    .card_slider .card_body_intro {
        padding-top: 0px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .comment_info .comment_slider .intro_text,
    .news_info .news_slider .card_body_intro .intro_text {
        font-size: 1.5rem;
    }

    .comment_info .comment_slider a {
        flex-direction: column;
        align-items: center;
    }

    .comment_info .comment_slider .intro_author {
        flex-wrap: wrap;
    }

    .comment_info .comment_slider .intro_author .author {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .comment_info .comment_slider .intro_author .publish {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .news_info .news_slider>.group {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== 財報雲陪您踏出第一步 ========== */
.point-free_trial {
    position: relative;
}

/* 跑馬燈 */
.marquee {
    /* position: relative; */
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: -1;
}

/* 遮罩效果 */
.marquee {
    mask-image: linear-gradient(to right, transparent, black 20%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 90%, transparent);
}

.track {
    /* position: absolute; */
    white-space: nowrap;
    will-change: transform;
    animation: marquee 30s linear infinite;
    display: inline-block;
}

.track_content {
    display: inline-block;
    font-size: 9rem;
    font-weight: 300;
    /* background: linear-gradient(to right, #8dbeff, #78C8FF, #64D2FF, #8dbeff, #50DCFF); */
    background-color: #0D76FF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-right: 50px;
    margin-right: 48px;
}

.free_trial_info {
    width: 100%;
    height: 100%;
    max-width: 980px;
    min-height: 408px;
    background-color: rgb(255, 255, 255, .5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    margin-left: auto;
    margin-right: auto;
    padding: 64px 24px 42px;
    text-align: center;
    border-radius: 16px;
    position: relative;
    top: 50%;
}

.free_trial_info .title h2 {
    font-size: 3.5rem;
    color: #000;
    padding-bottom: 24px;
    border-bottom: 1px solid #707070;
    margin-bottom: 24px;
    margin-left: 66px;
    margin-right: 66px;

}

.free_trial_info .title h3 {
    font-size: 1.5rem;
    padding-left: 66px;
    padding-right: 66px;
    line-height: 1.25;
}

.free_trial_info>.action {
    margin-bottom: 16px;
}

.free_trial_info>.action .btn {
    max-width: 373px;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
}

.free_trial_info>a {
    text-decoration: underline;
    font-size: 24px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.9);
}

.free_trial_info>a:hover {
    color: var(--main-primary-color);
}

@media screen and (max-width:767px) {

    .free_trial_info .title h2 {
        margin-left: 0;
        margin-right: 0;
    }

    .free_trial_info .title h3 {
        padding-left: 0;
        padding-right: 0;
    }

    .free_trial_info {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media screen and (min-width:1920px) {
    .homepage_bg h1 {
        font-size: 64px;
    }
}


/* swiper */

/* 各行各業帳務解決方法 */
.wrapper .section_industry>.container {
    max-width: 100%;
    margin-left: 15%;
}

.industry_info {
    margin-top: 4rem;
}

.pg_industry_swiper_slider {
    display: flex;
}

.swiper_text_container {
    margin-right: 24px;
}

.swiper_text_content {
    width: 384px;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pg_industry_swiper_sliderImage {
    margin-bottom: 16px;
}

.pg_industry_swiper_sliderHeading {
    --color-blue: #285ee4;
    color: var(--color-blue);
    font-weight: 700;
    font-size: 2rem;
}

.pg_industry_swiper_sliderDesc {
    margin-top: 1.6rem;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
    min-height: 144px;
}

.pg_industry_swiper_sliderCtrArr {
    display: flex;
    margin-top: 36px;
}

.pg_industry_swiper_sliderCtrArr button {
    width: 48px;
    height: 48px;
    background-color: white;
    opacity: .8;
    border: none;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.pg_industry_swiper_sliderCtrArr button+button {
    margin-left: 40px;
}

.pg_industry_swiper_sliderCtrArr button:hover {
    opacity: 1;
}


.swiper-pagination {
    position: relative;
    text-align: left;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -16px;
}

.pg_industry_swiper_sliderBody {
    padding: 16px 8px 62px;
    min-height: 480px;
}



@media screen and (max-width:930px) {
    .pg_industry_swiper_sliderBody {
        position: relative;
        left: 0;
    }
}

.swiper-slide {
    width: 100%;
    border-radius: 20px;
    max-width: 264px;
    min-width: 264px;
    max-height: 386px;
    /* box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); */
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    object-fit: contain;
}

.slide-image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
     border-radius: 20px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
position: relative;
}

.swiper-text {
    display: none;
}

.pg_industry_swiper_sliderCtrArr.mobile-nav {
    display: none;
}

.swiper-pagination-bullet {
    background: #fff;
    width: calc(95% / 6);
    height: 8px;
    border-radius: 0;
    opacity: .8;
}

.swiper-pagination-bullet:first-child {
    border-radius: 2px 0 0 2px;
}

.swiper-pagination-bullet:last-child {
    border-radius: 0 2px 2px 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #285ee4;
    border-radius: 3px;
}

.swiper-pagination-bullet.swiper-pagination-bullet.swiper-pagination-bullet {
    margin: 0;
}

@media (max-width: 1279.98px) {
    .wrapper .section_industry>.container {
        margin-left: auto;
    }
}

@media screen and (max-width:1024px) {
    .pg_industry_swiper_slider {
        flex-direction: column-reverse;
    }

    .pg_industry_swiper_sliderBody {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }


    .swiper_text_content {
        display: none;
    }

    .pg_industry_swiper_sliderCtrArr.mobile-nav {
        display: block;
        text-align: center;
        margin-top: 48px;
    }

    .swiper-slide {
        position: relative;
        z-index: 0;
    }

    .slide-image{
        opacity: .5;
    }

    .swiper-text {
        max-width: 264px;
        height: 386px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 5;
        line-height: 1.3;

    }
}

@media (max-width: 500px) {
    .swiper-slide.swiper-slide-active {
        transform: scale(1);
        margin-left: 0px;
    }
    
    .swiper-pagination-bullet{
        width: calc(100% / 6);
    }

    .swiper-slide{
        max-width: 100%;
        object-fit: contain;
        text-align: center;
    }

    .slide-image{
        max-width: 264px;
        object-fit: contain;
    }

    .swiper-text {
        position: relative;
        top: 0;
        left: 50%;
        transform: translate(-50%, -100%);
        opacity: 5;
    }
}



/* .manager_modal 彈跳視窗modal */
.manager_modal.modal {
    max-width: 311px;
}

.manager_modal.modal .message p {
    text-align: left;
    position: relative;
    margin-left: 36px;
}

.manager_modal.modal .message p::before {
    content: url("/static/v2/images/components/info/info_check1_y.svg");
    position: absolute;
    top: 4px;
    left: -30px;
    width: 24px;
    height: 24px;
}

.manager_modal.modal .action .btn {
    width: 240px;
    border-radius: 8px;
    background: #e4b849;
    border: 2px solid #e4b849;
}

.manager_modal.modal .action .btn:hover {
    background: #D29701;
    border: 2px solid #D29701;
}

.manager_modal .btn span {
    position: relative;
    font-size: 18px;
}

.manager_modal .btn span::after {
    content: url("/static/v2/images/components/btn_type/btn-arrow_w_24.svg");
    margin-left: 8px;
    position: absolute;
    top: 1px;
}



