@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline
}

:root {
    --header-nav-h: 80px;
    /* 針對 header */
    --footer-max-width: 1440px;
    --header-nav-side: 5%;
    --footer-padding-side: min(calc(var(--header-nav-side)), 60px);
    --main-width: 100%;
    --main-max-width: 1400px;
    --main-side: 5%;
    --main-left: max(calc(var(--main-side)), calc((100vw - var(--main-max-width))/2 + var(--main-side)));
    --main-right: max(calc(var(--main-side)), calc((100vw - var(--main-max-width))/2 + var(--main-side)));
    /* 針對 1440 */
    --main-padding-side: min(calc(var(--main-side)), 150px);
    /* 針對 1280 */
    --main-inner-max-width: 1400px;
    /* 4.7 * 2 */
    --main-inner-side: 9.4%;
    --main-inner-padding-side: min(calc(var(--main-inner-side)), 120px);
    /* --main-inner-side-s: 5%;
    --main-inner-padding-side-s: min(calc(var(--main-inner2-side-s)), 60px); */
    /* 針對1280在往內縮 */
    /* 針對小卡牌，先拉掉 */
    /* --main-inner-inner-side: 6%;
    --main-inner-inner-padding-side: min(calc(var(--main-inner-inner-side)), 100px); */



    --color-bg-beige: #FFFAF0;
    --color-bg-white: #FFF;
    --color-bg-white2: #FDFDFD;
    /* header 用 */
    --color-gray-light: #FBFBFB;
    --color-yellow: #FFD100;
    --color-yellow-light: #FFE593;
    /* 區塊顏色區分 */
    --color-blue: #3DA2BD;
    --color-blue-dark: #1A3142;
    --color-blue-light: rgba(26, 49, 66, 0.5);
    /* 暫時對應 字 */
    --color-orange: #FF9D00;
    --color-gray: #747474;
    /* seminar */
    --color-orange2: #FF7C48;
    --btn-border-radius: 40px;
    --panel-border-radius-s: 15px;
    --panel-border-radius: 20px;
    --panel-border-radius-l: 25px;
    /* --btn-hover-bg-color: #3DA2BD; */
    --btn-hover-bg-color: #1c384df0;
    --btn-hover-font-color: #fff;
    --box-shadows: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
    --circle-box-shadows: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
    --down-shadows: 0px 0px 5px -2px rgba(0,0,0,0.45);
    --nav-sub-shadows: 0px 2px 3px 0px rgba(0,0,0,0.15);
    /* --list-point-w: 13px; */
    --list-point-w: 14px;
    --list-point-space-w: 6px;
    --font-rate: 1;
    --nav-transition-ease: cubic-bezier(0, 0.2, 0.8, 1);
}
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* -----測試用之後要刪掉----- */
.jack-demo__con {
    position: fixed;
    width: 100%;
    /* max-width: var(--main-max-width); */
    height: 15px;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--header-nav-side);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10000000;
    background-color: rgba(61, 162, 189, 0.8);
}

    .jack-demo__con > a {
        color: #ffffff;
        font-size: 12px;
        font-weight: 400;
    }

    .jack-demo__con > span {
        color: #ffffff;
        font-size: 12px;
        font-weight: 400;
    }
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
body, html {
    position: absolute;
    width: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    line-height: 1;
    background-color: var(--color-bg-white);
}

