/* 設定CSS變數 */
:root {
    --pri01: #42B02B; /*主色1綠*/
    --pri02: #2C5596; /*主色2藍*/

    --pri03: #B4DBE1; /*主色3淺綠*/
    --pri04: #FD3D5A; /*主色4淺紅*/
    --pri05: #A81B04; /*主色5紅*/
    --pri06: #735465; /*主色6深紅*/
    --pri07: #8DC21F; /*主色7淺綠2*/

    --100vh:100vh;
    /*
    --FSizeXS:10px;
    --FSizeS:12px;
    --FSizeM:18px;
    --FSizeL:20px;
    --FSizeXXL:72px;
*/
    --FSizeXSS: 16px;
    --FSizeXS: 18px;
    --FSizeS: 20px;
    --FSizeM: 25px;
    --FSizeL: 30px;
    --FSizeXXL: 35px;
    --FSizeXXXL: 50px;
    --gradient01: linear-gradient(0deg, var(--pri01) 0%, var(--pri02) 50%, var(--pri03) 100%); /* logo 漸層 */
}
/* ============ 共用 ============ */
html {
    font-size: 18px;
}
/*body{font-family: Roboto, Arial, Helvetica, 'LiHei Pro', 'Noto Sans TC', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif; min-height: 100vh;  color: #000; line-height: 1.5;}*/
body {
    font-family: 'Noto Sans TC';
    min-height: 100vh;
    color: #000;
    line-height: 1.5;
}

.container {
    display: block;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

.mainContent {
    padding-bottom: 30px;
}

    .mainContent .container {
        max-width: 1200px;
    }

    .mainContent .banner {
        width: 100%;
        max-width: 1400px;
        display: block;
        margin: 0 auto;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

        .mainContent .banner::after {
            content: '';
            display: block;
            padding-top: 46.875%;
        }

h2 {
    font-size: var(--FSizeXXXL);
    font-weight: 100;
    color: var(--pri01);
    text-align: center;
    text-transform: uppercase;
    margin: 80px auto;
}

h5 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 40px;
    padding-left: 40px;
    text-align: center;
}

p {
    font-size: 1.2rem;
    color: #474747;
    font-weight: 300;
    padding: 20px 0 40px;
}

.topScroll.top {
    position: fixed;
    bottom: 20px;
    padding: 10px 15px;
    background-color: var(--pri07);
    right: 20px;
    border-radius: 99px;
    opacity: 0;
    transition: background .5s, opacity .5s;
    z-index: 999;
}

    .topScroll.top.show {
        opacity: 1;
    }

    .topScroll.top:hover {
        background-color: var(--pri01);
    }

    .topScroll.top::before {
        color: #FFF;
    }

.btnBox {
    display: block;
    width: 100%;
    text-align: center;
    margin: 50px auto;
}

.btn {
    display: inline-block;
    background-color: var(--pri01);
    color: #FFF;
    border-radius: 100px;
    padding: 10px 30px;
}

a.wordLink {
    color: var(--pri01);
    margin: 0 2px;
    display: inline-block;
    position: relative;
    transition: color .5s;
}

    a.wordLink:hover {
        color: var(--pri02);
    }

    a.wordLink::after {
        content: " ";
        width: 0;
        height: 1px;
        position: absolute;
        bottom: 2px;
        left: 0;
        background-color: var(--pri01);
        transition: width .5s,background .5s;
    }

    a.wordLink:hover::after {
        width: 100%;
        background-color: var(--pri02);
    }

.pc {
    display: block;
}

.m {
    display: none;
}

/* 基礎表格 */
::placeholder {
    color: #9C9C9C;
}

select:checked {
    color: red;
}

.tableBox {
    display: table;
    width: 100%;
}

    .tableBox ul {
        display: table-row;
    }

    .tableBox li {
        display: table-cell;
        padding: 5px 10px;
    }

    .tableBox input,
    .tableBox select {
        width: 100%;
        color: #9C9C9C;
    }

    .tableBox option,
    .tableBox input {
        color: #000;
    }

/* 備註 */
.notes {
    font-size: var(--FSizeXS);
    color: #9C9C9C;
}

/* ============ header, footer ============ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    transition: 1s;
    z-index: 9999999999;
    background-color: rgba(255,255,255,0.95);
    padding: 5px 0;
}
    /* ---------- 20230717-更新 ---------- */
    header .logo {
        width: 150px;
        height: 50px;
        background-image: url(../Images/AbbVie_Logo_140x25.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
    /* ---------- 20230717-更新 END ---------- */
    .index header .container,
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    header nav {
        text-align: right;
    }

        header nav .down {
            display: inline-block;
            border-top: 1px solid #DDD;
        }

        header nav a {
            color: #000;
            padding: 5px;
            transition: .3s;
        }

            header nav a:hover {
                color: var(--pri01);
            }

            header nav a span {
                color: var(--pri01);
            }

.s1 header {
    position: fixed;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    opacity: 0;
    top: -5px;
    z-index: -99;
    display: none;
}

.s2 header {
    top: 0;
    position: fixed;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    opacity: 1;
    z-index: 3;
}

.s1 header:after {
    content: " ";
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 1s;
    background-color: #CCC;
}

.s2 header:after {
    content: " ";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #CCC;
}
/* ---------- 20230620-更新 ---------- */
.index.s1 header,
.index header {
    display: inline-block;
    z-index: 999999999999999999999999999;
    opacity: 1;
}
/* ---------- 20230620-更新 END ---------- */

footer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    footer::after {
        content: '';
        background-color: var(--pri02);
        width: 4000px;
        height: 1600px;
        border-radius: 50%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        z-index: -1;
    }

    footer .container {
        padding: 50px 0px 30px;
        color: #FFF;
        font-size: 0.9rem;
        text-align: center;
    }

    footer p {
        font-size: 0.9rem;
        padding: 0;
        color: #FFF;
        font-weight: 400;
    }

    footer span {
        white-space: nowrap;
    }

    footer .link {
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    footer a {
        margin: 0 3px;
        color: #FFF;
        transition: color .5s;
    }

        footer a:hover {
            color: var(--pri01);
        }

        footer a.social {
            width: 1.5rem;
            height: 1.5rem;
            background-size: contain;
            background-repeat: no-repeat;
        }

            footer a.social.fb {
                background-image: url(../Images/ui/fb.png);
            }

            footer a.social.line {
                background-image: url(../Images/ui/line.png);
            }

        footer a.wordLink {
            color: #FFF;
        }

            footer a.wordLink:hover {
                color: var(--pri01);
            }

/* ============ index ============ */
.index .container {
    max-width: 1600px;
    padding: 0;
    overflow: hidden;
}

.indexBlock {
    max-width: 1600px;
    margin: 0 auto;
}

    .indexBlock h1 {
    }

        .indexBlock h1 span {
        }

.index footer .link {
    margin-top: 50px;
}

.index .picBg01,
.index .picBg02 {
    position: absolute;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index .picBg01 {
    background-image: url(../Images/indexBg01.svg);
    width: calc(var(--kvh) * 0.352);
    height: calc(var(--circleB01) * 1.012);
}
/* 底圖-小圈 */
.index .picBg02 {
    background-image: url(../Images/indexBg02.svg);
    width: calc(var(--kvh) * 0.295);
    height: calc(var(--circleB02) * 1.69);
}
/* 底圖-大圈 */

/* ---------- 20230703-須更新 ---------- */
#block1,
#block2,
#block3,
#block4,
#block5 {
    position: absolute;
}

#block1 {
    top: -280px;
}

#block2 {
    top: -280px;
}

#block3 {
    top: -280px;
}

#block4 {
    top: -180px;
}