a {
    text-decoration: none;
    color: #000000;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

canvas {
    width: 100%;
    height: 100%;
}

input[type='checkbox'],
input[type='radio'] {
    display: none;
}

/* button {
    --font-size: 20px;
    --padding-top-bottom: 13px;
    --padding-side: 65px;
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    pointer-events: auto;
    outline: none;
    border: none;

    border-radius: 10px;
    padding: var(--padding-top-bottom) var(--padding-side);
    background-color: #EA6363;
    color: #fff;
    font-size: var(--font-size);
    font-weight: 500;
    letter-spacing: 0.05rem;
} */

iframe {
    position: relative;
    width: 100%;
    height: 100%;
}

.detail__status {
    position: relative;
    display: flex;
}

    .detail__status > p.status__text {
        position: relative;
        padding: 8px 12px;
        font-size: 14px;
        color: #fff;
        font-weight: 500;
        background-color: var(--color-orange);
        border-radius: 5px;
    }

a.btn__style2 {
    --font-size: 16px;
    --padding-top-bottom: 10px;
    cursor: pointer;
    pointer-events: auto;
    outline: none;
    border: 1px solid #000;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    width: 40%;
    min-width: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: var(--btn-border-radius);
    padding: var(--padding-top-bottom) 0;
    color: #000;
    font-size: var(--font-size);
    font-weight: 500;
    line-height: calc(var(--font-size) + 6px);
    -webkit-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    padding-right: 0px;
}

a.btn__style {
    --font-size: 18px;
    --padding-top-bottom: 12px;
    cursor: pointer;
    pointer-events: auto;
    outline: none;
    /* border: 1px solid var(--color-blue-light); */
    /* box-sizing: border-box; */

    text-align: center;
    position: relative;
    width: 250px;
    min-width: initial;
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: var(--btn-border-radius);
    padding: var(--padding-top-bottom) 0;
    background-color: var(--color-blue-dark);
    color: #fff;
    font-size: var(--font-size);
    font-weight: 500;
    line-height: calc(var(--font-size) + 6px);
    -webkit-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    padding-right: 0px;
    border: 1px solid rgba(255, 255, 255, 0);
    box-sizing: border-box;
}

    a.btn__style:hover {
        background-color: var(--btn-hover-bg-color);
        color: var(--btn-hover-font-color);
        border: 1px solid rgba(255, 255, 255, 0.5);
        ;
    }

a.btn__style2:hover {
    background-color: #E9E9E9;
    border: 1px solid transparent;
}

.bg-color-white {
    background-color: var(--color-bg-white);
}

.bg-color-beige {
    background-color: var(--color-bg-beige);
}

.bg-color-yellow {
    background-color: var(--color-yellow);
}

.box-shadows {
    box-shadow: var(--box-shadows);
}

section {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    -webkit-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
}

    section .box__container {
        position: relative;
        width: var(--main-width);
        max-width: var(--main-max-width);
        padding: 0 var(--main-padding-side);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

        section .box__container .box__body {
            position: relative;
            width: 100%;
            /* margin: 0 auto; */
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
        }
/* ----------------------------------------------------------------- */
.visibility-hidden {
    visibility: hidden;
}

.aspect-ratio {
    --min-width: initial;
    --pic-wh-rate: calc(350/430);
    --pic-w: 100%;
    position: relative;
    width: var(--pic-w);
    padding-top: calc(var(--pic-wh-rate) * var(--pic-w));
    overflow: initial;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

    .aspect-ratio > div {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        min-width: var(--min-width);
        min-height: calc(var(--pic-wh-rate) * var(--min-width));
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: initial;
    }

        .aspect-ratio > div > img {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
/* ----------------------------------------------------------------- */
.splide__pagination > li .splide__pagination__page {
    background-color: #E8E8E8;
    transform: scale(0.7);
}

    .splide__pagination > li .splide__pagination__page.is-active {
        background-color: #000;
        transform: scale(1);
    }

/* ----------------------------------------------------------------- */
/* 共用 effect-bg */
.box__more__solution > div.effect-bg-plus.is-effect-pc,
.box__more__service > div.effect-bg-plus.is-effect-pc {
    pointer-events: none;
    --circle-w: 1058px;
    position: absolute;
    width: 100%;
    bottom: 100px;
    overflow: hidden;
}


    .box__more__solution > div.effect-bg-plus.is-effect-pc > img,
    .box__more__service > div.effect-bg-plus.is-effect-pc > img {
        position: relative;
        width: var(--circle-w);
        height: var(--circle-w);
        left: calc((100% - var(--circle-w))/2 - 770px);
    }

.box__more__solution > div.effect-bg-minus.is-effect-pc,
.box__more__service > div.effect-bg-minus.is-effect-pc {
    padding: 20px;
    pointer-events: none;
    --circle-w: 500px;
    position: absolute;
    width: 100%;
    bottom: -120px;
    overflow: hidden;
}

    .box__more__solution > div.effect-bg-minus.is-effect-pc > img,
    .box__more__service > div.effect-bg-minus.is-effect-pc > img {
        position: relative;
        width: var(--circle-w);
        height: var(--circle-w);
        left: calc((100% - var(--circle-w))/2 + 550px);
        animation: rotate-animation 100s infinite linear;
    }

/* box__ytvideo box__problem 相關 effect  */
.box__problem > div.effect-bg-plus.is-effect-pc,
.box__ytvideo > div.effect-bg-plus.is-effect-pc {
    padding: 20px;
    pointer-events: none;
    --circle-w: 700px;
    position: absolute;
    width: 100%;
    top: -80px;
    overflow: hidden;
}

    .box__problem > div.effect-bg-plus.is-effect-pc > img,
    .box__ytvideo > div.effect-bg-plus.is-effect-pc > img {
        position: relative;
        width: var(--circle-w);
        height: var(--circle-w);
        left: calc((100% - var(--circle-w))/2 - 600px);
        animation: rotate-animation 100s infinite linear;
    }

.box__problem > div.effect-bg-plus.is-effect-pc {
    top: -280px;
}

    .box__problem > div.effect-bg-plus.is-effect-pc > img {
        left: calc((100% - var(--circle-w))/2 - 550px);
    }

/* box__func__detail 相關 effect*/
.box__func__detail2 > div.effect-bg-minus.is-effect-pc,
.box__func__detail > div.effect-bg-minus.is-effect-pc {
    padding: 20px;
    pointer-events: none;
    --circle-w: 1000px;
    position: absolute;
    width: 100%;
    top: -200px;
    overflow: hidden;
}

    .box__func__detail2 > div.effect-bg-minus.is-effect-pc > img,
    .box__func__detail > div.effect-bg-minus.is-effect-pc > img {
        position: relative;
        width: var(--circle-w);
        height: var(--circle-w);
        left: calc((100% - var(--circle-w))/2 + 600px);
        animation: rotate-reverse-animation 100s infinite linear;
    }

.box__func__detail2 > div.effect-bg-plus.is-effect-pc,
.box__func__detail > div.effect-bg-plus.is-effect-pc {
    padding: 20px;
    pointer-events: none;
    --circle-w: 400px;
    position: absolute;
    width: 100%;
    bottom: -280px;
    overflow: hidden;
}

.box__func__detail2 > div.effect-bg-plus.is-effect-pc {
    bottom: 460px;
}

    .box__func__detail2 > div.effect-bg-plus.is-effect-pc > img,
    .box__func__detail > div.effect-bg-plus.is-effect-pc > img {
        position: relative;
        width: var(--circle-w);
        height: var(--circle-w);
        left: calc((100% - var(--circle-w))/2 - 620px);
        animation: rotate-animation 100s infinite linear;
    }

/* ----------------------------------------------------------------- */
.box__banner .splide__arrows {
    --side-value: calc(50% - 23%);
    --top-value: 35%;
}

.box__banner .splide__arrow--next svg,
.box__banner .splide__arrow--prev svg {
    fill: #fff;
}

.box__banner .splide__arrow--next {
    right: var(--side-value);
    top: var(--top-value);
}

.box__banner .splide__arrow--prev {
    left: var(--side-value);
    top: var(--top-value);
}

.box__banner {
    /* 區塊方式：內容與外在分開 所以 mask 縮放時，不影響內容 */
    --banner-rate: calc(825/2940);
    --banner-w: 2940px;
    --banner-h: calc(var(--banner-w) * var(--banner-rate));
    width: 100%;
    overflow: hidden;
}

    .box__banner .box__container {
        width: var(--banner-w);
        height: var(--banner-h);
        max-width: initial;
        padding: 0 0;
        left: calc((100% - var(--banner-w))/2);
        -webkit-transition: all .2s ease-in-out 0s;
        -o-transition: all .2s ease-in-out 0s;
        -moz-transition: all .2s ease-in-out 0s;
        transition: all .2s ease-in-out 0s;
    }

        .box__banner .box__container .splide {
            clip-path: polygon( 99.943% 0%,75.985% 85.375%,75.985% 85.375%,74.892% 88.879%,73.714% 91.916%,72.463% 94.477%,71.151% 96.55%,69.789% 98.123%,68.389% 99.187%,66.962% 99.73%,65.52% 99.741%,64.074% 99.209%,62.635% 98.123%,62.635% 98.123%,24.34% 61.556%,24.34% 61.556%,22.942% 59.933%,21.615% 57.817%,20.367% 55.238%,19.208% 52.225%,18.144% 48.809%,17.186% 45.019%,16.34% 40.886%,15.616% 36.44%,15.022% 31.711%,14.567% 26.728%,14.567% 26.728%,12.557% 0%,99.943% 0% );
            /* filter: url('#round'); */
        }

            .box__banner .box__container .splide .splide__slide {
                position: relative;
                width: 100%;
                display: flex;
            }

                .box__banner .box__container .splide .splide__slide .slide__body img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .box__banner .box__container .splide .splide__slide .splide__con {
                    --banner-side: 0%;
                    /* --banner-space: 6%;
    --banner-pic-w: 38%; */
                    --banner-space: 5%;
                    --banner-pic-w: 35%;
                    --banner-detail-w: calc(100% - var(--banner-pic-w) - var(--banner-space));
                    position: absolute;
                    width: 100vw;
                    max-width: var(--main-max-width);
                    padding: 0 var(--banner-side);
                    height: calc(var(--banner-h) * 0.75);
                    top: calc(var(--banner-h) * 0.25 * 0.4);
                    left: 50%;
                    transform: translate(-50%, 0%);
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: stretch;
                    z-index: 1;
                }

                    .box__banner .box__container .splide .splide__slide .splide__con > ul {
                        position: relative;
                        flex: 0 0 auto;
                    }

                        .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail {
                            --title-fsize: min(max(3vw, 45px), 68px);
                            --text-fsize: 20px;
                            width: calc(var(--banner-detail-w) - 20%);
                            display: flex;
                            flex-direction: column;
                            color: #fff;
                            margin-right: var(--banner-space);
                            padding-top: 8%;
                        }

                            .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail .detail__subtitle {
                                color: #000;
                                margin-bottom: 5px;
                            }

                            .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail .detail__title {
                                font-size: var(--title-fsize);
                                font-weight: 500;
                                line-height: calc(var(--title-fsize) + 6px);
                                margin-bottom: 3%;
                            }

                            .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail .detail__text {
                                font-size: var(--text-fsize);
                                font-weight: 500;
                                line-height: calc(var(--text-fsize) + 6px);
                            }


                            .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail .detail__btn {
                                margin-top: 5%;
                            }

                        .box__banner .box__container .splide .splide__slide .splide__con > ul.con__pic {
                            width: var(--banner-pic-w);
                            max-width: 500px;
                        }
/* ------------------------------------------------------------------ */
/* box__imgcon__align */
.box__imgcon__align {
    --space-w: 5%;
    --img-w: 34%;
    --con-w: calc(100% - var(--img-w) - var(--space-w));
    z-index: 10;
}

    .box__imgcon__align .box__container {
        max-width: var(--main-inner-max-width);
        padding: 0 var(--main-inner-padding-side);
    }

        .box__imgcon__align .box__container .box__body {
            padding: 0 var(--main-inner2-padding-side);
            display: flex;
            flex-direction: column;
        }

            .box__imgcon__align .box__container .box__body .body__item.img-to-con {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .box__imgcon__align .box__container .box__body .body__item.con-to-img {
                display: flex;
                flex-direction: row-reverse;
                justify-content: space-between;
                align-items: center;
            }

            .box__imgcon__align .box__container .box__body .body__item:not(:first-child) {
                margin-top: 8%;
            }

            .box__imgcon__align .box__container .box__body .body__item > li {
                position: relative;
                flex: 0 0 auto;
            }

            .box__imgcon__align .box__container .box__body .body__item .item__img {
                width: var(--img-w);
            }

            .box__imgcon__align .box__container .box__body .body__item .item__con {
                width: var(--con-w);
            }

                .box__imgcon__align .box__container .box__body .body__item .item__con .con__text.text-text-normal,
                .box__imgcon__align .box__container .box__body .body__item .item__con .con__subtitle.text-title-s,
                .box__imgcon__align .box__container .box__body .body__item .item__con .con__title.text-title-m {
                    text-align: left;
                }

                .box__imgcon__align .box__container .box__body .body__item .item__con .con__title {
                    margin-bottom: 1.5%;
                }

                .box__imgcon__align .box__container .box__body .body__item .item__con .con__subtitle {
                    margin-bottom: 2%;
                }

                .box__imgcon__align .box__container .box__body .body__item .item__con .con__btn {
                    margin-top: 4%;
                }

/* box__brands */
.box__brands .box__container {
    max-width: var(--main-inner-max-width);
    padding: 0 0 0px 0;
}

.box__brands .splide .splide__slide .slide__body {
    padding: 20px 10px;
}

    .box__brands .splide .splide__slide .slide__body > img {
        border-radius: 50%;
        box-shadow: var(--circle-box-shadows);
        overflow: hidden;
    }

/* .box__talks */
.box__talks .box__container {
    max-width: var(--main-inner-max-width);
    padding: 0% var(--main-inner-padding-side);
}

    .box__talks .box__container .splide .slide__body.aspect-ratio {
        border-radius: var(--panel-border-radius);
        box-shadow: var(--box-shadows);
        background: #fff;
        --min-width: initial;
        --pic-wh-rate: calc(420/626);
        /* 避開陰影 */
        margin: 15px 0;
    }

        .box__talks .box__container .splide .slide__body.aspect-ratio > div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
        }

            .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info {
                --space-w: 5%;
                --icon-w: 25%;
                --detail-w: calc(100% - var(--icon-w) - var(--space-w));
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                margin-bottom: 4%;
            }

                .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info > div {
                    flex: 0 0 auto;
                    position: relative;
                }

                .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__icon {
                    width: var(--icon-w);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__icon > img {
                        border-radius: 50%;
                        overflow: hidden;
                        border: 1px solid rgba(0,0,0,0.1);
                        box-sizing: border-box;
                    }

                .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__detail {
                    width: var(--detail-w);
                    margin-left: var(--space-w);
                }

                    .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__detail .detail__title {
                        font-size: 26px;
                        font-weight: 500;
                    }

                    .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__detail .detail__name {
                        margin-top: 5px;
                        font-size: 18px;
                        font-weight: 500;
                    }

            .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__text.text-text-normal {
                text-align: justify;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 5;
                overflow: hidden;
            }

/* box__more__service */
.box__more__solution .splide__pagination,
.box__more__service .splide__pagination {
    bottom: -2.5em;
}

.box__more__solution,
.box__more__service {
    padding: 20px 0 100px 0px;
}

    .box__more__solution .box__container,
    .box__more__service .box__container {
        max-width: var(--main-inner-max-width);
        padding: 0 var(--main-inner-padding-side);
    }

        .box__more__solution .box__container .splide .splide__slide,
        .box__more__service .box__container .splide .splide__slide {
            padding: 15px 0;
        }

            .box__more__solution .box__container .splide .splide__slide .slide__body.aspect-ratio,
            .box__more__service .box__container .splide .splide__slide .slide__body.aspect-ratio {
                --pic-wh-rate: calc(260/214);
                --pic-w: 100%;
                left: initial;
                transform: initial;
                -webkit-transform: initial;
                -moz-transform: initial;
                -ms-transform: initial;
                -o-transform: initial;
                background: #fff url(../images/common/more-service-bg.svg);
                background-repeat: no-repeat;
                background-position: top center;
                background-size: 105%;
                border-radius: var(--panel-border-radius-l);
                box-shadow: var(--box-shadows);
                overflow: hidden;
            }

                .box__more__solution .box__container .splide .splide__slide .slide__body.aspect-ratio > div,
                .box__more__service .box__container .splide .splide__slide .slide__body.aspect-ratio > div {
                    display: flex;
                    flex-direction: column;
                }

                    .box__more__solution .box__container .splide .splide__slide .slide__body.aspect-ratio > div .body__icon,
                    .box__more__service .box__container .splide .splide__slide .slide__body.aspect-ratio > div .body__icon {
                        display: flex;
                        justify-content: center;
                    }

                        .box__more__solution .box__container .splide .splide__slide .slide__body.aspect-ratio > div .body__icon > img,
                        .box__more__service .box__container .splide .splide__slide .slide__body.aspect-ratio > div .body__icon > img {
                            width: 70%;
                        }

                    .box__more__solution .box__container .splide .splide__slide .slide__body.aspect-ratio > div .body__detail,
                    .box__more__service .box__container .splide .splide__slide .slide__body.aspect-ratio > div .body__detail {
                        margin-top: 20%;
                        --fsize2: calc(var(--fsize) - 1px);
                        font-size: var(--fsize2);
                        font-weight: 500;
                        line-height: calc(var(--fsize2) + 8px);
                    }

/* ----------------------------------------------------------------- */
/* 280 x 214 */
section.for__problem {
    z-index: 25;
}

    section.for__problem .box__container .box__body > h1::before {
        --rate: 0.7;
        content: "";
        position: absolute;
        width: calc(280px * var(--rate));
        height: calc(214px * var(--rate));
        top: 50px;
        left: calc(50% - 260px);
        background: url(../images/common/problem-title-icon.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        transform: translate( -50%, -100%);
        -webkit-transform: translate( -50%, -100%);
        -moz-transform: translate( -50%, -100%);
        -ms-transform: translate( -50%, -100%);
        -o-transform: translate( -50%, -100%);
    }

.box__problem,
.box__solution,
.box__func {
    padding: 15px 0;
    z-index: 15;
}

    .box__problem .box__container,
    .box__solution .box__container,
    .box__func .box__container {
        max-width: var(--main-inner-max-width);
        padding: 0 calc(var(--main-inner-padding-side) * 0.5);
    }

        .box__problem .box__container .box__body,
        .box__solution .box__container .box__body,
        .box__func .box__container .box__body {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
        }

            .box__solution .box__container .box__body .body__item.aspect-ratio,
            .box__func .box__container .box__body .body__item.aspect-ratio {
                pointer-events: auto;
                cursor: pointer;
            }

            .box__problem .box__container .box__body .body__item.aspect-ratio,
            .box__solution .box__container .box__body .body__item.aspect-ratio,
            .box__func .box__container .box__body .body__item.aspect-ratio {
                --pic-wh-rate: calc(260/214);
                /* --pic-w: 22%; */
                --pic-w: 200px;
                left: initial;
                transform: initial;
                -webkit-transform: initial;
                -moz-transform: initial;
                -ms-transform: initial;
                -o-transform: initial;
                background: #fff url(../images/common/func-bg-yellow.svg);
                background-repeat: no-repeat;
                background-position: top center;
                background-size: 105%;
                border-radius: var(--panel-border-radius-l);
                box-shadow: var(--box-shadows);
                overflow: hidden;
            }

                .box__problem .box__container .box__body .body__item.aspect-ratio:not(:first-child),
                .box__solution .box__container .box__body .body__item.aspect-ratio:not(:first-child),
                .box__func .box__container .box__body .body__item.aspect-ratio:not(:first-child) {
                    margin-left: 18px;
                }

            .box__solution .box__container .box__body .body__item.aspect-ratio {
                background: #fff url(../images/common/solution-bg-blue.svg);
                background-repeat: no-repeat;
                background-position: top center;
                background-size: 105%;
            }

            .box__problem .box__container .box__body .body__item.aspect-ratio {
                --pic-wh-rate: calc(295/295);
                --pic-w: 22%;
                background: url(../images/common/problem-bg.svg);
                background-repeat: no-repeat;
                background-position: top center;
                background-size: cover;
                border-radius: initial;
                box-shadow: initial;
                overflow: hidden;
            }

            .box__solution .box__container .box__body .body__item.aspect-ratio > div .item__detail {
                text-align: center;
            }

                .box__solution .box__container .box__body .body__item.aspect-ratio > div .item__detail > p:not(:first-child) {
                    --fsize2: calc((var(--fsize) - 4px));
                    font-size: var(--fsize2);
                    font-weight: 500;
                    line-height: calc(var(--fsize2) + 8px);
                }

            .box__problem .box__container .box__body .body__item.aspect-ratio > div .item__detail {
                color: #fff;
                text-align: center;
            }

            .box__solution .box__container .box__body .body__item.aspect-ratio > div,
            .box__func .box__container .box__body .body__item.aspect-ratio > div {
                display: flex;
                flex-direction: column;
            }

            .box__solution .box__container .box__body .body__item.aspect-ratio > div {
                justify-content: flex-start;
                padding-top: 25%;
            }

                .box__solution .box__container .box__body .body__item.aspect-ratio > div .item__icon,
                .box__func .box__container .box__body .body__item.aspect-ratio > div .item__icon {
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                }

                    .box__solution .box__container .box__body .body__item.aspect-ratio > div .item__icon > img,
                    .box__func .box__container .box__body .body__item.aspect-ratio > div .item__icon > img {
                        width: 75%;
                    }

                .box__solution .box__container .box__body .body__item.aspect-ratio > div .item__detail {
                    margin-top: 10%;
                }

            .box__func .box__container .box__body .body__item.aspect-ratio > div .item__detail {
                margin-top: 20%;
                --fsize2: calc(var(--fsize) - 1px);
                font-size: var(--fsize2);
                font-weight: 500;
                line-height: calc(var(--fsize2) + 8px);
            }

                .box__func .box__container .box__body .body__item.aspect-ratio > div .item__detail > p {
                    /*--point-w: var(--list-point-w);*/
                    --point-space-w: var(--list-point-space-w);
                    position: relative;
                    margin-left: calc(var(--point-w) + var(--point-space-w));
                    text-align: left;
                }

                    .box__func .box__container .box__body .body__item.aspect-ratio > div .item__detail > p::before {
                        content: "";
                        position: absolute;
                        width: var(--point-w);
                        height: var(--point-w);
                        left: calc(-1 * (var(--point-w) + var(--point-space-w)));
                        top: 7px;
                        background-color: #000;
                        border-radius: 50%;
                    }


.box__func__detail .box__container {
    max-width: var(--main-inner-max-width);
    padding: 0 var(--main-inner-padding-side);
}

    .box__func__detail .box__container .box__body {
        background-color: #fff;
        border-radius: var(--panel-border-radius-l);
        box-shadow: var(--box-shadows);
        overflow: hidden;
        padding: 8% 6%;
    }

.box__one__talk {
    margin-bottom: 100px;
    z-index: 10;
}

    .box__one__talk .box__container {
        max-width: var(--main-inner-max-width);
        padding: 0 var(--main-inner-padding-side);
    }

        .box__one__talk .box__container .box__body {
            /* padding: 0 var(--main-inner-inner-padding-side); */
            --logo-w: 25%;
            --space-w: 4%;
            --detail-w: calc(100% - var(--logo-w) - var(--space-w));
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: stretch;
        }

            .box__one__talk .box__container .box__body > ul {
                flex: 0 0 auto;
                position: relative;
            }

                .box__one__talk .box__container .box__body > ul.body__logo {
                    width: var(--logo-w);
                    border-radius: 50%;
                    overflow: hidden;
                    background-color: #FFF;
                    border: 10px solid #fff;
                    box-sizing: border-box;
                    box-shadow: var(--circle-box-shadows);
                }

                .box__one__talk .box__container .box__body > ul.box__detail {
                    width: var(--detail-w);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    padding: 2% 0%;
                }

                    .box__one__talk .box__container .box__body > ul.box__detail .detail__text {
                        font-weight: 400;
                        text-align: left;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 4;
                        overflow: hidden;
                    }

                    .box__one__talk .box__container .box__body > ul.box__detail .detail__sign {
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        justify-content: flex-end;
                        align-items: flex-end;
                    }

                        .box__one__talk .box__container .box__body > ul.box__detail .detail__sign .sign__title {
                            font-weight: 500;
                            margin-left: 10px;
                        }

/* box__article__list */
/* .box__article__list {
    margin-bottom: 80px
} */

.box__article__list .box__container {
    max-width: var(--main-inner-max-width);
    padding: 0 var(--main-inner-padding-side);
}

    .box__article__list .box__container .box__body .body__con {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin: 50px 0;
    }

    .box__article__list .box__container .box__body .body__list {
        --item-w: 31%;
        --space-w: calc((100% - var(--item-w) * 3)/2);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        .box__article__list .box__container .box__body .body__list .list__article {
            position: relative;
            flex: 0 0 auto;
            width: var(--item-w);
        }

            .box__article__list .box__container .box__body .body__list .list__article:hover .article__detail .detail__title {
                color: #ADADAD;
            }

            .box__article__list .box__container .box__body .body__list .list__article .article__img.aspect-ratio {
                --pic-wh-rate: calc(360/720);
            }

            .box__article__list .box__container .box__body .body__list .list__article .article__detail {
                padding-top: 20px;
            }

                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__status {
                    margin-bottom: 10px;
                }

                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__title {
                    margin-bottom: 20px;
                    -webkit-transition: all .2s ease-in-out 0s;
                    -o-transition: all .2s ease-in-out 0s;
                    -moz-transition: all .2s ease-in-out 0s;
                    transition: all .2s ease-in-out 0s;
                }

                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__text {
                    text-align: justify;
                }

                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__title,
                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__text,
                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__sign {
                    text-align: left;
                }

                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__text {
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                    overflow: hidden;
                    -webkit-transition: all .2s ease-in-out 0s;
                    -o-transition: all .2s ease-in-out 0s;
                    -moz-transition: all .2s ease-in-out 0s;
                    transition: all .2s ease-in-out 0s;
                }

                .box__article__list .box__container .box__body .body__list .list__article .article__detail .detail__sign {
                    margin-top: 30px;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: baseline;
                }

/* box__qa */
.box__qa .box__container {
    max-width: var(--main-inner-max-width);
    padding: 0 var(--main-inner-padding-side);
}

    .box__qa .box__container .box__body {
        pointer-events: auto;
        cursor: pointer;
        --point-w: var(--list-point-w);
        --point-space-w: var(--list-point-space-w);
        --margin-left: calc(var(--point-w) + var(--point-space-w));
        background-color: #fff;
        border-radius: var(--panel-border-radius);
        box-shadow: var(--box-shadows);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 30px 30px;
    }

        .box__qa .box__container .box__body:not(:first-child) {
            margin-top: 25px;
        }

        .box__qa .box__container .box__body > ul {
            --con-btn-w: 20px;
            --space-w: 20px;
            --con-body-w: calc(100% - var(--con-btn-w) - var(--space-w));
            position: relative;
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
        }

        .box__qa .box__container .box__body .con__body {
            width: var(--con-body-w);
        }

        .box__qa .box__container .box__body .con__btn {
            width: var(--con-btn-w);
        }


            .box__qa .box__container .box__body .con__btn > img {
                position: relative;
                /* top: 10px; */
                top: 100%;
                -webkit-transition: all .5s ease-in-out 0s;
                -o-transition: all .5s ease-in-out 0s;
                -moz-transition: all .5s ease-in-out 0s;
                transition: all .5s ease-in-out 0s;
            }

            .box__qa .box__container .box__body .con__btn.is-closed > img {
                transform: scaleY(-1);
            }

        .box__qa .box__container .box__body .con__body .body__topic {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
        }

            .box__qa .box__container .box__body .con__body .body__topic .topic__text {
                flex: 0 0 auto;
                position: relative;
                width: calc(100% - var(--margin-left));
                text-align: left;
                margin-left: var(--margin-left);
                padding-left: 10px;
            }

                .box__qa .box__container .box__body .con__body .body__topic .topic__text::before {
                    content: "";
                    position: absolute;
                    width: var(--point-w);
                    height: var(--point-w);
                    left: calc(-1 * (var(--point-w) + var(--point-space-w)));
                    top: 8px;
                    background-color: #000;
                    border-radius: 50%;
                }


        .box__qa .box__container .box__body .con__body .body__answer {
            margin-top: 10px;
        }

            .box__qa .box__container .box__body .con__body .body__answer .answer__text {
                position: relative;
                width: calc(100% - var(--margin-left));
                text-align: left;
                color: var(--color-gray);
                margin-left: var(--margin-left);
            }

/* ----------------------------------------------------------------- */
/* 標題 優先上下 100px */
/* box__mtitle 有機會縮 70px */
/* box__mtitle2 完全不縮 */
/* box__mtitle3  有機會縮 90px */
.box__mtitle3 .box__container,
.box__mtitle2 .box__container,
.box__mtitle .box__container {
    max-width: var(--main-inner-max-width);
    padding: 100px var(--main-inner-padding-side) 50px var(--main-inner-padding-side);
}


    .box__mtitle3 .box__container .box__body,
    .box__mtitle2 .box__container .box__body,
    .box__mtitle .box__container .box__body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .box__mtitle3 .box__container .box__body .box__vline-mobile,
        .box__mtitle2 .box__container .box__body .box__vline-mobile,
        .box__mtitle .box__container .box__body .box__vline-mobile {
            margin-top: 5px;
            position: relative;
            width: 5px;
            height: 50px;
            display: block;
            background-color: transparent;
        }

    .box__mtitle .box__container .box__body {
        width: 70%;
    }

    .box__mtitle2 .box__container .box__body {
        width: 100%;
    }

    .box__mtitle3 .box__container .box__body {
        width: 100%;
    }

/* ----------------------------------------------------------------- */
/* 符號 */
.font-symbal {
    font-family: Arial, Helvetica, sans-serif;
}

.font-number {
    font-family: 'Roboto', Helvetica, sans-serif;
    font-weight: 500;
}

.font-color-orange {
    color: var(--color-orange);
}

.font-color-orange2 {
    color: var(--color-orange2);
}

.font-color-blue-dark {
    color: var(--color-blue-dark);
}

.text-title-l {
    --fsize: calc(68px);
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 8px);
    text-align: center;
}

.text-title-m {
    --fsize: calc(50px);
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 8px);
    text-align: center;
}

.text-title-m2 {
    --fsize: calc(40px);
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 8px);
}

.text-title-s {
    --fsize: calc(29px);
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 8px);
    text-align: center;
}

.text-title-s2 {
    --fsize: calc(22px);
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 8px);
}

.text-text-normal {
    --fsize: calc(20px);
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 6px + 4px);
    text-align: center;
}

.header-text {
    --fsize: 16px;
    font-size: var(--fsize);
    font-weight: 500;
}

.header-subtext {
    /* header-text  -3 */
    --fsize: 13px;
    font-size: var(--fsize);
    font-weight: 500;
}

.footer-tips-normal {
    --fsize: 24px;
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 6px);
    color: #fff;
}

.footer-title {
    --fsize: 28px;
    font-size: var(--fsize);
    font-weight: 500;
}

.footer-text {
    --fsize: 16px;
    font-size: var(--fsize);
    font-weight: 500;
}

/* ----------------------------------------------------------------- */
@media only screen and (min-width:360px) {
    :root {
        --header-nav-h: 60px;
        /* 針對1440 */
        --main-side: 5%;
        /* 針對1280 */
        --main-inner-side: 5%;
        --panel-border-radius-s: 10px;
        --panel-border-radius: 10px;
        --panel-border-radius-l: 10px;
    }

    a.btn__style {
        --padding-top-bottom: 10px;
        width: 220px;
        --font-size: 14px;
    }

    .box__banner .box__container .detail__btn > a.btn__style {
        --padding-top-bottom: 13px;
        width: 270px;
        --font-size: 16px;
    }

    .box__imgcon__align .box__container .box__body .body__item .item__con .con__btn > a.btn__style {
        --padding-top-bottom: 9px;
        width: 220px;
        --font-size: 14px;
    }

    .box__counter .box__container .box__btn > a.btn__style {
        --font-size: 14px !important;
        width: 220px;
        --padding-top-bottom: 9px !important;
    }

    .is-effect-pc {
        display: none;
    }

    .is-effect-mobile {
        display: flex;
    }

    .box__mtitle3 .box__container,
    .box__mtitle2 .box__container,
    .box__mtitle .box__container {
        padding: 100px var(--main-inner-padding-side) 0px var(--main-inner-padding-side);
    }

        .box__mtitle3 .box__container .box__body .box__vline-mobile,
        .box__mtitle2 .box__container .box__body .box__vline-mobile,
        .box__mtitle .box__container .box__body .box__vline-mobile {
            display: flex;
        }
    /* --------------------------- */
    /* 文字控制 */
    .header-text {
        --fsize: 20px;
    }

    .header-subtext {
        --fsize: 15px;
    }

    .footer-title {
        --fsize: 22px;
    }

    .footer-text {
        --fsize: 13px;
    }

    .footer-tips-normal {
        --fsize: 16px;
    }
    /* -------- */
    .text-title-l {
        /* --fsize: 40px; */
        --fsize: 34px;
    }

    .text-title-m {
        /* --fsize: 34px; */
        --fsize: 30px;
    }

    .text-title-m2 {
        /* --fsize: 24px; */
        --fsize: 24px;
    }

    .text-title-s {
        /* --fsize: 22px; */
        --fsize: 20px;
    }

    .text-title-s2 {
        /* --fsize: 16px; */
        --fsize: 16px;
    }

    .text-text-normal {
        /* --fsize: 16px; */
        --fsize: 14px;
    }
    /* -------- */
    .is-break-pc {
        display: none !important;
    }

    .is-break-mobile {
        display: flex !important;
    }
    /* --------------------------- */
    /* ----------------------------------------------------------------- */
    .box__banner {
        --banner-rate: calc(685/1024);
        --banner-w: 1024px;
    }

        .box__banner .box__container .splide {
            clip-path: polygon( 100% 0%,100% 45.086%,69.472% 90.722%,69.472% 90.722%,67.837% 92.922%,66.076% 94.833%,64.207% 96.448%,62.247% 97.76%,60.212% 98.762%,58.12% 99.447%,55.986% 99.81%,53.829% 99.842%,51.665% 99.537%,49.511% 98.889%,49.294% 98.804%,0% 79.059%,0% 0%,100% 0% );
        }

            .box__banner .box__container .splide .splide__slide .splide__con {
                --banner-space: 0%;
                top: calc(var(--banner-h) * 0.25 * 0);
                flex-direction: column;
                justify-content: initial;
                align-items: center;
            }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail {
                    --title-fsize: 40px;
                    --text-fsize: 16px;
                    width: 90%;
                    margin-bottom: 5%;
                }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__pic {
                    width: 75%;
                }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail .detail__btn {
                    display: none;
                }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__pic .detail__btn {
                    display: flex;
                    justify-content: center;
                    margin-top: 10%;
                }

    /* box__ytvideo */
    .box__ytvideo .box__container {
        padding: 0 0;
    }

    /* box__imgcon__align */
    .box__imgcon__align {
        --space-w: 0%;
        --img-w: 75%;
        --con-w: 100%;
    }

        .box__imgcon__align .box__container .box__body .body__item:not(:first-child) {
            margin-top: 16%;
        }

        .box__imgcon__align .box__container .box__body .body__item.img-to-con {
            flex-direction: column;
            justify-content: initial;
            align-items: center;
        }

        .box__imgcon__align .box__container .box__body .body__item.con-to-img {
            flex-direction: column;
            justify-content: initial;
            align-items: center;
        }

        .box__imgcon__align .box__container .box__body .body__item .item__con .con__title {
            margin: 10% 0 6% 0;
        }

        .box__imgcon__align .box__container .box__body .body__item .item__con .con__subtitle {
            margin-bottom: 4%;
        }

            .box__imgcon__align .box__container .box__body .body__item .item__con .con__text.text-text-normal,
            .box__imgcon__align .box__container .box__body .body__item .item__con .con__subtitle.text-title-s,
            .box__imgcon__align .box__container .box__body .body__item .item__con .con__title.text-title-m {
                text-align: center;
                justify-content: center;
            }

        .box__imgcon__align .box__container .box__body .body__item .item__con .con__btn {
            margin-top: 12%;
            display: flex;
            justify-content: center;
        }


    /* box__talks */
    .box__talks .box__container {
        padding: 0% 0;
    }

        /* .box__talks .box__container .splide .slide__body.aspect-ratio {
        --pic-wh-rate: calc(500/280);
    } */

        .box__talks .box__container .splide .slide__body.aspect-ratio > div {
            padding: 30px 20px;
        }

            .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info {
                --space-w: 0%;
                --icon-w: 60%;
                --detail-w: 100%;
                flex-direction: column;
                align-items: center;
                align-self: center;
            }

                .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__detail {
                    text-align: center;
                    margin-top: 15%;
                    margin-bottom: 5%;
                }

                    .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__detail .detail__name {
                        margin-top: 5%;
                    }

        .box__talks .box__container .splide .slide__body.aspect-ratio {
            --pic-wh-rate: calc(560/280);
        }

            .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__text.text-text-normal {
                -webkit-line-clamp: 11;
            }

    .box__more__solution .box__container,
    .box__more__service .box__container {
        padding: 0 0;
    }


    .box__problem .box__container,
    .box__solution .box__container,
    .box__func .box__container {
        padding: 0 calc(var(--main-inner-padding-side));
    }

        /* .box__problem .box__container .box__body, 
    .box__solution .box__container .box__body, 
    .box__func .box__container .box__body {
        justify-content: space-between;
    } */

        .box__problem .box__container .box__body .body__item.aspect-ratio,
        .box__solution .box__container .box__body .body__item.aspect-ratio,
        .box__func .box__container .box__body .body__item.aspect-ratio {
            --pic-w: 48%;
            margin-bottom: 4%;
        }

        .box__solution .box__container .box__body .body__item.aspect-ratio {
            --pic-wh-rate: calc(290/214);
        }

            .box__problem .box__container .box__body .body__item.aspect-ratio:not(:first-child),
            .box__solution .box__container .box__body .body__item.aspect-ratio:not(:first-child),
            .box__func .box__container .box__body .body__item.aspect-ratio:not(:first-child) {
                margin-left: 0px;
            }

            .box__problem .box__container .box__body .body__item.aspect-ratio:nth-child(even),
            .box__solution .box__container .box__body .body__item.aspect-ratio:nth-child(even),
            .box__func .box__container .box__body .body__item.aspect-ratio:nth-child(even) {
                margin-left: 4%;
            }

    .box__func__detail .box__container .box__body {
        padding: 18% 6%;
    }

    .box__one__talk .box__container .box__body {
        flex-direction: column;
        justify-content: initial;
        align-items: center;
    }

        .box__one__talk .box__container .box__body > ul.body__logo {
            width: 60%;
            border: 10px solid #fff;
            margin-bottom: 30px;
        }

        .box__one__talk .box__container .box__body > ul.box__detail {
            width: 100%;
            padding: 0% 4%;
        }

            .box__one__talk .box__container .box__body > ul.box__detail .detail__text {
                text-align: center;
                -webkit-box-orient: initial;
                -webkit-line-clamp: initial;
                overflow: initial;
            }

            .box__one__talk .box__container .box__body > ul.box__detail .detail__sign {
                margin-top: 15px;
                flex-direction: column;
                justify-content: initial;
                align-items: center;
            }

                .box__one__talk .box__container .box__body > ul.box__detail .detail__sign .sign__title {
                    margin-top: 10px;
                    margin-left: 0px;
                }

    /* box__article__list */
    .box__article__list .box__container .box__body .body__list {
        flex-direction: column;
        justify-content: initial;
    }

        .box__article__list .box__container .box__body .body__list .list__article {
            width: 100%;
            margin-bottom: 50px;
        }

    .box__article__list .box__container .box__body .body__btn {
        display: flex;
        justify-content: center;
    }

    /* box__qa */
    .box__qa .box__container .box__body {
        padding: 30px 15px;
    }

        .box__qa .box__container .box__body > ul {
            --con-btn-w: 15px;
        }

            .box__qa .box__container .box__body > ul.con__btn > img {
                top: 100%;
            }

            .box__qa .box__container .box__body > ul.con__btn.is-closed > img {
                top: 10px;
            }
    /* --------------------------- */
    .box__mtitle .box__container .box__body {
        width: 100%;
    }

    .box__mtitle2 .box__container .box__body {
        width: 100%;
    }

    .box__mtitle3 .box__container .box__body {
        width: 90%;
    }

    section.for__problem {
        margin-top: 150px;
    }

        section.for__problem .box__container .box__body > h1::before {
            --rate: 0.5;
            top: -30px;
            left: calc(50%);
        }
}