#block5 {
    top: -30px;
}
/* ---------- 20230703-須更新 END ---------- */

/* ----- 01.Banner ----- */
.kv {
    width: 100%;
    height: calc(var(--kvh) * 0.548);
    position: relative;
    z-index: 9;
}

    .kv a.arrow {
        position: absolute;
        top: 50%;
        width: 96px;
        height: 96px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 5;
        margin-top: -48px;
        opacity: 0.8;
    }

        .kv a.arrow:hover {
            opacity: 1;
        }

        .kv a.arrow.L {
            background-image: url(../Images/kvArrowL.svg);
            left: 0;
        }

        .kv a.arrow.R {
            background-image: url(../Images/kvArrowR.svg);
            right: 0;
        }

    .kv .circle {
        position: absolute;
        width: 100%;
        z-index: 5;
        bottom: 50px;
    }

        .kv .circle a {
            width: 15px;
            height: 15px;
            background-color: #FFF;
            border-radius: 99px;
            border: solid 1px #ccc;
            display: inline-block;
            transition: .5s;
            margin: 0 5px;
        }

            .kv .circle a.focus,
            .kv .circle a:hover {
                background-color: var(--pri02);
            }

    .kv ul {
        width: 100%;
        height: calc(var(--kvh) * 0.548);
        position: relative;
    }

        .kv ul li {
            width: 100%;
            height: calc(var(--kvh) * 0.548);
            background-position: center;
            background-repeat: no-repeat;
            position: absolute;
            top: 0;
            left: 0;
            background-size: cover;
        }