@media only screen and (min-width: 414px) {
    .text-text-normal {
        --fsize: 16px;
    }
}

@media only screen and (min-width:768px) {
    a.btn__style {
        --font-size: 16px;
    }

    /* .box__counter .box__container .box__btn > a.btn__style {
        --font-size: 20px!important;
        --padding-top-bottom: 20px!important;
        width: 40%;
    } */
}

@media only screen and (min-width:1024px) {
    :root {
        --header-nav-h: 80px;
        /* 針對1280 */
        --main-inner-side: 8%;
        --panel-border-radius-s: 15px;
        --panel-border-radius: 15px;
        --panel-border-radius-l: 15px;
    }

    a.btn__style {
        --padding-top-bottom: 13px;
        width: 250px;
    }

    .box__banner .box__container .detail__btn > a.btn__style {
        --padding-top-bottom: 12px;
        width: 250px;
        --font-size: 18px;
    }

    .box__imgcon__align .box__container .box__body .body__item .item__con .con__btn > a.btn__style {
        --padding-top-bottom: 12px;
        width: 250px;
        --font-size: 18px;
        min-width: initial;
    }

    .box__counter .box__container .box__btn > a.btn__style {
        --padding-top-bottom: 12px !important;
        width: 250px;
        --font-size: 18px !important;
    }

    .is-effect-pc {
        display: flex;
    }

    .is-effect-mobile {
        display: none;
    }

    .box__mtitle3 .box__container,
    .box__mtitle2 .box__container,
    .box__mtitle .box__container {
        padding: 100px var(--main-inner-padding-side) 50px var(--main-inner-padding-side);
    }

        .box__mtitle3 .box__container .box__body .box__vline-mobile,
        .box__mtitle2 .box__container .box__body .box__vline-mobile,
        .box__mtitle .box__container .box__body .box__vline-mobile {
            display: none;
        }
    /* --------------------------- */
    /* 文字控制 */
    .header-text {
        --fsize: 16px;
    }

    .header-subtext {
        --fsize: 14px;
    }

    .footer-title {
        --fsize: 26px;
    }

    .footer-text {
        --fsize: 14px;
    }

    .footer-tips-normal {
        --fsize: 18px;
    }

    /* --------------- */
    .text-title-l {
        --fsize: 40px;
    }

    .text-title-m {
        --fsize: 30px;
    }

    .text-title-m2 {
        --fsize: 26px;
    }

    .text-title-s {
        --fsize: 22px;
    }

    .text-title-s2 {
        --fsize: 18px;
    }

    .text-text-normal {
        --fsize: 16px;
    }

    /* --------------- */
    .is-break-pc {
        display: flex !important;
    }

    .is-break-mobile {
        display: none !important;
    }
    /* --------------------------- */
    /* ------------------------------------------------------------------ */
    .box__banner {
        --banner-rate: calc(825/2940);
        --banner-w: calc(2940px * 0.7);
    }

        .box__banner .box__container .splide {
            clip-path: polygon( 99.943% 0%,75.985% 85.375%,75.985% 85.375%,74.892% 88.879%,73.714% 91.916%,72.463% 94.477%,71.151% 96.55%,69.789% 98.123%,68.389% 99.187%,66.962% 99.73%,65.52% 99.741%,64.074% 99.209%,62.635% 98.123%,62.635% 98.123%,24.34% 61.556%,24.34% 61.556%,22.942% 59.933%,21.615% 57.817%,20.367% 55.238%,19.208% 52.225%,18.144% 48.809%,17.186% 45.019%,16.34% 40.886%,15.616% 36.44%,15.022% 31.711%,14.567% 26.728%,14.567% 26.728%,12.557% 0%,99.943% 0% );
        }

            .box__banner .box__container .splide .splide__slide .splide__con {
                --banner-space: 5%;
                top: calc(var(--banner-h) * 0.25 * 0.4);
                flex-direction: row;
                justify-content: center;
                align-items: stretch;
            }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail {
                    --title-fsize: 38px;
                    --text-fsize: 16px;
                    width: calc(var(--banner-detail-w) - 20%);
                    margin-bottom: 0%;
                }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__pic {
                    width: var(--banner-pic-w);
                }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail .detail__btn {
                    display: flex;
                }

                .box__banner .box__container .splide .splide__slide .splide__con > ul.con__pic .detail__btn {
                    display: none;
                }

    /* box__ytvideo */
    .box__ytvideo .box__container {
        max-width: var(--main-inner-max-width);
        padding: 0 0;
    }

    /* box__imgcon__align */
    .box__imgcon__align {
        --space-w: 7%;
        --img-w: 34.7%;
        --con-w: calc(100% - var(--img-w) - var(--space-w));
    }

        .box__imgcon__align .box__container .box__body .body__item:not(:first-child) {
            margin-top: 6%;
        }

        .box__imgcon__align .box__container .box__body .body__item.img-to-con {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .box__imgcon__align .box__container .box__body .body__item.con-to-img {
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: center;
        }

        .box__imgcon__align .box__container .box__body .body__item .item__con .con__title {
            margin: 0 0 1.5% 0;
        }

        .box__imgcon__align .box__container .box__body .body__item .item__con .con__subtitle {
            margin-bottom: 2%;
        }

            .box__imgcon__align .box__container .box__body .body__item .item__con .con__text.text-text-normal,
            .box__imgcon__align .box__container .box__body .body__item .item__con .con__subtitle.text-title-s,
            .box__imgcon__align .box__container .box__body .body__item .item__con .con__title.text-title-m {
                text-align: left;
                justify-content: initial;
            }

        .box__imgcon__align .box__container .box__body .body__item .item__con .con__btn {
            margin-top: 4%;
            display: flex;
            justify-content: initial;
        }

    /* box__talks */
    .box__talks .box__container {
        padding: 0% var(--main-inner-padding-side);
    }

        .box__talks .box__container .splide .slide__body.aspect-ratio {
            --pic-wh-rate: calc(540/626);
        }

            .box__talks .box__container .splide .slide__body.aspect-ratio > div {
                padding: 25px;
            }

                .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info {
                    --space-w: 5%;
                    --icon-w: 25%;
                    --detail-w: calc(100% - var(--icon-w) - var(--space-w));
                    flex-direction: row;
                    align-items: center;
                    align-self: initial;
                }

                    .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__detail {
                        text-align: left;
                        margin-top: 0%;
                        margin-bottom: 0%;
                    }

                        .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__info .info__detail .detail__name {
                            margin-top: 5%;
                        }

                .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__text.text-text-normal {
                    -webkit-line-clamp: 9;
                    --fsize2: calc(var(--fsize) - 2px);
                    font-size: var(--fsize2);
                    line-height: calc(var(--fsize2) + 6px + 4px);
                }

    .box__more__solution .box__container {
        padding: 0 calc(var(--main-inner-padding-side) * 0.765);
    }

    .box__more__service .box__container {
        padding: 0 calc(var(--main-inner-padding-side) * 1.5);
    }

    .box__problem .box__container,
    .box__solution .box__container,
    .box__func .box__container {
        padding: 0 calc(var(--main-inner-padding-side) * 0.5);
    }

    /* .box__problem .box__container .box__body, 
    .box__solution .box__container .box__body, 
    .box__func .box__container .box__body {
        justify-content: center;
    } */

    .box__more__solution .box__container .box__body .body__item.aspect-ratio > div .item__icon > img,
    .box__more__service .box__container .box__body .body__item.aspect-ratio > div .item__icon > img {
        width: 75%;
    }

    .box__problem .box__container .box__body .body__item.aspect-ratio,
    .box__solution .box__container .box__body .body__item.aspect-ratio,
    .box__func .box__container .box__body .body__item.aspect-ratio {
        --pic-w: 170px;
        margin-bottom: 0;
    }

        .box__problem .box__container .box__body .body__item.aspect-ratio:nth-child(even),
        .box__solution .box__container .box__body .body__item.aspect-ratio:nth-child(even),
        .box__func .box__container .box__body .body__item.aspect-ratio:nth-child(even) {
            margin-left: 0%;
        }

        .box__problem .box__container .box__body .body__item.aspect-ratio:not(:first-child),
        .box__solution .box__container .box__body .body__item.aspect-ratio:not(:first-child),
        .box__func .box__container .box__body .body__item.aspect-ratio:not(:first-child) {
            margin-left: 18px;
        }


    .box__func__detail .box__container .box__body {
        padding: 8% 6%;
    }

    .box__one__talk .box__container .box__body {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

        .box__one__talk .box__container .box__body > ul.body__logo {
            width: var(--logo-w);
            border: 10px solid #fff;
            margin-bottom: 0px;
        }

        .box__one__talk .box__container .box__body > ul.box__detail {
            width: var(--detail-w);
            padding: 2% 0%;
        }

            .box__one__talk .box__container .box__body > ul.box__detail .detail__text {
                text-align: justify;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 4;
                overflow: hidden;
            }

            .box__one__talk .box__container .box__body > ul.box__detail .detail__sign {
                margin-top: 0px;
                flex-direction: row;
                justify-content: flex-end;
                align-items: flex-end;
            }

                .box__one__talk .box__container .box__body > ul.box__detail .detail__sign .sign__title {
                    margin-top: 0px;
                    margin-left: 10px;
                }

    /* box__article__list */
    .box__article__list .box__container .box__body .body__list {
        flex-direction: row;
        justify-content: space-between;
    }

        .box__article__list .box__container .box__body .body__list .list__article {
            width: var(--item-w);
            margin-bottom: 0px;
        }

    /* box__qa */
    .box__qa .box__container .box__body {
        padding: 30px 25px;
    }

        .box__qa .box__container .box__body > ul {
            --con-btn-w: 20px;
        }

            .box__qa .box__container .box__body > ul.con__btn > img {
                top: 10px;
            }

            .box__qa .box__container .box__body > ul.con__btn.is-closed > img {
                top: 10px;
            }
    /* --------------------------- */
    .box__mtitle .box__container .box__body {
        width: 65%;
        max-width: 635px;
    }

    .box__mtitle2 .box__container .box__body {
        width: 100%;
    }

    .box__mtitle3 .box__container .box__body {
        width: 60%;
    }

    section.for__problem {
        margin-top: 0px;
    }

        section.for__problem .box__container .box__body > h1::before {
            --rate: 0.7;
            top: 50px;
            left: calc(50% - 260px);
        }
}

@media only screen and (min-width: 1200px) {
    :root {
        /* 針對1280 */
        --main-inner-side: 9.4%;
        /* --main-inner-inner-side: 0%; */
    }

    /* --------------- */
    .text-title-l {
        --fsize: 50px;
    }

    .text-title-m {
        --fsize: 36px;
    }

    .text-title-m2 {
        --fsize: 30px;
    }

    .text-title-s {
        --fsize: 24px;
    }

    .text-title-s2 {
        --fsize: 20px;
    }

    .text-text-normal {
        --fsize: 18px;
    }
    /* --------------- */
    /* ------------------------------------------------------------------ */
    .box__banner {
        --banner-w: calc(2940px * 0.8182);
    }

        .box__banner .box__container .splide .splide__slide .splide__con {
            --banner-space: 3%;
        }

            .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail {
                /* --title-fsize: 56px; */
                --title-fsize: 50px;
                --text-fsize: 18px;
            }

    .box__ytvideo .box__container {
        padding: 0 calc(var(--main-inner-padding-side) * 0.5);
    }

    .box__brands .box__container {
        padding: 0 calc(var(--main-padding-side) * 0.5);
    }

    .box__more__solution .box__container {
        padding: 0 min(calc(var(--main-inner-padding-side) * 2), 93px);
    }

    .box__more__service .box__container {
        padding: 0 min(calc(var(--main-inner-padding-side) * 3), 202px);
    }

        .box__more__solution .box__container .box__body .body__item.aspect-ratio > div .item__icon > img,
        .box__more__service .box__container .box__body .body__item.aspect-ratio > div .item__icon > img {
            width: 100%;
        }

    .box__func__detail .box__container .box__body {
        padding: 8% 100px;
    }

    .box__problem .box__container .box__body .body__item.aspect-ratio,
    .box__solution .box__container .box__body .body__item.aspect-ratio,
    .box__func .box__container .box__body .body__item.aspect-ratio {
        --pic-w: 200px;
        margin-bottom: 0;
    }

    section.for__problem .box__container .box__body > h1::before {
        top: 60px;
        left: calc(50% - 370px);
    }
    /* ------------------------------------------------------------------ */
    .box__talks .box__container .splide .slide__body.aspect-ratio {
        --pic-wh-rate: calc(500/626);
    }

        .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__text.text-text-normal {
            -webkit-line-clamp: 9;
            --fsize2: calc(var(--fsize) - 3px);
        }
}

@media only screen and (min-width:1400px) {
    :root {
        /* 針對1280 */
        --main-inner-side: 9.4%;
        --panel-border-radius-s: 15px;
        --panel-border-radius: 20px;
        --panel-border-radius-l: 20px;
    }

    /* --------------------------- */
    /* 文字控制 */
    .header-text {
        --fsize: 18px;
    }

    .header-subtext {
        --fsize: 15px;
    }

    .footer-title {
        --fsize: 28px;
    }

    .footer-text {
        --fsize: 16px;
    }

    .footer-tips-normal {
        --fsize: 20px;
    }

    /* ----------- */
    .text-title-l {
        --fsize: calc(54px);
    }

    .text-title-m {
        --fsize: calc(42px);
    }

    .text-title-m2 {
        --fsize: calc(34px);
    }

    .text-title-s {
        --fsize: calc(26px);
    }

    .text-title-s2 {
        --fsize: calc(22px);
    }

    .text-text-normal {
        --fsize: calc(20px);
    }
    /* ----------- */
    /* ------------------------------------------------------------------ */
    .box__banner .splide__arrows {
        --side-value: calc(50% - 23%);
    }

    .box__banner {
        --banner-w: calc(2940px * 1);
    }

        .box__banner .box__container .splide .splide__slide .splide__con {
            --banner-space: 6%;
        }

            .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail {
                --title-fsize: calc(58px);
                --text-fsize: calc(20px);
            }

    .box__ytvideo .box__container {
        padding: 0 var(--main-inner-padding-side);
    }

    .box__brands .box__container {
        padding: 0 var(--main-padding-side);
    }

    .box__brands.box__used3 .box__container {
        padding: 0 calc(var(--main-padding-side) * 0);
    }

    .box__more__service .box__container {
        padding: 0 min(calc(var(--main-inner-padding-side) * 3), 242px);
    }

    .box__more__solution .box__container {
        padding: 0 min(calc(var(--main-inner-padding-side) * 2), 133px);
    }


    .box__problem .box__container .box__body .body__item.aspect-ratio > div .item__detail,
    .box__solution .box__container .box__body .body__item.aspect-ratio > div .item__detail,
    .box__func .box__container .box__body .body__item.aspect-ratio > div .item__detail {
        --fsize2: calc(var(--fsize) - 2px);
        font-size: var(--fsize2);
        font-weight: 500;
        line-height: calc(var(--fsize2) + 8px);
    }
    /* --------------------------- */
    .box__mtitle .box__container .box__body {
        max-width: 595px;
    }

    section.for__problem .box__container .box__body > h1::before {
        top: 60px;
        left: calc(50% - 410px);
    }

    .box__talks .box__container .splide .slide__body.aspect-ratio {
        --pic-wh-rate: calc(440/626);
    }

        .box__talks .box__container .splide .slide__body.aspect-ratio > div .body__text.text-text-normal {
            -webkit-line-clamp: 9;
            --fsize2: calc(var(--fsize) - 4px);
        }
}

@media only screen and (min-width:1600px) {
    :root {
        --main-inner-side: 7%;
    }
}

@media only screen and (min-width:1900px) {
    :root {
        --main-inner-side: 5%;
        --panel-border-radius-s: 15px;
        --panel-border-radius: 20px;
        --panel-border-radius-l: 25px;
    }

    /* --------------------------- */
    /* 文字控制 */
    .footer-tips-normal {
        --fsize: 24px;
    }

    .text-title-l {
        --fsize: calc(60px);
    }

    .text-title-m {
        --fsize: calc(46px);
    }

    .text-title-m2 {
        --fsize: calc(40px);
    }

    .text-title-s {
        --fsize: calc(29px);
    }

    .text-title-s2 {
        --fsize: calc(22px);
    }

    .text-text-normal {
        --fsize: calc(20px);
    }
    /* --------------------------- */
    /* ------------------------------------------------------------------ */
    .box__banner .splide__arrows {
        --side-value: calc(50% - 26%);
    }

    .box__banner .box__container .splide .splide__slide .splide__con > ul.con__detail {
        --title-fsize: calc(66px);
        --text-fsize: calc(20px);
        width: calc(var(--banner-detail-w) - 10%);
    }

    .box__talks .box__container .splide .slide__body.aspect-ratio {
        --pic-wh-rate: calc(450/626);
    }
    /* ------------------------------------------------------------------ */
    .box__mtitle .box__container .box__body {
        max-width: 700px;
    }
}

@media only screen and (min-width:2940px) {
    .box__banner .box__container {
        left: initial;
    }
}
/*------------------------------------------------------*/
/*------------------------------------------------------*/
@keyframes rotate-reverse-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-180deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* loading_content */
/*------------------------------------------------------*/
.loading_content {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .loading_content .loading__body {
        position: absolute;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

        .loading_content .loading__body .body__circle {
            position: relative;
            width: 100px;
            height: 100px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            background: url(../images/common/loading-icon.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            animation: rotate-animation 5s infinite linear;
        }

        .loading_content .loading__body > p {
            position: absolute;
            font-size: 14px;
            font-weight: 600;
            font-family: sans-serif;
        }

/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

    blockquote:after,
    blockquote:before,
    q:after,
    q:before {
        content: '';
        content: none
    }

table {
    border-collapse: collapse;
    border-spacing: 0
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -moz-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

/*
// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }
*/

@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

body,
button,
html,
select,
textarea,
p,
h1,
span {
    font-family: 'Noto Sans TC', 'Heiti TC', STHeiti, HelveticaNeueLTPro-Hv, 微軟正黑體, 'Microsoft JhengHei', sans-serif
}

.tab__wrapper {
    padding-top: 20px
}

    .tab__wrapper .tab__inner {
        position: relative;
        max-width: 1200px;
        margin: 0 auto
    }

        .tab__wrapper .tab__inner .tab__list {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            border-bottom: 1px solid #000;
            width: 100%
        }

            .tab__wrapper .tab__inner .tab__list li {
                max-width: 260px;
                padding-top: 15px;
                padding-bottom: 15px;
                text-align: center;
                width: 33.333333%;
                font-size: 14px;
                line-height: 28px;
                font-weight: 600;
                border-bottom: 0 solid #FFF;
                cursor: pointer;
                position: relative
            }

                .tab__wrapper .tab__inner .tab__list li a {
                    position: relative;
                    display: block;
                    color: #000;
                    text-decoration: none;
                    font-weight: 600
                }

                    .tab__wrapper .tab__inner .tab__list li a img {
                        vertical-align: middle
                    }

                .tab__wrapper .tab__inner .tab__list li .right-icon {
                    position: absolute;
                    right: 5px;
                    top: 50%;
                    margin-top: -5px
                }

            .tab__wrapper .tab__inner .tab__list .active {
                background-color: #f1f1f1;
                border-bottom: 2px solid #cc2027
            }

        .tab__wrapper .tab__inner .sub_tab__list {
            display: none;
            z-index: 2;
            width: 66.66666%;
            min-width: 260px;
            max-width: 66.66666%;
            height: 450px;
            overflow: auto;
            position: absolute;
            right: 0;
            top: 62px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
            -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .3);
            -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .3);
            box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .3);
            background-color: #FFF
        }

            .tab__wrapper .tab__inner .sub_tab__list ul .sub_tab__list__title {
                display: none;
                padding-top: 14px;
                padding-bottom: 14px;
                font-size: 16px;
                font-weight: 600;
                line-height: 1.75;
                letter-spacing: .89px;
                color: #4b4b4b;
                position: relative;
                text-align: center
            }

                .tab__wrapper .tab__inner .sub_tab__list ul .sub_tab__list__title .right-icon {
                    position: absolute;
                    right: 20px;
                    top: 50%;
                    margin-top: -5px
                }

            .tab__wrapper .tab__inner .sub_tab__list ul li {
                position: relative;
                border-bottom: 2px solid #fde980
            }

                .tab__wrapper .tab__inner .sub_tab__list ul li a {
                    font-weight: 600;
                    font-size: 16px;
                    display: block;
                    color: #000;
                    text-decoration: none
                }

                    .tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__number {
                        position: absolute;
                        top: 5px;
                        left: 15px
                    }

                    .tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__current,
                    .tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status {
                        text-align: center;
                        line-height: 40px;
                        height: 40px
                    }

                        .tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status.reject {
                            color: #c2c2c2
                        }

                        .tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status.progress {
                            color: #e76d75
                        }

            .tab__wrapper .tab__inner .sub_tab__list ul .active .sub_tab__list__current {
                background-color: #fde980
            }



.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

    .embed-responsive::before {
        display: block;
        content: ""
    }

    .embed-responsive .embed-responsive-item,
    .embed-responsive embed,
    .embed-responsive iframe,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0
    }

/* 新增 比例三種 */
/* .embed-responsive-21by9::before {
    padding-top: 42.857143%
}*/

.embed-responsive-25by9::before {
    padding-top: 36%
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%
}

.embed-responsive-9by4::before {
    padding-top: 44.86%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.maxContent {
    position: relative;
    margin: 0 auto;
    max-width: 1200px
}

/*------------------------------------------------------*/
/*------------------------------------------------------*/
@media only screen and (min-width: 768px) {
    .show-pc {
        display: none;
    }
    .show-mobile {
        display: block;
    }
}