/* ----- 02.全家人的人工淚液、03.養眼不分年齡 共用 ----- */
.indexBlock.b1,
.indexBlock.b2 {
    width: 100%;
}

    .indexBlock.b1 dl,
    .indexBlock.b2 dl {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .indexBlock.b1 dt,
    .indexBlock.b2 dt {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0;
        transition: .9s;
    }

    .indexBlock.b1 dd,
    .indexBlock.b2 dd {
        text-align: left;
    }

    .indexBlock.b1 b,
    .indexBlock.b2 b {
        display: block;
        opacity: 0;
        transition: .9s;
    }

    .indexBlock.b1 span,
    .indexBlock.b2 span {
        display: block;
    }

    .indexBlock.b1 img,
    .indexBlock.b2 img {
        width: 100%;
    }

    .indexBlock.b1 a,
    .indexBlock.b2 a {
        font-size: var(--FSizeXXL);
        color: #222;
        display: flex;
        align-items: center;
        transition: .9s;
        animation: floatAnimation 3s ease-in-out infinite;
    }

        .indexBlock.b1 a::after,
        .indexBlock.b2 a::after {
            color: #FFF;
            font-size: 30px;
            padding: 0px 8px;
            border-radius: 99px;
            margin-left: 10px;
            transition: .9s;
        }

.indexBlock .mask {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ----- 02.全家人的人工淚液 ----- */
.indexBlock.b1 {
    position: relative;
    z-index: 2;
}

    .indexBlock.b1 dl {
        background-color: #f5f5f5;
        padding-top: calc(var(--kvh) * 0.1706);
        height: calc(var(--kvh) * 0.26);
    }

    .indexBlock.b1 dt {
        width: calc(var(--kvh) * 0.323);
        height: calc(var(--manh01) * 0.97);
        background-image: url(../Images/index_blick1-2.png);
    }

    .indexBlock.b1 dd {
    }

        .indexBlock.b1 dd b {
            width: calc(var(--kvh) * 0.311);
        }

    .indexBlock.b1 span {
    }

    .indexBlock.b1 a {
        justify-content: flex-end;
    }

        .indexBlock.b1 a:hover {
            color: var(--pri02);
        }

        .indexBlock.b1 a::after {
            background-color: var(--pri07);
        }

        .indexBlock.b1 a:hover::after {
            background-color: var(--pri02);
        }

    .indexBlock.b1 .picBg01 {
        left: -200px;
        bottom: 0;
        z-index: 5;
        margin: 0 0 0 0;
    }

/* ----- 03.養眼不分年齡 ----- */
.indexBlock.b2 {
    height: calc(var(--kvh) * 0.575);
    position: relative;
    z-index: 1;
    background-image: url(../Images/OPTIVEKV網頁調整.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* ----- 20251212圖片點擊跳連結 ----- */
.fullLink {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    z-index: 10;
}
/* ----- 20251212圖片點擊跳連結 結束 ----- */
.indexBlock.b2 dl {
    padding-top: var(--maskh);
}

.indexBlock.b2 dt {
    width: calc(var(--kvh) * 0.386);
    height: calc(var(--manh02) * 1.16);
    background-image: url(../Images/index_blick2-1.png);
}

.indexBlock.b2 dd {
    margin-top: -185px;
}

    .indexBlock.b2 dd b {
        width: calc(var(--kvh) * 0.249);
        height: calc(var(--blockT02) * 0.644);
    }

.indexBlock.b2 span {
}

.indexBlock.b2 a {
    color: #FFF;
    margin-top: 20px;
}

    .indexBlock.b2 a::after {
        background-color: var(--pri02);
    }

    .indexBlock.b2 a:hover {
        color: #222;
    }

        .indexBlock.b2 a:hover::after {
            background-color: var(--pri01);
        }

.indexBlock.b2 .mask {
    position: absolute;
}

.indexBlock.b2 .top.mask {
    background-image: url(../Images/indexMask01.svg);
    width: 100%;
    height: calc(var(--kvh) * 0.125);
    top: 0;
}

.indexBlock.b2 .bottom.mask {
    background-image: url(../Images/indexMask02.svg);
    width: 100%;
    height: calc(var(--kvh) * 0.113);
    bottom: 0;
}

.indexBlock.b2 .note {
    width: calc(var(--kvh) * 0.25);
    position: absolute;
    top: calc(var(--kvh) * 0.428);
    left: 50%;
    margin-left: calc(var(--kvh) * -0.32);
}

.indexBlock.b2 .picBg01.b1 {
    width: calc(var(--kvh) * 0.449);
    height: calc(var(--circleB01) * 1.012);
    right: -353px;
    top: 60px;
    transform: rotateY(180deg);
}

.indexBlock.b2 .picBg01.b2 {
    left: -257px;
    bottom: 20px;
}

/* ----- 04.醫師保健室 ----- */
.indexBlock.b3 {
    position: relative;
    z-index: 2;
    background-color: #f5f5f5;
}

    .indexBlock.b3 h1 {
        width: 100%;
        text-align: center;
        position: absolute;
        top: -80px;
    }

    .indexBlock.b3 .title {
        width: calc(var(--kvh) * 0.091);
        display: block;
        margin: 0 auto;
    }

    .indexBlock.b3 .mask {
        background-image: url(../Images/indexMask02.svg);
        width: 100%;
        height: calc(var(--kvh) * 0.115);
    }

    .indexBlock.b3 .text {
        width: 100%;
        overflow: hidden;
    }

    .indexBlock.b3 ul {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        height: calc(var(--kvh) * 0.328);
        justify-content: space-between;
    }

    .indexBlock.b3 li {
        position: relative;
        width: 50%;
        align-items: flex-start;
    }

        .indexBlock.b3 li:first-child {
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: -10px;
            opacity: 0;
            transition: .8s;
        }

        .indexBlock.b3 li:last-child {
            display: flex;
            align-items: center;
            margin-right: -10px;
            opacity: 0;
            transition: .9s;
        }

        .indexBlock.b3 li span:last-child {
            margin-top: 20px;
        }

        .indexBlock.b3 li .UI {
            display: inline-block;
            margin-right: 5px;
            width: 30px;
            text-align: center;
        }

            .indexBlock.b3 li .UI:before {
                font-size: 25px;
            }

        .indexBlock.b3 li span {
            font-size: var(--FSizeM);
            display: block;
        }

    .indexBlock.b3 b {
        width: calc(var(--kvh) * 0.4);
        height: calc(var(--eyew) * 0.652);
        display: block;
        position: absolute;
        z-index: 0;
    }

    .indexBlock.b3 i {
        width: calc(var(--kvh) * 0.226);
        height: calc(var(--peoplew) * 1.817);
        display: block;
        position: absolute;
        z-index: 2;
        right: -150px;
        top: 30px;
    }

    .indexBlock.b3 img {
        width: 100%;
        max-width: 100%;
    }

    .indexBlock.b3 a {
        min-width: 30%;
        padding: 8px 40px;
        margin-bottom: 5px;
        font-size: var(--FSizeS);
        font-weight: 600;
        background-color: var(--pri07);
        display: inline-block;
    }

        .indexBlock.b3 a.b2 {
            display: flex;
        }

        .indexBlock.b3 a .pic {
            display: inline-block;
            position: relative;
            width: var(--ah);
            height: var(--ah);
            margin-right: 5px;
        }

        .indexBlock.b3 a .p1,
        .indexBlock.b3 a .p2 {
            position: absolute;
            width: var(--ah);
            top: 0;
            left: 0;
            transition: .5s;
        }

        .indexBlock.b3 a .p1 {
            opacity: 1;
        }

        .indexBlock.b3 a .p2 {
            opacity: 0;
        }

        .indexBlock.b3 a:hover .p1 {
            opacity: 0;
        }

        .indexBlock.b3 a:hover .p2 {
            opacity: 1;
        }

        .indexBlock.b3 a .font {
            display: inline-block;
        }

        .indexBlock.b3 a img {
            height: var(--ah);
        }

        .indexBlock.b3 a .font {
            display: inline-block;
        }

        .indexBlock.b3 a:hover {
            background-color: var(--pri02);
        }

        .indexBlock.b3 a::before {
            margin-right: 5px;
            font-size: 25px;
        }

/* ----- 05.QA ----- */
.indexBlock.b4 {
    position: relative;
}

    .indexBlock.b4 .detail {
        display: flex;
        justify-content: space-around;
        margin-top: calc(var(--kvh) * 0.089);
    }

    .indexBlock.b4 .title li {
    }

        .indexBlock.b4 .title li:first-child {
            font-size: 50px;
            font-weight: 400;
            line-height: 50px;
        }

        .indexBlock.b4 .title li:last-child {
            font-size: var(--FSizeM);
            font-weight: 300;
            margin-top: 10px;
        }

    .indexBlock.b4 .qaBox {
        width: calc(var(--kvh) * 0.648);
    }

    .indexBlock.b4 dl {
        margin-bottom: 10px;
        transition: .5s;
    }

    .indexBlock.b4 dt {
        font-size: var(--FSizeM);
        line-height: calc(var(--FSizeM) + 5px );
        display: flex;
        padding: 20px 55px 20px 100px;
        border-radius: 20px;
        align-items: flex-start;
        position: relative;
        transition: .5s;
    }

        .indexBlock.b4 dt:hover {
            cursor: pointer;
        }

        .indexBlock.b4 dt::after {
            content: "arrow_drop_down";
            font-size: 40px;
            position: absolute;
            right: 15px;
        }

    .indexBlock.b4 dl.show dt:hover::after {
        transform: rotate(180deg);
    }

    .indexBlock.b4 dl:nth-child(odd) dt {
        background-color: #CCEDFA;
    }

    .indexBlock.b4 dl:nth-child(even) dt {
        background-color: #E7F5B1;
    }

    .indexBlock.b4 dl:nth-child(odd) dt:hover {
        background-color: var(--pri07);
        color: #FFF;
    }

    .indexBlock.b4 dl:nth-child(even) dt:hover {
        background-color: var(--pri02);
        color: #FFF;
    }

    .indexBlock.b4 dd {
        padding: 20px;
        display: none;
    }

    .indexBlock.b4 dl.show dd {
        display: block;
    }

    .indexBlock.b4 b {
        margin-right: 5px;
        position: relative;
    }

    .indexBlock.b4 img {
    }

    .indexBlock.b4 b img {
        position: absolute;
        top: 50%;
        left: 0;
        margin-left: -55px;
        transition: .9s;
    }

    .indexBlock.b4 img.picUsually {
        opacity: 1;
    }

    .indexBlock.b4 img.picAcross {
        opacity: 0;
    }

    .indexBlock.b4 dt:hover img.picUsually {
        opacity: 0;
    }

    .indexBlock.b4 dt:hover img.picAcross {
        opacity: 1;
    }

    .indexBlock.b4 .qaBox ul {
        margin-left: 0px;
    }

    .indexBlock.b4 .qaBox ol {
        margin-left: 49px;
        margin-top: 10px;
    }

    .indexBlock.b4 .qaBox li {
        color: #525252;
        margin-bottom: 3px;
    }

    .indexBlock.b4 .qaBox ol {
    }

        .indexBlock.b4 .qaBox ol li {
            list-style-type: decimal-leading-zero;
        }

    .indexBlock.b4 .qaBox ul li {
        list-style-type: none;
        padding-left: 10px;
    }

        .indexBlock.b4 .qaBox ul li:before {
            content: " ";
            width: 5px;
            height: 5px;
            background-color: #525252;
            border-radius: 100px;
            margin: -5px 3px 0 -5px;
        }

    .indexBlock.b4 .picBg02 {
        bottom: -240px;
        left: -85px;
    }

/* ----- 06.經銷據點 ----- */
.indexBlock.b5 {
    padding-top: 300px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

    .indexBlock.b5::before {
        content: " ";
        background-image: url(../Images/indexSell-bg.svg);
        width: 4800px;
        height: 2515px;
        display: inline-block;
        position: absolute;
        z-index: -1;
        top: 50px;
        left: 50%;
        margin: 0 0 0 -2400px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .indexBlock.b5 h1 {
        text-align: center;
        margin-top: -155px;
    }

    .indexBlock.b5 .detail {
        background-color: #F5F5F5;
        padding: 0px 0 10px 0;
        display: table;
        margin: 0 auto;
        max-width: 1400px;
        width: 100%;
    }

    .indexBlock.b5 .sell {
        max-width: 1400px;
        margin: 0 auto;
        font-size: var(--FSizeM);
        text-align: center;
    }

        .indexBlock.b5 .sell li {
            padding: 0;
            width: auto;
            margin: 0 auto;
            position: relative;
        }

    .indexBlock.b5 span {
        display: inline-block;
        margin: 0 10px;
    }

    .indexBlock.b5 select {
        width: 100%;
        font-size: var(--FSizeM);
        background-color: #FFF;
        border: solid 1px #CCC;
        padding: 10px 30px 10px 10px;
    }

    .indexBlock.b5 .w20 {
        width: 17%;
    }

    .indexBlock.b5 .w50 {
        width: 50%;
    }

    .indexBlock.b5 .w15 {
        width: 13%;
    }

    .indexBlock.b5 .note {
        width: 100%;
        text-align: left;
        margin: 0 auto;
        color: #9E9E9E;
        font-style: normal;
        padding: 0;
        position: absolute;
        left: 50%;
        bottom: -35px;
        margin: 0px 0 0 -690px;
        display: inline-block;
        font-size: 18px;
    }

    .indexBlock.b5 b {
        display: block;
        font-weight: 300;
        margin: 50px 0;
    }

    .indexBlock.b5 .sell a {
        background-color: var(--pri07);
        padding: 15px 50px;
        color: #FFF;
        border-radius: 100px;
        transition: .9s;
    }

        .indexBlock.b5 .sell a:hover {
            background-color: var(--pri02);
        }

    .indexBlock.b5 .tableBox {
        max-width: 1400px;
        margin: 0 auto;
        display: none;
    }

        .indexBlock.b5 .tableBox.show {
            display: table;
            z-index: 9;
            position: relative;
        }

    .indexBlock.b5 ul:nth-child(odd) {
        background-color: #FAFAFA;
    }

    .indexBlock.b5 ul.tableHeader:nth-child(odd) {
        background-color: #222222;
        color: #FFF;
    }

    .indexBlock.b5 li {
        font-size: var(--FSizeM);
        font-weight: 300;
        padding: 15px;
    }
    /* ---------- 20230621-經銷據點修改 ---------- */
    .indexBlock.b5 .tableBox li:nth-child(1) {
        width: 210px;
    }

    .indexBlock.b5 .tableBox li:nth-child(3) {
        width: 210px;
    }
    /* ---------- 20230621-經銷據點修改 END ---------- */
    .indexBlock.b5 li a {
        color: var(--pri02);
    }

        .indexBlock.b5 li a:hover {
            color: var(--pri07);
        }

    .indexBlock.b5 .tableHeader li:first-child {
        border-radius: 10px 0 0 0;
    }

    .indexBlock.b5 .tableHeader li:last-child {
        border-radius: 0 10px 0 0;
    }

    .indexBlock.b5 .shop {
        max-width: 1400px;
        display: flex;
        padding: 20px 20px;
        border: solid 1px #ccc;
        margin: 50px auto 50px auto;
        justify-content: space-around;
        flex-wrap: wrap;
        flex-direction: row;
        display: none;
    }

        .indexBlock.b5 .shop.show {
            display: block;
            text-align: center;
        }

    .indexBlock.b5 i {
        width: 20%;
        margin: 0 20px;
        display: none;
    }

    .indexBlock.b5 img {
        mix-blend-mode: multiply;
        width: 100%;
    }

    .indexBlock.b5 i.show {
        display: inline-block;
    }

    .indexBlock.b5 .picBg01 {
        right: -245px;
        top: 55px;
        transform: rotateY(180deg);
    }

/* ----- index 動畫 ----- */
.indexBlock.b1,
.indexBlock.b2,
.indexBlock.b3,
.indexBlock.b4,
.indexBlock.b5 {
    opacity: 0;
    transition: .9s;
}

.s1 .indexBlock.b1,
.s1 .indexBlock.b2,
.s2 .indexBlock.b1,
.s2 .indexBlock.b2,
.s3 .indexBlock.b1,
.s3 .indexBlock.b2,
.s4 .indexBlock.b1,
.s4 .indexBlock.b2,
.s5 .indexBlock.b1,
.s5 .indexBlock.b2,
.s1 .indexBlock.b3,
.s2 .indexBlock.b3,
.s3 .indexBlock.b3,
.s4 .indexBlock.b3,
.s5 .indexBlock.b3,
.s4 .indexBlock.b4,
.s5 .indexBlock.b4,
.s5 .indexBlock.b5,
.s1 .indexBlock.b1 dt, /* 第二塊內ˊ  Vˋ~ */
.s2 .indexBlock.b1 dt,
.s3 .indexBlock.b1 dt,
.s4 .indexBlock.b1 dt,
.s5 .indexBlock.b1 dt,
.s1 .indexBlock.b1 dd b,
.s2 .indexBlock.b1 dd b,
.s3 .indexBlock.b1 dd b,
.s4 .indexBlock.b1 dd b,
.s5 .indexBlock.b1 dd b,
.s1 .indexBlock.b2 dd b,
.s2 .indexBlock.b2 dd b,
.s3 .indexBlock.b2 dd b,
.s4 .indexBlock.b2 dd b,
.s5 .indexBlock.b2 dd b,
.s2 .indexBlock.b2 dt,
.s2 .indexBlock.b2 dd b,
.s3 .indexBlock.b2 dt,
.s3 .indexBlock.b2 dd b,
.s4 .indexBlock.b2 dt,
.s4 .indexBlock.b2 dd b,
.s5 .indexBlock.b2 dt,
.s5 .indexBlock.b2 dd b {
    opacity: 1;
}

    .s3 .indexBlock.b3 li:last-child,
    .s3 .indexBlock.b3 li:first-child,
    .s4 .indexBlock.b3 li:last-child,
    .s4 .indexBlock.b3 li:first-child,
    .s5 .indexBlock.b3 li:last-child,
    .s5 .indexBlock.b3 li:first-child {
        opacity: 1;
        margin: 0;
    }

/* 按鈕循環動畫 */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============ about ============ */
.banner.about {
    background-image: url('../Images/關於艾伯維大圖(banner_about) -1600 x 750 px.jpg');
}

.aboutBox .container {
    max-width: 1000px;
    margin-bottom: 50px;
}

.aboutBox h2 {
    margin-bottom: 10px;
    font-size: var(--FSizeXXXL);
}

.aboutBox h5 {
    font-size: var(--FSizeM);
    color: var(--pri01);
    letter-spacing: 0;
    font-weight: 400;
    padding-left: 0;
}

    .aboutBox h5.caption {
        text-align: left;
        margin-top: 20px;
    }

.aboutBox p {
    font-size: var(--FSizeM);
    position: relative;
    line-height: 50px;
}

    .aboutBox p::after {
        content: " ";
        width: 100%;
        display: block;
        clear: both;
    }

.aboutBox b {
}

.aboutBox .floatL {
    float: left;
    margin: 15px 20px 0px 0;
}

.aboutBox .floatR {
    float: right;
    margin: 0 0 20px 20px;
}

.aboutBox span {
    position: absolute;
    left: 0;
    bottom: 0px;
    color: #BABABA;
}

    .aboutBox span a {
        color: #BABABA;
    }

        .aboutBox span a:hover {
            color: var(--pri01);
        }

        .aboutBox span a.wordLink:hover::after {
            background-color: var(--pri01);
        }

/* ============ 隱私、條款共用 ============ */
.mainContent.terms .container {
    max-width: 1400px;
    padding: 0 50px;
}

.terms .mainTitle {
    font-size: 25px;
    font-weight: 400;
    margin: 50px auto 10px auto;
    text-align: center;
}

.terms dl {
    display: block;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
    line-height: 35px;
    color: #5f5f5f;
}

    .terms dl dt {
        font-weight: 600;
        margin-top: 40px;
        font-size: 25px;
        color: var(--pri01);
    }

    .terms dl dd {
        margin-bottom: 20px;
        font-weight: 400;
        color: #5f5f5f;
        line-height: 30px;
    }

ol.style1 li {
    list-style-type: decimal;
    margin-left: 45px;
}

ul.style2 li {
    list-style-type: decimal-leading-zero;
    margin-left: 25px;
}

.terms span:before {
    content: " * ";
    display: inline-block;
    margin-right: 5px;
}

.terms .titleS {
    font-size: 15px;
    font-weight: 700;
    margin: 10px 0px;
    width: 100%;
    display: block;
    color: var(--pri01);
}

/* 地址樣式 設定 */
.address {
    margin: 15px 0;
}

    .address b {
        display: block;
        font-weight: 300;
    }

        .address b.title {
            margin-bottom: 15px;
        }
/* 錨點設定 */
dt.item {
    position: relative;
}

    dt.item hr {
        content: " ";
        position: absolute;
        top: -120px;
    }

/* ============ privacy 隱私權政策 ============ */
.mainContent .banner.privacy {
    background-image: url(../Images/banner_privacy.png);
}

.terms ul.style1 {
}

.terms ul.style2 {
    list-style-type: none;
}

    .terms ul.style2 li {
        list-style-type: none;
        margin-left: 0px;
        position: relative;
        padding-left: 10px;
    }

        .terms ul.style2 li::before {
            content: "●";
            margin: -2px 5px 0 0;
            font-size: 10px;
            color: #666;
            position: absolute;
            left: 0;
        }

/* ============ serviceTerms 服務條款 ============ */
.mainContent .banner.serviceTerms {
    background-image: url(../Images/banner_serviceTerms.png);
}

.mainContent.terms .linkList {
    padding: 20px 25px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-end;
    margin-top: 30px;
}

.mainContent.terms h6 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
}

/* ============ 聯絡我們 ============ */
.banner.contact {
    background-image: url('../Images/聯絡我們大圖(banner_contact) -1600 x 750 px.jpg');
}

.contactBox {
}

    .contactBox h3 {
        font-size: var(--FSizeL);
        text-align: center;
        margin-top: 50px;
    }

        .contactBox h3 span {
            display: block;
            font-size: var(--FSizeS);
            color: #222;
        }

    .contactBox ::placeholder {
        color: #707070;
    }

    .contactBox .formBox {
        margin-top: 50px;
    }

    /* ---------- 聯絡我們下拉使用 20230617-須更新 ---------- */
    .contactBox .tableBox {
    }

    .contactBox ul {
    }

    .contactBox li {
    }

    .contactBox .tableBox li {
        padding: 15px 10px;
    }

    .contactBox .notes {
        text-align: center;
        margin-bottom: 20px;
    }

    .contactBox .tableBox b {
        border: solid 1px #ccc;
        display: flex;
        padding: 12px;
        align-items: center;
    }

    .contactBox .item1 b {
        padding: 15px 25px;
    }

    .contactBox .tableBox span {
        padding: 0 5px 0 20px;
        position: relative;
        color: #707070;
        font-weight: 400;
        font-family: Roboto, Arial, Helvetica, 'LiHei Pro', 'Noto Sans TC', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;
    }

    .contactBox .hot span::after {
        content: "*";
        position: absolute;
    }

    .contactBox .item1 b.verify {
        justify-content: space-between;
        max-width: 50%;
        margin: 0 auto;
    }

    .contactBox .item2 b {
        justify-content: space-between;
    }

    .contactBox .item3 b {
        justify-content: flex-start;
    }

    .contactBox b span {
        font-weight: 400;
    }

    .contactBox b.w5 span {
        width: 108px;
        font-family: "微軟正黑體", "Microsoft JhengHei", 新細明體, sans-serif;
    }

    .contactBox b.w2 span {
        font-family: "微軟正黑體", "Microsoft JhengHei", 新細明體, sans-serif;
    }

    .contactBox b.w4 span {
        font-family: "微軟正黑體", "Microsoft JhengHei", 新細明體, sans-serif;
    }

    .contactBox input,
    .contactBox select,
    .contactBox textarea,
    .contactBox input[type=text] {
        border: none;
        font-family: 微軟正黑體, "Microsoft JhengHei", 新細明體, sans-serif;
        color: #5f5f5f;
    }

    .contactBox input {
        width: 70%;
    }

    .contactBox textarea {
        color: #222;
        min-height: 400px;
    }
    /*.contactBox select{color:#707070; font-weight:400; font-family: Roboto, Arial, Helvetica, 'LiHei Pro', 'Noto Sans TC', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;}*/
    .contactBox select {
        color: #707070;
        font-weight: 400;
        font-family: "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;
    }
    /* ---------- 聯絡我們下拉使用 20230617-須更新 END ---------- */

    .contactBox .item2 .i1 {
        width: 35%;
    }

    .contactBox .item2 .i2 {
        width: calc(100% - 30%);
    }

/* ============ 產品頁 ============ */
/* 共用 */
.product {
}

    .product.p1 {
    }

    .product.p2 {
    }

    .product.refresh .banner {
        background-image: url(../Images/banner_privacy.jpg);
    }

    .product.optive .banner {
        background-image: url(../Images/index_kv02-20241021.jpg);
    }

    .product .mainTitle {
        width: 100%;
        text-align: center;
        margin: 100px 0 30px 0;
        position: relative;
    }
        /*.product .mainTitle #tagId{position:absolute; top:calc(var(--titlePicH) * -1); left:0;}*/
        /* ////////// 20230619-更新 ////////// */
        .product .mainTitle #tagId {
            position: absolute;
            top: calc(var(--titlePicH) - 180px);
            left: 0;
        }
/* ////////// 20230619-更新 END ////////// */

/* --- 產品右邊 --- */
.pic {
    position: relative;
}

    .pic img {
        position: relative;
        z-index: 0;
        margin-right: -5px;
        width: 100%;
        opacity: 0;
        transition: .1s;
    }

    .pic.m {
    }

    .pic.pc {
    }

    .pic .hit {
        position: absolute;
        z-index: -1;
        margin-right: -20px;
        opacity: 0;
        transition: .9s;
    }

    .pic .h1 {
    }

    .pic .h2 {
    }

    .pic .icon {
        width: calc((var(--tagW) * 0.083) + 50px);
        position: absolute;
        bottom: calc(var(--tagW) * 0.49);
        right: calc(var(--tagW) * 0.138);
        margin-right: -10px;
        opacity: 0;
        transition: .8s;
        z-index: 8;
    }

/* refresh */
.pr1 .pic .h1 {
    top: calc(var(--tagW) * 0.08);
}

.pr1 .pic .h2 {
    top: calc(var(--tagW) * 0.2);
    left: calc((var(--tagW) * 0.019) * -1);
}

.pr2 .pic .h1 {
    top: calc(var(--tagW) * 0.09);
    left: calc(var(--tagW) * 0.0);
}

.pr2 .pic .h2 {
    top: calc(var(--tagW) * 0.2);
    left: calc((var(--tagW) * 0.03) * -1);
}

.pr3 .pic .h1 {
    top: calc(var(--tagW) * 0.13);
    left: calc(var(--tagW) * 0.04);
}

.pr3 .pic .h2 {
    top: calc(var(--tagW) * 0.2);
    left: calc((var(--tagW) * 0.04) * -1);
}

.pr4 .pic .h1 {
    top: calc(var(--tagW) * 0.08);
    left: calc(var(--tagW) * 0.01);
}

.pr4 .pic .h2 {
    top: calc(var(--tagW) * 0.2);
    left: calc((var(--tagW) * 0.04) * -1);
}

/* optive */
.optive.p4 .pic .icon,
.optive.p5 .pic .icon {
    bottom: calc(var(--tagW) * 0.48);
    right: calc(var(--tagW) * 0.133);
    -webkit-filter: drop-shadow(7px 5px 5px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(7px 5px 5px rgba(0, 0, 0, 0.3))
}

.po1 .pic .h1 {
    top: calc(var(--tagW) * 0.13);
    left: calc(var(--tagW) * 0.01);
}

.po2 .pic .h1 {
    top: calc(var(--tagW) * 0.13);
    left: calc(var(--tagW) * 0.01);
}

.po3 .pic .h1 {
    top: calc(var(--tagW) * 0.08);
    left: calc(var(--tagW) * 0.001);
}

.po4 .pic .h1 {
    top: calc(var(--tagW) * 0.08);
    left: calc(var(--tagW) * 0.001);
}

.po5 .pic .h1 {
    top: calc(var(--tagW) * 0.13);
    left: calc(var(--tagW) * 0.03);
}

/* --- 產品右邊 END --- */

/* --- 產品動畫 --- */
.s1 .pic .hit,
.s1 .pic .icon,
.s1 .pic img {
    margin: 0;
    opacity: 1;
}

/* --- 產品動畫 END --- */

/* 頁籤 */
.product .tagBox {
    display: flex;
    justify-content: space-around;
    padding-bottom: 10px;
    margin-bottom: 50px;
    border-bottom: solid 1px #000;
    margin-top: 80px;
    position: relative;
}

    .product .tagBox a {
        text-align: center;
        color: #222;
        position: relative;
    }

        .product .tagBox a.focus,
        .product .tagBox a:hover {
            color: var(--pri02);
        }

            .product .tagBox a.focus:after {
                content: " ";
                width: 100%;
                height: 2px;
                background-color: var(--pri02);
                position: absolute;
                bottom: -10px;
                left: 0;
            }

    .product .tagBox a {
        font-size: var(--FSizeM);
        line-height: calc(var(--FSizeM) + 5px);
    }

.product.refresh .tagBox a {
    width: 25%;
}

.product.Optive .tagBox a {
    width: 20%;
}

/* 右邊圖片 */
.goodsBox .pic {
    width: 55%;
}

/* 左邊文字 */
.product .goodsBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product .goodsWordBox {
    width: 40%;
    margin-right: 50px;
    opacity: 0;
    margin-left: -20px;
    transition: .9s;
}

.s1 .product .goodsWordBox {
    margin: 0;
    opacity: 1;
}

/* 左邊文字-標題 */
.goodsWordBox h6 {
    color: #193F87;
}

.optive .goodsWordBox h6 {
    margin-bottom: 20px;
}

.productOptive .goodsWordBox h6 {
    margin-bottom: 30px;
}

.goodsWordBox h6 b {
    font-size: var(--FSizeM);
    display: block;
    line-height: 33px;
}

.goodsWordBox h6 span {
    display: block;
    font-size: var(--FSizeM);
    color: #222;
    font-weight: 400;
    line-height: 30px;
}

/* 左邊文字-內文上 */
.goodsWordBox span.title {
    color: var(--pri01);
}

.goodsWordBox .groupBox {
    margin: 20px 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #CCC;
    color: #193F87;
}

    /* 樣式01 */
    .goodsWordBox .groupBox.style1 ul {
        display: flex;
        justify-content: space-around;
        align-items: baseline;
        margin-top: 10px;
    }

        .goodsWordBox .groupBox.style1 ul li {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 33.33%;
            border-left: solid 1px #CCC;
            height: 135px;
        }

            .goodsWordBox .groupBox.style1 ul li:first-child {
                border: none;
            }

        .goodsWordBox .groupBox.style1 ul span {
            font-size: 16px;
            line-height: 20px;
            color: #222;
            font-weight: 400;
        }

        .goodsWordBox .groupBox.style1 ul b {
        }
    /* 樣式02 */
    .goodsWordBox .groupBox.style2 ul {
        display: flex;
        align-items: center;
    }

    .goodsWordBox .groupBox.style2 li {
    }

    .goodsWordBox .groupBox.style2 span {
        display: block;
        width: 100%;
    }

    .goodsWordBox .groupBox.style2 b {
        display: block;
        width: 100%;
        font-weight: 400;
        color: #222;
    }

/* 左邊文字-內文下 */
.goodsWordBox ul.notes {
    border-bottom: solid 1px #000;
    padding-bottom: 10px;
    color: #222;
}

.goodsWordBox .notes li {
    margin-bottom: 10px;
    display: flex;
}

.goodsWordBox .notes b {
    min-width: 150px;
    display: inline-block;
    font-weight: 400;
    margin-right: 15px;
    padding-right: 10px;
    border-right: solid 1px #ccc;
}

.goodsWordBox .notes span {
}

/* 左邊文字-按鈕 */
.goodsWordBox .btnBox {
    margin: 30px auto 10px auto;
}

    .goodsWordBox .btnBox a {
        background-color: var(--pri02);
    }

        .goodsWordBox .btnBox a:hover {
            background-color: var(--pri01);
        }

/* 右邊圖片 */
.goodsPicBox .pic {
}

/* 產品-影片 */
.movieBox iframe, .movieBox video {
    height: calc(var(--WW) / 1.777);
}

/* 產品-步驟、實驗 */
.product h4 {
    width: 100%;
    text-align: center;
    margin: 30px 0;
    color: var(--pri02);
}

    .product h4 b {
        font-weight: 400;
        position: relative;
    }

        .product h4 b::before {
            content: "*";
            position: absolute;
            left: -10px;
            top: -5px;
            font-size: 25px;
        }

    .product h4 span {
        display: block;
        font-size: 16px;
        color: #000;
    }
/* 步驟 */
.product .stepBox {
    display: flex;
    margin-bottom: 35px;
}

    .product .stepBox ul {
    }

    .product .stepBox li {
        width: 16.66%;
    }

        .product .stepBox li img {
            width: 100%;
        }

    .product .stepBox b {
    }

    .product .stepBox span {
        font-size: 15px;
        line-height: 18px;
        display: block;
        padding: 0 20px 0 15px;
        position: relative;
    }

        .product .stepBox span::before {
            content: " ";
            background-color: #222;
            width: 5px;
            height: 5px;
            border-radius: 99px;
            position: absolute;
            left: 2px;
            top: 8px;
        }
/* 實驗 */
.product .researchBox {
    display: flex;
    justify-content: center;
    font-size: var(--FSizeXSS);
}

    .product .researchBox ul {
        position: relative;
        margin: 20px 30px 0px 30px;
    }

    .product .researchBox li {
        text-align: center;
        line-height: 20px;
    }

        .product .researchBox li.b {
            color: var(--pri02);
        }

    .product .researchBox span {
        position: absolute;
        top: -30px;
        display: block;
        text-align: right;
        width: 100%;
        color: #505050;
    }

.product .note {
    width: 750px;
    margin: 0 auto;
    font-size: var(--FSizeXSS);
    color: #A1A1A1;
}

/* ============ 遊戲頁面 ============ */
/* 共用 */
.mainContent.game {
    min-height: AUTO;
}

    .mainContent.game.cat {
        margin-top: 130px;
    }

.gameBox {
    background-color: #C3D601;
}

    .gameBox header {
        background-color: #FFF;
    }

    .gameBox footer {
        background-color: var(--pri02);
        margin-top: 0;
    }

    /*
.gameBox .block1,
.gameBox .block2,
.gameBox .block3{display:none;}
*/
    .gameBox .step { /*display:none;*/
        display: flex;
        margin: 129px auto 0 auto;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 0;
    }

    .gameBox .pic {
        margin-right: 50px;
        position: relative;
    }

        .gameBox .pic a {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: .5s;
            cursor: auto;
            z-index: -1;
        }

            .gameBox .pic a.open {
                opacity: 1;
                z-index: 5;
                cursor: pointer;
            }

        .gameBox .pic img {
            opacity: 1;
        }

    .gameBox .word {
        min-width: 300px;
    }

    .gameBox h6 {
        max-width: 200px;
        text-align: center;
        margin: 0 auto;
        color: var(--pri02);
        font-weight: 400;
        font-family: Roboto,'Noto Sans TC', 'LiHei Pro', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;
        font-weight: 500;
        margin: 0px auto 10px auto;
    }

        .gameBox h6 img,
        .gameBox dt img {
            width: 100%;
            opacity: 1;
        }

    .gameBox .word p {
        margin: 0;
        padding: 0;
        font-weight: 400;
        color: #222;
        text-align: center;
        margin: 0px auto 20px auto;
    }

    .gameBox .word dl {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin: 0px auto 20px auto;
        padding: 20px 0;
        border-top: solid 1px #222;
        border-bottom: solid 1px #222;
    }

    .gameBox .word dt {
        font-size: var(--FSizeXXXL);
        line-height: 44px;
        margin: 0 5px 0 5px;
        font-family: Roboto,'Noto Sans TC', 'LiHei Pro', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;
        font-weight: 500;
    }

    .gameBox .word dd {
        font-size: var(--FSizeS);
    }

    .gameBox .btnBox {
        margin: 0;
    }

        .gameBox .btnBox a {
            font-size: var(--FSizeM);
            padding: 5px 50px;
            font-weight: 600;
        }

/*
遊戲開始 = start
遊戲內容1、遊戲內容2 = game
遊戲結果 = result
*/
.mainContent.game.cat,
.mainContent.game.product {
    margin-bottom: 0;
}

    .mainContent.game.product .block2 {
        margin-bottom: 80px;
    }

.gameBox .start .block1,
.gameBox .game .block2,
.gameBox .result .block3 {
    display: block;
}

.gameBox .block1.step1 .s1, /* 遊戲開始 */
.gameBox .block1.step2 .s2, /* opps */
.gameBox .block2.step1 .s3, /* 遊戲內容 */
.gameBox .block2.step2 .s4, /* 遊戲內容 */
.gameBox .block3.step1 .s5, /* 幹的好 */
.gameBox .block3.step2 .s6, /* 問劵 */
.gameBox .block3.step3 .s7 {
    display: flex;
}
/* 折價劵 */

.gameBox .s1,
.gameBox .s2,
.gameBox .s3,
.gameBox .s4,
.gameBox .s5,
.gameBox .s6,
.gameBox .s7,
.cat .step,
.gameBox .whiteBox {
    margin-bottom: -36px;
}

.gameBox ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* 白底 */
.gameBox .whiteBox {
    align-items: flex-end;
}

    .gameBox .whiteBox h6 {
        width: 400px;
    }

    .gameBox .whiteBox .word {
        max-width: 450px;
    }

.gameBox .word img {
    width: 100%;
}

.gameBox .whiteBox dl {
    display: block;
    text-align: center;
    border: none;
    background-color: #FFF;
    padding: 30px 50px;
}

.gameBox .whiteBox dt {
    color: var(--pri02);
    font-weight: 400;
    margin: 10px 0;
}

.gameBox .whiteBox dd {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gameBox .whiteBox p {
}

.gameBox .whiteBox b {
    position: relative;
}

.gameBox .whiteBox span {
    font-size: 100px;
    line-height: 90px;
    display: flex;
    margin-bottom: 10px;
    font-family: Roboto,'Noto Sans TC', 'LiHei Pro', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;
    color: var(--pri01);
    margin-right: 10px;
    font-weight: 100;
}

.gameBox .whiteBox sub {
    font-size: 50px;
    margin-bottom: 0px;
    display: block;
    font-family: Roboto,'Noto Sans TC', 'LiHei Pro', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;
    color: var(--pri01);
    font-weight: 300;
}

.gameBox .whiteBox .btnBox {
}

/* QA */
.gameBox .qa {
}

    .gameBox .qa h6 {
        max-width: 400px;
    }

.gameBox .tableQA {
    display: table;
    width: 300px;
    margin-bottom: 20px;
}

.gameBox .qa ul {
    display: table-row;
}

.gameBox .qa li {
    display: table-cell;
    width: 50%;
    font-size: var(--FSizeS);
}

/* 注意事項 */
.matterBox {
    margin-top: 30px;
}

.cat .matterBox.open,
.step7 .matterBox.open {
    display: block;
}

.gameBox .step7 .matterBox,
.cat .step6 .matterBox,
.cat .step7 .matterBox {
    display: block;
}

.matterBox a.more {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #dfea72;
    color: #697208;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.matterBox .matter {
    display: none;
}

.matterBox {
    margin-bottom: -30px;
}

    .matterBox.open {
        margin-bottom: 30px;
    }

        .matterBox.open .matter {
            display: block;
        }

    .matterBox a.more::after {
        content: "add";
        background-color: #697208;
        color: #dfea72;
        border-radius: 99px;
        padding: 0 4px;
        margin-left: 10px;
    }

    .matterBox.open a.more::after {
        content: "remove";
        transition: .5s;
    }

    .matterBox a.more:hover {
        color: #dfea72;
        background-color: #697208;
    }

        .matterBox a.more:hover::after {
            color: #697208;
            background-color: #dfea72;
        }

.gameBox .matter {
    padding: 20px 50px 10px 50px;
    background-color: #eef3bb;
    color: #4f4f4f;
}

.gameBox ol {
}

    .gameBox ol li {
        margin: 5px 0;
        list-style-type: space-counter;
    }

    .gameBox ol b {
        font-weight: 400;
        margin-left: -20px;
    }

    .gameBox ol span {
        padding: 0 0 20px 20px;
        display: block;
        margin-left: -40px;
    }

.info-msg {
    color: black !important;
    padding: 0;
    font-weight: normal;
    font-size: var(--FSizeM);
    line-height: calc(var(--FSizeM) + 5px );
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
}

@media screen and (max-width: 1000px) {
    .info-msg {
        font-size: 18px !important;
        line-height: calc(var(--FSizeM) + 5px );
    }
}

.msg-block {
    width: 98% !important;
}

@media screen and (max-width: 1600px) {
    .msg-block {
        width: 93% !important;
    }
}

@media screen and (max-width: 1100px) {
    .msg-block {
        width: 90% !important;
    }
}