@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import 'reset.css';

.cookie-confirm {
    background-color: #D8D8D8;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

    .cookie-confirm .cc-btn-close {
        position: absolute;
        top: 5px;
        right: 20px;
    }

    .cookie-confirm .cc-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .cookie-confirm .cc-wrap .cc-txt .cc-link {
            font-size: inherit;
            color: #004DA1;
            text-decoration: underline;
            display: block;
        }

        .cookie-confirm .cc-wrap .cc-btn {
            width: 104px;
            text-align: center;
            height: 50px;
            font-size: 16px;
            color: #fff;
            line-height: 50px;
            background: -webkit-gradient(linear, left top, right top, from(rgb(72, 12, 135)), to(rgb(90, 46, 136)));
            background: linear-gradient(90deg, rgb(72, 12, 135) 0%, rgb(90, 46, 136) 100%);
            border-radius: 8px;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            text-decoration: none;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }

@media screen and (min-width: 769px) {
    .cookie-confirm .cc-wrap {
        width: 1200px;
        min-width: 1200px;
        margin: 0 auto;
        padding: 25px 0;
    }

        .cookie-confirm .cc-wrap .cc-txt {
            font-size: 20px;
            line-height: 26px;
        }

        .cookie-confirm .cc-wrap .cc-btn:hover {
            background: -webkit-gradient(linear, left top, right top, from(#704B97), to(#704B97));
            background: linear-gradient(90deg, #704B97 0%, #704B97 100%);
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }
}

@media screen and (max-width: 768px) {
    .cookie-confirm .cc-wrap {
        width: 100%;
        padding: 20px;
    }

        .cookie-confirm .cc-wrap .cc-txt {
            font-size: 16px;
            line-height: 22px;
        }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 80px;
    background: -webkit-gradient(linear, left top, right top, from(rgb(72, 12, 135)), to(rgb(90, 46, 136)));
    background: linear-gradient(90deg, rgb(72, 12, 135) 0%, rgb(90, 46, 136) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    header .rwd-pc-hide {
        display: none;
    }

    header .logo {
        height: 100%;
        display: block;
    }

        header .logo img {
            height: 100%;
            vertical-align: top;
        }

    header nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 25px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        header nav .block {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 25px;
            line-height: 20px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            header nav .block a {
                font-size: 16px;
                color: #fff;
                text-decoration: none;
            }

                header nav .block a img {
                    vertical-align: top;
                }

            header nav .block .search {
                border: 0;
                outline: 0;
                border-radius: 30px;
                padding: 10px 15px;
                width: 135px;
                height: 40px;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                font-size: 16px;
                line-height: 38px;
                background: #fff url(/godmax/Images/ic_search.svg) no-repeat center right 10px;
            }

            header nav .block.ico-home {
                width: 30px;
                -ms-flex-negative: 1;
                flex-shrink: 1;
            }

                header nav .block.ico-home a {
                    display: inline-block;
                    width: 100%;
                }

                header nav .block.ico-home img {
                    width: 100%;
                    vertical-align: top;
                }

            header nav .block.search-row {
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                header nav .block.search-row .back {
                    display: none;
                }

                header nav .block.search-row.open {
                    position: absolute;
                    top: 0;
                    right: 20px;
                    bottom: 0;
                    left: 30%;
                    margin: auto;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                    header nav .block.search-row.open .back {
                        display: block;
                    }

                    header nav .block.search-row.open .search {
                        width: 50%;
                    }

        header nav .user-point {
            position: relative;
            padding: 20px 0;
        }

            header nav .user-point .user-icon {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                width: 25px;
            }

                header nav .user-point .user-icon img {
                    width: 100%;
                }

            header nav .user-point .point-info {
                display: none;
                position: absolute;
                background-color: #fff;
                width: 265px;
                right: 0;
                top: 66px;
                border-radius: 5px;
                -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.05);
                box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.05);
                padding-bottom: 10px;
            }

                header nav .user-point .point-info p {
                    padding: 15px;
                    color: #454545;
                }

                header nav .user-point .point-info .row {
                    background-color: #F8F8F8;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    border-radius: 5px;
                    padding: 12px;
                    margin: 0 10px 5px;
                }

                    header nav .user-point .point-info .row .point-name .icon {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        gap: 5px;
                        color: #5A675C;
                    }

                        header nav .user-point .point-info .row .point-name .icon img {
                            width: 20px;
                        }

                    header nav .user-point .point-info .row .point-num {
                        color: #00B375;
                        font-weight: bold;
                        font-family: Arial black;
                    }

                    header nav .user-point .point-info .row:last-child .point-name .icon,
                    header nav .user-point .point-info .row:last-child .point-num {
                        color: #E4391F;
                    }

@media screen and (max-width: 768px) {
    header {
        height: 60px;
        padding: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        header .rwd-mb-hide {
            display: none !important;
        }

        header .rwd-pc-hide {
            display: inline-block;
        }

        header nav {
            gap: 10px;
        }

            header nav .block .search {
                display: none;
            }

            header nav .user-point {
                padding: 15px 0;
            }

            header nav .block.ico-home {
                width: 24px;
                position: relative;
                right: -10px;
            }

        header .search-row {
            height: 60px;
            background: -webkit-gradient(linear, left top, right top, from(rgb(72, 12, 135)), to(rgb(90, 46, 136)));
            background: linear-gradient(90deg, rgb(72, 12, 135) 0%, rgb(90, 46, 136) 100%);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 15px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 10px 15px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1;
            display: none;
            -ms-flex-negative: 1;
            flex-shrink: 1;
        }

            header .search-row .back {
                display: inline-block;
            }

            header .search-row .search {
                border: 0;
                outline: 0;
                border-radius: 30px;
                padding: 10px 15px;
                width: 100%;
                height: 40px;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                font-size: 16px;
                line-height: 38px;
                background: #fff url(/godmax/Images/ic_search.svg) no-repeat center right 10px;
            }
}

footer {
    background-color: #330464;
    position: relative;
}

    footer .wrap {
        width: 1200px;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        padding: 30px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }

        footer .wrap .row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            padding-bottom: 20px;
        }

            footer .wrap .row .logo {
                width: 186px;
            }

                footer .wrap .row .logo img {
                    width: 100%;
                    vertical-align: top;
                }

            footer .wrap .row .links {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                width: 400px;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
            }

                footer .wrap .row .links .col {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    gap: 50px;
                }

                footer .wrap .row .links dl {
                    line-height: 2;
                }

                    footer .wrap .row .links dl dt {
                        color: #FFC300;
                        font-weight: 500;
                    }

                    footer .wrap .row .links dl dd a {
                        color: #fff;
                        text-decoration: none;
                        font-size: 14px;
                    }

                        footer .wrap .row .links dl dd a:hover {
                            text-decoration: underline;
                        }

        footer .wrap .info-row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            border-top: 1px solid #704B97;
            padding-top: 20px;
        }

            footer .wrap .info-row p {
                font-size: 14px;
                color: #704B97;
            }

@media screen and (max-width: 768px) {
    footer {
        padding: 30px;
    }

        footer .wrap {
            padding: 0;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
            overflow: hidden;
        }

            footer .wrap .logo {
                display: none;
            }

            footer .wrap .row {
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                padding-bottom: 0;
            }

                footer .wrap .row .links {
                    display: -ms-grid;
                    display: grid;
                    -ms-grid-columns: 1fr 20px 0.5fr;
                    grid-template-columns: 1fr 0.5fr;
                    padding-bottom: 0;
                    gap: 20px;
                    padding: 0 0 20px 20px;
                    width: 100%;
                }

                    footer .wrap .row .links .col {
                        display: block;
                    }

                        footer .wrap .row .links .col dl {
                            line-height: 2;
                            margin-bottom: 20px;
                        }

            footer .wrap .info-row {
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                gap: 10px;
            }

        footer.page-toppup {
            padding-bottom: 210px;
        }
}

.go-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 2;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .go-top {
        bottom: 20px;
    }
}

.CM-blank-05 {
    width: 100%;
    height: 5px;
}

.CM-blank-1 {
    width: 100%;
    height: 10px;
}

.CM-blank-15 {
    width: 100%;
    height: 15px;
}

.CM-blank-2 {
    width: 100%;
    height: 20px;
}

.CM-blank-3 {
    width: 100%;
    height: 30px;
}

.CM-btn {
    text-decoration: none;
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 46px;
    line-height: 46px;
    text-align: center;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

    .CM-btn.btn-fill {
        background: -webkit-gradient(linear, left top, right top, from(rgb(72, 12, 135)), to(rgb(90, 46, 136)));
        background: linear-gradient(90deg, rgb(72, 12, 135) 0%, rgb(90, 46, 136) 100%);
        color: #fff;
    }

        .CM-btn.btn-fill:hover {
            background: -webkit-gradient(linear, left top, right top, from(#704B97), to(#704B97));
            background: linear-gradient(90deg, #704B97 0%, #704B97 100%);
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    .CM-btn.btn-border {
        background-color: #fff;
        border-color: #704B97;
        color: #704B97;
    }

.CM-link {
    color: #704B97;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .CM-link:hover {
        text-decoration: underline;
    }

    .CM-link.fc-blue {
        color: #0071B8;
    }

input::-webkit-input-placeholder {
    font-size: 14px;
    color: #808080;
}

input::-moz-placeholder {
    font-size: 14px;
    color: #808080;
}

input:-ms-input-placeholder {
    font-size: 14px;
    color: #808080;
}

input::-ms-input-placeholder {
    font-size: 14px;
    color: #808080;
}

input::placeholder {
    font-size: 14px;
    color: #808080;
}

.CM-input {
    position: relative;
}

    .CM-input input[type=text],
    .CM-input input[type=email],
    .CM-input input[type=tel],
    .CM-input input[type=password],
    .CM-input input[type=date],
    .CM-input input[type=number],
    .CM-input textarea {
        width: 100%;
        color: #454545;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        font-size: 14px;
        padding: 12px 20px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-input input[type=text]:focus,
        .CM-input input[type=email]:focus,
        .CM-input input[type=tel]:focus,
        .CM-input input[type=password]:focus,
        .CM-input input[type=date]:focus,
        .CM-input input[type=number]:focus,
        .CM-input textarea:focus {
            outline: 0;
            border: 1px solid #EFAD00;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

        .CM-input input[type=text]:disabled,
        .CM-input input[type=email]:disabled,
        .CM-input input[type=tel]:disabled,
        .CM-input input[type=password]:disabled,
        .CM-input input[type=date]:disabled,
        .CM-input input[type=number]:disabled,
        .CM-input textarea:disabled {
            background-color: #f4f4f4;
            color: #808080;
        }

    .CM-input input[type=date] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        padding: 11px 14px;
        height: 46px;
    }

    .CM-input input[type=number]::-webkit-outer-spin-button,
    .CM-input input[type=number]::-webkit-inner-spin-button {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: textfield;
        margin: 0;
    }

.CM-select {
    position: relative;
}

    .CM-select:after {
        content: "";
        position: absolute;
        background: url(/godmax/Images/ico-arrow-down.svg) no-repeat center center;
        width: 20px;
        height: 20px;
        background-size: 20px;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .CM-select select {
        width: 100%;
        color: #454545;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 0;
        border: 1px solid #dcdcdc;
        font-size: 16px;
        padding: 10px 35px 10px 10px;
        height: 45px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .CM-select select:focus {
            outline: 0;
            border-color: #EFAD00;
        }

.CM-copy-alert {
    position: fixed;
    height: 40px;
    width: 109px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #d9d9d9;
    background-color: #454545;
    border-radius: 6px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9999;
    display: none;
}

.CM-lightbox-bg {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1100;
    width: 0;
    margin: auto;
    overflow-x: hidden;
}

    .CM-lightbox-bg.open {
        width: 100%;
    }

.CM-lightbox {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1100;
    width: 0;
    margin: auto;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .CM-lightbox.open {
        width: 100%;
        height: 100%;
    }

    .CM-lightbox .wrap {
        position: relative;
        background-color: #fff;
        max-width: 400px;
        border-radius: 10px;
        width: 100%;
        padding: 20px;
        color: #454545;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .CM-lightbox .wrap .lb-header {
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }

            .CM-lightbox .wrap .lb-header .lb-title {
                font-size: 20px;
                font-weight: 500;
                color: #704B97;
            }

            .CM-lightbox .wrap .lb-header .btn-close {
                position: absolute;
                right: 0;
                top: 0;
                opacity: 0.7;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                .CM-lightbox .wrap .lb-header .btn-close:hover {
                    -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

        .CM-lightbox .wrap .btn-row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-top: 30px;
            gap: 10px;
        }

            .CM-lightbox .wrap .btn-row a {
                -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                flex-grow: 1;
            }

                .CM-lightbox .wrap .btn-row a.btn-cancal {
                    color: #808080;
                    text-align: center;
                    text-decoration: none;
                }

                    .CM-lightbox .wrap .btn-row a.btn-cancal:hover {
                        text-decoration: underline;
                    }

@media screen and (max-width: 768px) {
    .CM-lightbox .wrap {
        width: 95%;
    }
}

.CM-lightbox.pp-ps-info .wrap .lb-content .editor-scope {
    background-color: #FAF5FF;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 6px;
}

    .CM-lightbox.pp-ps-info .wrap .lb-content .editor-scope * {
        line-height: 1.6;
        font-size: 16px;
        color: #454545;
    }

.CM-lightbox.pp-ps-confirm .wrap .lb-content {
    line-height: 2;
    text-align: center;
    padding-top: 20px;
}

    .CM-lightbox.pp-ps-confirm .wrap .lb-content b {
        color: #704B97;
        font-weight: 500;
        font-size: 26px;
    }

    .CM-lightbox.pp-ps-confirm .wrap .lb-content p {
        color: #808080;
    }

.CM-lightbox.pp-user-info .wrap .lb-content .input-row .txt {
    font-weight: 500;
    margin-bottom: 10px;
    color: #454545;
}

    .CM-lightbox.pp-user-info .wrap .lb-content .input-row .txt span {
        color: red;
    }

@media screen and (max-width: 768px) {
    .CM-lightbox.pp-user-info.open .wrap {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        height: 100%;
    }

        .CM-lightbox.pp-user-info.open .wrap .btn-row {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
        }
}

.CM-lightbox.pp-ps-payment .wrap .btn-row {
    margin-top: 20px;
}

.CM-lightbox.pp-ps-payment .wrap .lb-content {
    max-height: 70vh;
    overflow-y: scroll;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .CM-lightbox.pp-ps-payment .wrap .lb-content .scope-title {
        color: #454545;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .CM-lightbox.pp-ps-payment .wrap .lb-content .info-scope {
        border-radius: 6px;
        background-color: #faf5ff;
        padding: 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .CM-lightbox.pp-ps-payment .wrap .lb-content .info-scope .total {
            color: #E4391f;
            font-weight: bold;
            font-size: 22px;
        }

    .CM-lightbox.pp-ps-payment .wrap .lb-content .flex-row, .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        line-height: 1.6;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }

        .CM-lightbox.pp-ps-payment .wrap .lb-content .flex-row .CM-select, .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .CM-select {
            width: 50%;
        }

    .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row {
        border: 1px solid #D9D9D9;
        border-radius: 10px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .CM-lightbox.pp-ps-payment .wrap .lb-content .pay-scope .grid-row {
        display: -ms-grid;
        display: grid;
        padding: 10px 30px;
        -ms-grid-columns: 40px 30px auto;
        grid-template-columns: 40px auto;
        gap: 30px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 1px solid #808080;
        border-radius: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        background-color: #fff;
    }

        .CM-lightbox.pp-ps-payment .wrap .lb-content .pay-scope .grid-row.active {
            border: 1px solid #efad00;
            background-color: #FAF5FF;
            -webkit-box-shadow: inset 0 0 0 1px #efad00;
            box-shadow: inset 0 0 0 1px #efad00;
        }

        .CM-lightbox.pp-ps-payment .wrap .lb-content .pay-scope .grid-row .amount {
            font-weight: bold;
        }

    .CM-lightbox.pp-ps-payment .wrap .lb-content .notice {
        color: #808080;
        line-height: 1.4;
        font-weight: 500;
        margin-top: 20px;
    }

.CM-lightbox.pp-ps-payment .wrap .payment-scope {
    display: block;
}

.CM-lightbox.pp-ps-payment .wrap .invoice-scope {
    display: none;
}

    .CM-lightbox.pp-ps-payment .wrap .invoice-scope .invoice-type {
        display: none;
    }

        .CM-lightbox.pp-ps-payment .wrap .invoice-scope .invoice-type.current {
            display: block;
        }

    .CM-lightbox.pp-ps-payment .wrap .invoice-scope .type-scope {
        position: relative;
    }

    .CM-lightbox.pp-ps-payment .wrap .invoice-scope .btn-row .CM-btn {
        width: 50%;
    }

@media screen and (max-width: 768px) {
    .CM-lightbox.pp-ps-payment.open .wrap {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        height: 100%;
    }

        .CM-lightbox.pp-ps-payment.open .wrap .lb-content {
            overflow-y: scroll;
            max-height: calc(100vh - 130px);
        }

        .CM-lightbox.pp-ps-payment.open .wrap .btn-row {
            position: fixed;
            margin-top: 0;
            padding: 15px 0;
            bottom: 0;
            left: 20px;
            right: 20px;
            background-color: #fff;
        }
}

body, body * {
    font-family: "Noto Sans TC", "microsoft jhenghei", Verdana, Arial, sans-serif;
}

html {
    min-height: 100%;
}

body {
    background-color: #fff;
}

    body * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    body.fixed {
        overflow: hidden;
    }

article {
    min-height: calc(100vh - 275px - 80px);
    margin-top: 100px;
}

    article .page-title {
        font-weight: bold;
        font-size: 26px;
        color: #704b97;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        article .page-title .CM-link {
            font-size: 14px;
            font-weight: normal;
        }

    article .news-tag {
        font-weight: 500;
    }

        article .news-tag.tag-notice {
            color: #EFAD00;
        }

        article .news-tag.tag-event {
            color: #D66BFA;
        }

        article .news-tag.tag-maintain {
            color: #00951B;
        }

    article .game-scope {
        text-decoration: none;
        border-radius: 10px;
        -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
        width: 185px;
        height: 248px;
    }

        article .game-scope .game-img {
            overflow: hidden;
            border-radius: 10px 10px 0 0;
            width: 185px;
            height: 185px;
            position: relative;
        }

            article .game-scope .game-img img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

            article .game-scope .game-img .discount {
                position: absolute;
                right: 4px;
                top: 4px;
                background-color: #efad00;
                color: #fff;
                -webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.25);
                box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.25);
                border-radius: 4px;
                padding: 3px 6px;
                font-weight: bold;
                z-index: 5;
            }

        article .game-scope:hover .game-img img {
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

        article .game-scope .game-name {
            padding: 8px 12px;
            font-weight: 500;
            color: #454545;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            height: 57px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

@media screen and (max-width: 830px) {
    article .game-scope {
        width: 113px;
        height: 169px;
    }

        article .game-scope .game-img {
            width: 113px;
            height: 113px;
        }

        article .game-scope .game-name {
            font-size: 14px;
            height: 50px;
        }
}

article .news-scope {
    text-decoration: none;
    border-radius: 10px;
    width: 384px;
    border: 1px solid #c2c2c2;
    background-color: #fff;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

    article .news-scope:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

    article .news-scope .news-img {
        overflow: hidden;
        border-radius: 10px 10px 0 0;
        width: 384px;
        height: 220px;
    }

        article .news-scope .news-img img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
        }

    article .news-scope dl {
        padding: 10px 20px;
    }

        article .news-scope dl dt {
            font-weight: bold;
            line-height: 23px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #454545;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }

        article .news-scope dl dd {
            color: #454545;
            font-size: 14px;
            line-height: 23px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
            word-wrap: break-word;
        }

        article .news-scope dl .date {
            color: #808080;
            margin-top: 10px;
        }

@media screen and (max-width: 768px) {
    article .news-scope {
        width: 315px;
    }

        article .news-scope:hover {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

        article .news-scope .news-img {
            width: 315px;
            height: 180px;
        }

        article .news-scope dl {
            padding: 10px;
        }
}

@media screen and (max-width: 768px) {
    article {
        min-height: calc(100vh - 403px - 60px);
        margin-top: 80px;
    }

        article .page-title {
            font-size: 20px;
            margin-bottom: 10px;
            padding: 0 20px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
}

article.page-toppup .wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

    article.page-toppup .wrap .vendor-scope {
        margin-top: 50px;
        margin-bottom: 20px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 110px 25px 1fr;
        grid-template-columns: 110px 1fr;
        -ms-grid-rows: 1fr 0px 1fr 0px 35px;
        grid-template-rows: 1fr 1fr 35px;
        gap: 0px 25px;
    }

        article.page-toppup .wrap .vendor-scope > *:nth-child(1) {
            -ms-grid-row: 1;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(2) {
            -ms-grid-row: 1;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(3) {
            -ms-grid-row: 3;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(4) {
            -ms-grid-row: 3;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(5) {
            -ms-grid-row: 5;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(6) {
            -ms-grid-row: 5;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .vendor-scope .img {
            -ms-grid-row: 1;
            -ms-grid-row-span: 2;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 1/1/3/2;
            height: 110px;
            height: 110px;
            border-radius: 10px;
            overflow: hidden;
        }

            article.page-toppup .wrap .vendor-scope .img img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
            }

        article.page-toppup .wrap .vendor-scope dl {
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
            grid-area: 1/2/2/3;
            margin-bottom: 10px;
        }

            article.page-toppup .wrap .vendor-scope dl dt {
                font-size: 30px;
                color: #454545;
                margin-bottom: 10px;
            }

            article.page-toppup .wrap .vendor-scope dl dd {
                color: #808080;
                font-size: 14px;
            }

        article.page-toppup .wrap .vendor-scope p {
            -ms-grid-row: 2;
            -ms-grid-row-span: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
            grid-area: 2/2/3/3;
            font-size: 18px;
            line-height: 1.6;
            color: #454545;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }

        article.page-toppup .wrap .vendor-scope .link-row {
            -ms-grid-row: 3;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 2;
            grid-area: 3/1/4/3;
            -ms-grid-row-align: end;
            align-self: end;
        }

            article.page-toppup .wrap .vendor-scope .link-row a {
                -webkit-box-pack: end;
                -ms-flex-pack: end;
                justify-content: flex-end;
                font-size: 14px;
            }

    article.page-toppup .wrap .toppup-scope {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto 15px 300px;
        grid-template-columns: auto 300px;
        -ms-grid-rows: auto 15px auto;
        grid-template-rows: repeat(2, auto);
        gap: 15px;
    }

        article.page-toppup .wrap .toppup-scope > *:nth-child(1) {
            -ms-grid-row: 1;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .toppup-scope > *:nth-child(2) {
            -ms-grid-row: 1;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .toppup-scope > *:nth-child(3) {
            -ms-grid-row: 3;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .toppup-scope > *:nth-child(4) {
            -ms-grid-row: 3;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .toppup-scope .ts-title {
            color: #704B97;
        }

        article.page-toppup .wrap .toppup-scope .tc-sub-title {
            color: #FF654F;
            font-size: 14px;
            line-height: 1.8;
            text-indent: 30px;
        }

        article.page-toppup .wrap .toppup-scope .toppup-section {
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 1/1/2/2;
        }

            article.page-toppup .wrap .toppup-scope .toppup-section .ts-title {
                font-weight: bold;
                font-size: 26px;
            }

            article.page-toppup .wrap .toppup-scope .toppup-section .product-scope {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                gap: 15px;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                margin-top: 20px;
                margin-bottom: 70px;
            }

                article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box {
                    width: 160px;
                    position: relative;
                    background-color: #fff;
                    display: -ms-grid;
                    display: grid;
                    -ms-grid-rows: 160px 35px 40px;
                    grid-template-rows: 160px 35px 40px;
                    border-radius: 10px;
                    border: 1px solid #c2c2c2;
                    -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.5);
                    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.5);
                    cursor: pointer;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box:not(.sold-out):hover {
                        -webkit-transform: translateY(-10px);
                        transform: translateY(-10px);
                        -webkit-transition: 0.3s linear;
                        transition: 0.3s linear;
                    }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box:not(.sold-out).active:after {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        -webkit-box-shadow: 0 0 0 4px #ffc300;
                        box-shadow: 0 0 0 4px #ffc300;
                        border-radius: 10px;
                    }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box.sold-out:after {
                        content: "";
                        border-radius: 10px;
                        position: absolute;
                        background-color: rgba(0, 0, 0, 0.7);
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                    }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box.sold-out:before {
                        content: "";
                        border-radius: 10px;
                        position: absolute;
                        top: 0;
                        left: 0;
                        background: url(/godmax/Images/sold-out.png) no-repeat top 50px center;
                        width: 100%;
                        height: 100%;
                        z-index: 1;
                    }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .tag {
                        position: absolute;
                        left: 0;
                        top: 0;
                    }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .info {
                        position: absolute;
                        background: url(/godmax/Images/ico-exclamation.svg) no-repeat center center/100%;
                        width: 20px;
                        height: 20px;
                        top: 8px;
                        right: 8px;
                    }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .img-scope {
                        background: url(/godmax/Images/iconBG.jpg) no-repeat center center/cover;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-orient: vertical;
                        -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                        flex-direction: column;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        padding: 10px 10px 0;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        border-radius: 10px 10px 0 0;
                    }

                        article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .img-scope .img {
                            width: 70px;
                            height: 70px;
                        }

                            article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .img-scope .img img {
                                width: 100%;
                                height: 100%;
                                -o-object-fit: cover;
                                object-fit: cover;
                            }

                        article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .img-scope .name {
                            color: #FFE177;
                            font-weight: bold;
                            line-height: 1.4;
                            text-align: center;
                            padding-top: 5px;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                            overflow: hidden;
                        }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box del {
                        padding: 0 10px;
                        -ms-flex-item-align: center;
                        -ms-grid-row-align: center;
                        align-self: center;
                        color: #454545;
                        font-size: 14px;
                        font-weight: 500;
                    }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .num-row {
                        -ms-flex-item-align: start;
                        -ms-grid-row-align: start;
                        align-self: start;
                        padding: 0 10px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                        justify-content: space-between;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                    }

                        article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .num-row .discount {
                            background-color: #EFAD00;
                            color: #fff;
                            font-weight: bold;
                            font-size: 14px;
                            height: 22px;
                            line-height: 22px;
                            padding: 0 12px;
                            border-radius: 4px;
                        }

                        article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .num-row .amount {
                            font-size: 19px;
                            font-weight: bold;
                            color: #e4391f;
                        }

                    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box.non-d {
                        -ms-grid-rows: 160px 75px;
                        grid-template-rows: 160px 75px;
                    }

                        article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box.non-d .num-row {
                            display: block;
                            -ms-flex-item-align: center;
                            -ms-grid-row-align: center;
                            align-self: center;
                        }

                            article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box.non-d .num-row .amount {
                                color: #454545;
                                text-align: center;
                            }

        article.page-toppup .wrap .toppup-scope .toppup-explanation {
            margin-bottom: 100px;
            -ms-grid-row: 2;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 2/1/3/2;
        }

            article.page-toppup .wrap .toppup-scope .toppup-explanation .ts-title {
                font-weight: bold;
                font-size: 26px;
            }

            article.page-toppup .wrap .toppup-scope .toppup-explanation .explanation-scope {
                margin: 20px 0;
            }

                article.page-toppup .wrap .toppup-scope .toppup-explanation .explanation-scope .ts-title {
                    margin-bottom: 20px;
                }

                article.page-toppup .wrap .toppup-scope .toppup-explanation .explanation-scope .editor-scope * {
                    line-height: 1.6;
                    color: #454545;
                    font-size: 16px;
                }

                article.page-toppup .wrap .toppup-scope .toppup-explanation .explanation-scope .editor-scope img, article.page-toppup .wrap .toppup-scope .toppup-explanation .explanation-scope .editor-scope iframe {
                    max-width: 100%;
                    margin: 20px 0;
                }

        article.page-toppup .wrap .toppup-scope .toppup-aside,
        article.page-toppup .wrap .toppup-scope .fixed-block {
            position: relative;
            -ms-grid-row: 1;
            -ms-grid-row-span: 2;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
            grid-area: 1/2/3/3;
        }

            article.page-toppup .wrap .toppup-scope .toppup-aside .ts-title,
            article.page-toppup .wrap .toppup-scope .fixed-block .ts-title {
                font-weight: 500;
                font-size: 22px;
            }

            article.page-toppup .wrap .toppup-scope .toppup-aside .sticky-box,
            article.page-toppup .wrap .toppup-scope .fixed-block .sticky-box {
                position: sticky;
                top: 100px;
            }

            article.page-toppup .wrap .toppup-scope .toppup-aside .block,
            article.page-toppup .wrap .toppup-scope .fixed-block .block {
                background-color: #FAF5FF;
                border-radius: 10px;
                padding: 20px 30px;
                margin-bottom: 15px;
            }

            article.page-toppup .wrap .toppup-scope .toppup-aside .input-row,
            article.page-toppup .wrap .toppup-scope .fixed-block .input-row {
                margin-bottom: 10px;
            }

                article.page-toppup .wrap .toppup-scope .toppup-aside .input-row .txt,
                article.page-toppup .wrap .toppup-scope .fixed-block .input-row .txt {
                    font-weight: 500;
                    margin-bottom: 10px;
                    color: #454545;
                }

                    article.page-toppup .wrap .toppup-scope .toppup-aside .input-row .txt span,
                    article.page-toppup .wrap .toppup-scope .fixed-block .input-row .txt span {
                        color: red;
                    }

            article.page-toppup .wrap .toppup-scope .toppup-aside .num-row,
            article.page-toppup .wrap .toppup-scope .fixed-block .num-row {
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 44px 5px auto 5px 44px;
                grid-template-columns: 44px auto 44px;
                gap: 5px;
            }

                article.page-toppup .wrap .toppup-scope .toppup-aside .num-row .CM-input input,
                article.page-toppup .wrap .toppup-scope .fixed-block .num-row .CM-input input {
                    text-align: center;
                }

                article.page-toppup .wrap .toppup-scope .toppup-aside .num-row a,
                article.page-toppup .wrap .toppup-scope .fixed-block .num-row a {
                    border: 1px solid #d9d9d9;
                    border-radius: 10px;
                }

                article.page-toppup .wrap .toppup-scope .toppup-aside .num-row .btn-minus,
                article.page-toppup .wrap .toppup-scope .fixed-block .num-row .btn-minus {
                    background: #fff url(/godmax/Images/ico-minus.svg) no-repeat center center;
                }

                article.page-toppup .wrap .toppup-scope .toppup-aside .num-row .btn-plus,
                article.page-toppup .wrap .toppup-scope .fixed-block .num-row .btn-plus {
                    background: #fff url(/godmax/Images/ico-plus.svg) no-repeat center center;
                }

            article.page-toppup .wrap .toppup-scope .toppup-aside .flex-row, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .toppup-aside .lb-content .invoice-row, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .toppup-aside .lb-content .invoice-row, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .toppup-aside .invoice-row, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .toppup-aside .invoice-row,
            article.page-toppup .wrap .toppup-scope .fixed-block .flex-row,
            article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .fixed-block .lb-content .invoice-row,
            .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .fixed-block .lb-content .invoice-row,
            article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .fixed-block .invoice-row,
            .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .fixed-block .invoice-row {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                padding-left: 20px;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }

                article.page-toppup .wrap .toppup-scope .toppup-aside .flex-row span, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .toppup-aside .lb-content .invoice-row span, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .toppup-aside .lb-content .invoice-row span, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .toppup-aside .invoice-row span, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .toppup-aside .invoice-row span,
                article.page-toppup .wrap .toppup-scope .fixed-block .flex-row span,
                article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .fixed-block .lb-content .invoice-row span,
                .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .fixed-block .lb-content .invoice-row span,
                article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .fixed-block .invoice-row span,
                .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .fixed-block .invoice-row span {
                    color: #454545;
                }

                article.page-toppup .wrap .toppup-scope .toppup-aside .flex-row .amount, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .toppup-aside .lb-content .invoice-row .amount, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .toppup-aside .lb-content .invoice-row .amount, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .toppup-aside .invoice-row .amount, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .toppup-aside .invoice-row .amount,
                article.page-toppup .wrap .toppup-scope .fixed-block .flex-row .amount,
                article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .fixed-block .lb-content .invoice-row .amount,
                .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .fixed-block .lb-content .invoice-row .amount,
                article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .fixed-block .invoice-row .amount,
                .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .fixed-block .invoice-row .amount {
                    color: #E4391F;
                    font-size: 20px;
                    font-weight: 600;
                }

                article.page-toppup .wrap .toppup-scope .toppup-aside .flex-row .discount, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .toppup-aside .lb-content .invoice-row .discount, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .toppup-aside .lb-content .invoice-row .discount, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .toppup-aside .invoice-row .discount, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .toppup-aside .invoice-row .discount,
                article.page-toppup .wrap .toppup-scope .fixed-block .flex-row .discount,
                article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .fixed-block .lb-content .invoice-row .discount,
                .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .fixed-block .lb-content .invoice-row .discount,
                article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .fixed-block .invoice-row .discount,
                .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .fixed-block .invoice-row .discount {
                    font-weight: 600;
                    color: #454545;
                }

        article.page-toppup .wrap .toppup-scope .CM-btn {
            width: 100%;
        }

        article.page-toppup .wrap .toppup-scope .fixed-block {
            display: none;
        }

@media screen and (max-width: 1250px) {
    article.page-toppup {
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1000px) {
    article.page-toppup .wrap .toppup-scope {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

        article.page-toppup .wrap .toppup-scope .toppup-section {
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 1/1/2/2;
        }

            article.page-toppup .wrap .toppup-scope .toppup-section .product-scope {
                margin-bottom: 20px;
            }

        article.page-toppup .wrap .toppup-scope .toppup-aside {
            -ms-grid-row: 2;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 2/1/3/2;
        }

        article.page-toppup .wrap .toppup-scope .toppup-explanation {
            -ms-grid-row: 3;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 3/1/4/2;
        }
}

@media screen and (max-width: 768px) {
    article.page-toppup .wrap .vendor-scope {
        -ms-grid-columns: 110px 15px auto;
        grid-template-columns: 110px auto;
        -ms-grid-rows: 110px 10px auto 10px auto;
        grid-template-rows: 110px auto auto;
        gap: 10px 15px;
    }

        article.page-toppup .wrap .vendor-scope > *:nth-child(1) {
            -ms-grid-row: 1;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(2) {
            -ms-grid-row: 1;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(3) {
            -ms-grid-row: 3;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(4) {
            -ms-grid-row: 3;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(5) {
            -ms-grid-row: 5;
            -ms-grid-column: 1;
        }

        article.page-toppup .wrap .vendor-scope > *:nth-child(6) {
            -ms-grid-row: 5;
            -ms-grid-column: 3;
        }

        article.page-toppup .wrap .vendor-scope .img {
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
            grid-area: 1/1/2/2;
        }

        article.page-toppup .wrap .vendor-scope dl {
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
            grid-area: 1/2/2/3;
        }

            article.page-toppup .wrap .vendor-scope dl dt {
                font-size: 20px;
            }

        article.page-toppup .wrap .vendor-scope p {
            -ms-grid-row: 2;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 2;
            grid-area: 2/1/3/3;
            font-size: 16px;
            -webkit-line-clamp: unset;
        }

        article.page-toppup .wrap .vendor-scope .link-row {
            -ms-grid-row: 3;
            -ms-grid-row-span: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 2;
            grid-area: 3/1/4/3;
        }

    article.page-toppup .wrap .toppup-scope .toppup-section .product-scope {
        margin-top: 10px;
        gap: 10px;
    }

        article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            max-width: 48%;
        }

            article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box .img-scope .name {
                font-size: 14px;
            }

            article.page-toppup .wrap .toppup-scope .toppup-section .product-scope .ps-box:hover {
                -webkit-transform: translateY(0) !important;
                transform: translateY(0) !important;
            }

    article.page-toppup .wrap .toppup-scope .toppup-section .ts-title {
        font-size: 20px;
    }

    article.page-toppup .wrap .toppup-scope .toppup-section .tc-sub-title {
        text-indent: 25px;
    }

    article.page-toppup .wrap .toppup-scope .toppup-explanation .ts-title {
        font-size: 22px;
    }

    article.page-toppup .wrap .toppup-scope .sticky-box {
        display: none;
    }

    article.page-toppup .wrap .toppup-scope .fixed-block {
        position: fixed;
        display: block;
        background-color: #FAF5FF;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 5;
    }

        article.page-toppup .wrap .toppup-scope .fixed-block .ts-title {
            color: #704B97;
            font-weight: 500;
            font-size: 22px;
        }

        article.page-toppup .wrap .toppup-scope .fixed-block .grid-row {
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: 1fr 20px 1fr;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        article.page-toppup .wrap .toppup-scope .fixed-block .flex-row, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .toppup-scope .fixed-block .lb-content .invoice-row, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .toppup-scope .fixed-block .lb-content .invoice-row, article.page-toppup .CM-lightbox.pp-ps-payment .wrap .lb-content .toppup-scope .fixed-block .invoice-row, .CM-lightbox.pp-ps-payment article.page-toppup .wrap .lb-content .toppup-scope .fixed-block .invoice-row {
            padding-left: 0;
        }
}

article.page-history .wrap {
    width: 1200px;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

    article.page-history .wrap .tab-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid #704B97;
    }

        article.page-history .wrap .tab-list li {
            padding: 17px 40px;
            cursor: pointer;
            text-align: center;
            font-weight: 500;
            color: #808080;
            font-size: 18px;
        }

            article.page-history .wrap .tab-list li:hover, article.page-history .wrap .tab-list li.active {
                border-bottom: 3px solid #704B97;
                color: #704B97;
                font-size: 20px;
            }

    article.page-history .wrap .tab-content {
        position: relative;
        padding-bottom: 100px;
    }

        article.page-history .wrap .tab-content .tc-box {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            opacity: 0;
            display: none;
            margin-top: 20px;
            border: 1px solid #F2F2F2;
        }

            article.page-history .wrap .tab-content .tc-box .flex-row, article.page-history .CM-lightbox.pp-ps-payment .wrap .tab-content .tc-box .lb-content .invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .tab-content .tc-box .lb-content .invoice-row, article.page-history .CM-lightbox.pp-ps-payment .wrap .lb-content .tab-content .tc-box .invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .lb-content .tab-content .tc-box .invoice-row {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

                article.page-history .wrap .tab-content .tc-box .flex-row.jc-c, article.page-history .CM-lightbox.pp-ps-payment .wrap .tab-content .tc-box .lb-content .jc-c.invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .tab-content .tc-box .lb-content .jc-c.invoice-row, article.page-history .CM-lightbox.pp-ps-payment .wrap .lb-content .tab-content .tc-box .jc-c.invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .lb-content .tab-content .tc-box .jc-c.invoice-row {
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }

                article.page-history .wrap .tab-content .tc-box .flex-row.jc-sb, article.page-history .CM-lightbox.pp-ps-payment .wrap .tab-content .tc-box .lb-content .jc-sb.invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .tab-content .tc-box .lb-content .jc-sb.invoice-row, article.page-history .CM-lightbox.pp-ps-payment .wrap .lb-content .tab-content .tc-box .jc-sb.invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .lb-content .tab-content .tc-box .jc-sb.invoice-row {
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                }

            article.page-history .wrap .tab-content .tc-box.active {
                position: relative;
                z-index: 1;
                opacity: 1;
                display: block;
            }

            article.page-history .wrap .tab-content .tc-box table {
                color: #454545;
                font-size: 16px;
                width: 100%;
            }

                article.page-history .wrap .tab-content .tc-box table thead {
                    background: -webkit-gradient(linear, left top, right top, from(rgb(72, 12, 135)), to(rgb(90, 46, 136)));
                    background: linear-gradient(90deg, rgb(72, 12, 135) 0%, rgb(90, 46, 136) 100%);
                    font-weight: 500;
                    color: #fff;
                }

                article.page-history .wrap .tab-content .tc-box table th, article.page-history .wrap .tab-content .tc-box table td {
                    padding: 20px;
                    text-align: center;
                    vertical-align: middle;
                }

                    article.page-history .wrap .tab-content .tc-box table th .arrow, article.page-history .wrap .tab-content .tc-box table td .arrow {
                        display: block;
                    }

                        article.page-history .wrap .tab-content .tc-box table th .arrow img, article.page-history .wrap .tab-content .tc-box table td .arrow img {
                            -webkit-transition: 0.3s linear;
                            transition: 0.3s linear;
                        }

                        article.page-history .wrap .tab-content .tc-box table th .arrow.open img, article.page-history .wrap .tab-content .tc-box table td .arrow.open img {
                            -webkit-transition: 0.3s linear;
                            transition: 0.3s linear;
                            -webkit-transform: rotate(90deg);
                            transform: rotate(90deg);
                        }

                article.page-history .wrap .tab-content .tc-box table tbody > tr:not(.tr-info):hover {
                    background-color: #FFF7D9;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                article.page-history .wrap .tab-content .tc-box table tr {
                    border-bottom: 1px solid #F2F2F2;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                article.page-history .wrap .tab-content .tc-box table .tr-info {
                    -webkit-box-shadow: inset 0 3px 3px 0 #f2f2f2;
                    box-shadow: inset 0 3px 3px 0 #f2f2f2;
                    display: none;
                }

                    article.page-history .wrap .tab-content .tc-box table .tr-info.open {
                        display: table-row;
                    }

                    article.page-history .wrap .tab-content .tc-box table .tr-info tr {
                        border-bottom: none;
                    }

                    article.page-history .wrap .tab-content .tc-box table .tr-info .top-bd {
                        border-top: 1px solid #F2F2F2;
                    }

                    article.page-history .wrap .tab-content .tc-box table .tr-info td {
                        vertical-align: middle;
                        text-align: left;
                        line-height: 1.8;
                        padding: 20px 50px;
                    }

                    article.page-history .wrap .tab-content .tc-box table .tr-info .row {
                        display: -ms-grid;
                        display: grid;
                        -ms-grid-columns: 100px auto;
                        grid-template-columns: 100px auto;
                    }

            article.page-history .wrap .tab-content .tc-box .amount {
                font-weight: bold;
                color: #e4391f;
            }

    article.page-history .wrap .rwd-pc-hide {
        display: none;
    }

@media screen and (max-width: 768px) {
    article.page-history .wrap .tab-list li {
        padding: 12px 20px;
    }

        article.page-history .wrap .tab-list li.active {
            font-size: 18px;
        }

    article.page-history .wrap .rwd-mb-hide {
        display: none;
    }

    article.page-history .wrap .rwd-pc-hide {
        display: block;
    }

    article.page-history .wrap .tab-content .tc-box {
        margin-top: 0;
        border: unset;
    }

    article.page-history .wrap .product-block {
        border-top: 5px solid #F8F8F8;
    }

        article.page-history .wrap .product-block > .flex-row, article.page-history .CM-lightbox.pp-ps-payment .wrap .lb-content .product-block > .invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .lb-content .product-block > .invoice-row {
            padding: 15px 20px;
        }

            article.page-history .wrap .product-block > .flex-row .arrow, article.page-history .CM-lightbox.pp-ps-payment .wrap .lb-content .product-block > .invoice-row .arrow, .CM-lightbox.pp-ps-payment article.page-history .wrap .lb-content .product-block > .invoice-row .arrow {
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                article.page-history .wrap .product-block > .flex-row .arrow.open img, article.page-history .CM-lightbox.pp-ps-payment .wrap .lb-content .product-block > .invoice-row .arrow.open img, .CM-lightbox.pp-ps-payment article.page-history .wrap .lb-content .product-block > .invoice-row .arrow.open img {
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                    -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
                }

        article.page-history .wrap .product-block .block {
            line-height: 1.8;
        }

            article.page-history .wrap .product-block .block .row {
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 100px auto;
                grid-template-columns: 100px auto;
                color: #454545;
                font-weight: 500;
            }

                article.page-history .wrap .product-block .block .row span:last-child {
                    font-weight: normal;
                }

        article.page-history .wrap .product-block .tr-info {
            border-top: 1px solid #dcdcdc;
            padding: 15px 20px;
            display: none;
        }

            article.page-history .wrap .product-block .tr-info .flex-row, article.page-history .CM-lightbox.pp-ps-payment .wrap .product-block .tr-info .lb-content .invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .product-block .tr-info .lb-content .invoice-row, article.page-history .CM-lightbox.pp-ps-payment .wrap .lb-content .product-block .tr-info .invoice-row, .CM-lightbox.pp-ps-payment article.page-history .wrap .lb-content .product-block .tr-info .invoice-row {
                color: #454545;
                line-height: 1.8;
            }

            article.page-history .wrap .product-block .tr-info.open {
                display: block;
            }
}

article.page-index {
    margin-top: 80px;
    background: url(/godmax/Images/indexBG.jpg) no-repeat center top;
    overflow: hidden;
}

    article.page-index .rwd-pc-hide {
        display: none;
    }

    article.page-index .se-1 {
        width: 1200px;
        margin: 0 auto 40px;
        position: relative;
        padding-top: 40px;
    }

        article.page-index .se-1 .swiper {
            overflow: hidden;
            border-radius: 20px;
        }

            article.page-index .se-1 .swiper .arrow {
                position: absolute;
                width: 1254px;
                height: 54px;
                top: 0;
                bottom: 0;
                margin: auto;
                left: -22px;
            }

            article.page-index .se-1 .swiper .swiper-button-prev, article.page-index .se-1 .swiper .swiper-button-next {
                color: transparent;
                width: auto;
                height: auto;
                opacity: 0.8 !important;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                article.page-index .se-1 .swiper .swiper-button-prev:after, article.page-index .se-1 .swiper .swiper-button-next:after {
                    display: none;
                }

                article.page-index .se-1 .swiper .swiper-button-prev:hover, article.page-index .se-1 .swiper .swiper-button-next:hover {
                    opacity: 1 !important;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

            article.page-index .se-1 .swiper .swiper-button-next {
                right: 0;
            }

            article.page-index .se-1 .swiper .swiper-button-prev {
                left: 0;
            }

        article.page-index .se-1 .wrap {
            width: 1200px;
            max-width: 100%;
            margin: 30px auto 0;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

            article.page-index .se-1 .wrap .swiper-pagination {
                all: unset;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: end;
                -ms-flex-pack: end;
                justify-content: flex-end;
                gap: 10px;
            }

                article.page-index .se-1 .wrap .swiper-pagination * {
                    font-family: "Roboto";
                    font-weight: bold;
                }

                article.page-index .se-1 .wrap .swiper-pagination .current {
                    color: #704b97;
                }

                article.page-index .se-1 .wrap .swiper-pagination .total {
                    color: #b9b9b9;
                }

                article.page-index .se-1 .wrap .swiper-pagination .progress-bar {
                    width: 107px;
                    height: 4px;
                    border-radius: 5px;
                    background-color: #b9b9b9;
                    position: relative;
                    overflow: hidden;
                }

                    article.page-index .se-1 .wrap .swiper-pagination .progress-bar:after {
                        content: "";
                        position: absolute;
                        left: 0;
                        width: 0%;
                        top: 0;
                        height: 100%;
                        background-color: #704b97;
                        border-radius: 5px;
                    }

                article.page-index .se-1 .wrap .swiper-pagination .current.stage-1 ~ .progress-bar:after {
                    width: calc(33.3333333333% * 1);
                }

                article.page-index .se-1 .wrap .swiper-pagination .current.stage-2 ~ .progress-bar:after {
                    width: calc(33.3333333333% * 2);
                }

                article.page-index .se-1 .wrap .swiper-pagination .current.stage-3 ~ .progress-bar:after {
                    width: calc(33.3333333333% * 3);
                }

        article.page-index .se-1 .swiper-wrapper {
            width: 100%;
        }

            article.page-index .se-1 .swiper-wrapper .swiper-slide {
                width: 100%;
                border-radius: 20px;
                overflow: hidden;
            }

                article.page-index .se-1 .swiper-wrapper .swiper-slide img {
                    width: 100%;
                    height: 100%;
                    -o-object-fit: cover;
                    object-fit: cover;
                    vertical-align: top;
                }

    article.page-index .se-2 {
        margin-bottom: 40px;
    }

        article.page-index .se-2 .wrap {
            width: 1200px;
            max-width: 100%;
            margin: 0 auto;
        }

            article.page-index .se-2 .wrap .flex-scope {
                gap: 20px 18px;
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 185px 18px 185px 18px 185px 18px 185px 18px 185px 18px 185px;
                grid-template-columns: repeat(6, 185px);
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

    article.page-index .se-3 {
        margin-bottom: 40px;
    }

        article.page-index .se-3 .wrap {
            width: 1200px;
            max-width: 100%;
            margin: 0 auto;
        }

            article.page-index .se-3 .wrap .flex-scope {
                gap: 20px 18px;
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 185px 18px 185px 18px 185px 18px 185px 18px 185px 18px 185px;
                grid-template-columns: repeat(6, 185px);
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

    article.page-index .set-bg {
        background-color: #FAF5FF;
        padding: 60px 0 100px;
    }

    article.page-index .se-4 {
        margin-bottom: 40px;
    }

        article.page-index .se-4 .wrap {
            width: 1200px;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }

            article.page-index .se-4 .wrap .flex-scope {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                gap: 20px;
            }

    article.page-index .se-5 .wrap {
        width: 1200px;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }

        article.page-index .se-5 .wrap .flex-scope {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 20px;
        }

            article.page-index .se-5 .wrap .flex-scope .box {
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 124px 262px;
                grid-template-columns: 124px 262px;
                height: 150px;
                border-radius: 10px;
                background-color: #fff;
                overflow: hidden;
                -ms-flex-negative: 0;
                flex-shrink: 0;
            }

                article.page-index .se-5 .wrap .flex-scope .box .img {
                    background: -webkit-gradient(linear, left top, right top, from(rgb(72, 12, 135)), to(rgb(90, 46, 136)));
                    background: linear-gradient(90deg, rgb(72, 12, 135) 0%, rgb(90, 46, 136) 100%);
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }

                article.page-index .se-5 .wrap .flex-scope .box dl {
                    color: #454545;
                    padding: 0 20px;
                    -ms-flex-item-align: center;
                    -ms-grid-row-align: center;
                    align-self: center;
                }

                    article.page-index .se-5 .wrap .flex-scope .box dl dt {
                        font-size: 22px;
                        margin-bottom: 10px;
                    }

                    article.page-index .se-5 .wrap .flex-scope .box dl dd {
                        line-height: 1.6;
                    }

@media screen and (max-width: 1200px) {
    article.page-index .page-title {
        padding: 0 10px;
    }

    article.page-index .se-1 {
        padding: 40px 10px 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        margin: 0 auto 20px;
    }

        article.page-index .se-1 .swiper .arrow {
            width: 103%;
            left: -12px;
        }

        article.page-index .se-1 .wrap {
            margin: 20px auto 0;
        }

            article.page-index .se-1 .wrap .swiper-pagination {
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

    article.page-index .se-2 .wrap .flex-scope {
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -ms-grid-columns: (185px)[5];
        grid-template-columns: repeat(5, 185px);
    }

    article.page-index .se-3 .wrap .flex-scope {
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -ms-grid-columns: (185px)[5];
        grid-template-columns: repeat(5, 185px);
    }

    article.page-index .se-4 .flex-scope {
        overflow-x: scroll;
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    article.page-index .se-5 .wrap .flex-scope {
        overflow-x: scroll;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1020px) {
    article.page-index .se-2 .wrap .flex-scope {
        -ms-grid-columns: (185px)[4];
        grid-template-columns: repeat(4, 185px);
    }

    article.page-index .se-3 .wrap .flex-scope {
        -ms-grid-columns: (185px)[4];
        grid-template-columns: repeat(4, 185px);
    }
}

@media screen and (max-width: 830px) {
    article.page-index .se-2 .wrap .flex-scope {
        -ms-grid-columns: (113px)[5];
        grid-template-columns: repeat(5, 113px);
    }

    article.page-index .se-3 .wrap .flex-scope {
        -ms-grid-columns: (113px)[5];
        grid-template-columns: repeat(5, 113px);
    }
}

@media screen and (max-width: 650px) {
    article.page-index .se-2 .wrap .flex-scope {
        -ms-grid-columns: (113px)[4];
        grid-template-columns: repeat(4, 113px);
    }

    article.page-index .se-3 .wrap .flex-scope {
        -ms-grid-columns: (113px)[4];
        grid-template-columns: repeat(4, 113px);
    }
}

@media screen and (max-width: 550px) {
    article.page-index .se-2 .wrap .flex-scope {
        -ms-grid-columns: (113px)[3];
        grid-template-columns: repeat(3, 113px);
    }

    article.page-index .se-3 .wrap .flex-scope {
        -ms-grid-columns: (113px)[3];
        grid-template-columns: repeat(3, 113px);
    }
}

@media screen and (max-width: 768px) {
    article.page-index {
        margin-top: 60px;
    }

        article.page-index .se-1 {
            padding: 0;
            margin-bottom: 20px;
        }

            article.page-index .se-1 .swiper {
                border-radius: 0;
            }

                article.page-index .se-1 .swiper .arrow {
                    display: none;
                }

                article.page-index .se-1 .swiper .swiper-slide {
                    border-radius: 0;
                }

                article.page-index .se-1 .swiper .swiper-pagination-bullet {
                    width: 8px;
                    height: 8px;
                }

        article.page-index .se-2 {
            margin-bottom: 20px;
        }

            article.page-index .se-2 .wrap .flex-scope {
                gap: 16px;
            }

        article.page-index .set-bg {
            padding: 20px 0;
        }

        article.page-index .se-3 {
            margin-bottom: 20px;
        }

            article.page-index .se-3 .wrap .flex-scope {
                gap: 16px;
            }

        article.page-index .se-4 {
            margin-bottom: 20px;
        }

            article.page-index .se-4 .wrap .flex-scope {
                gap: 10px;
            }

        article.page-index .se-5 .wrap .flex-scope {
            gap: 10px;
        }

            article.page-index .se-5 .wrap .flex-scope .box {
                -ms-grid-columns: 75px 240px;
                grid-template-columns: 75px 240px;
            }

                article.page-index .se-5 .wrap .flex-scope .box .img {
                    padding: 0 10px;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                }

                    article.page-index .se-5 .wrap .flex-scope .box .img img {
                        width: 50px;
                    }
}

article.page-all .wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 80px;
}

    article.page-all .wrap .flex-scope {
        gap: 20px 18px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 185px 18px 185px 18px 185px 18px 185px 18px 185px 18px 185px;
        grid-template-columns: repeat(6, 185px);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

@media screen and (max-width: 1200px) {
    article.page-all .page-title {
        padding: 0 10px;
    }

    article.page-all .wrap .flex-scope {
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -ms-grid-columns: (185px)[5];
        grid-template-columns: repeat(5, 185px);
    }
}

@media screen and (max-width: 1020px) {
    article.page-all .wrap .flex-scope {
        -ms-grid-columns: (185px)[4];
        grid-template-columns: repeat(4, 185px);
    }
}

@media screen and (max-width: 830px) {
    article.page-all .wrap .flex-scope {
        -ms-grid-columns: (113px)[5];
        grid-template-columns: repeat(5, 113px);
    }
}

@media screen and (max-width: 650px) {
    article.page-all .wrap .flex-scope {
        -ms-grid-columns: (113px)[4];
        grid-template-columns: repeat(4, 113px);
    }
}

@media screen and (max-width: 550px) {
    article.page-all .wrap .flex-scope {
        -ms-grid-columns: (113px)[3];
        grid-template-columns: repeat(3, 113px);
    }
}

@media screen and (max-width: 768px) {
    article.page-all .wrap .flex-scope {
        gap: 16px;
    }
}

article.page-news-list .wrap {
    width: 1200px;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 80px;
}

    article.page-news-list .wrap .flex-scope {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: calc((100% - 40px) / 3) 20px calc((100% - 40px) / 3) 20px calc((100% - 40px) / 3);
        grid-template-columns: repeat(3, calc((100% - 40px) / 3));
        gap: 20px;
    }

@media screen and (max-width: 1220px) {
    article.page-news-list .page-title,
    article.page-news-list .flex-scope {
        padding: 0 10px;
    }

    article.page-news-list .news-scope {
        width: 100%;
    }

        article.page-news-list .news-scope .news-img {
            width: 100%;
        }
}

@media screen and (max-width: 900px) {
    article.page-news-list .wrap .flex-scope {
        -ms-grid-columns: (calc((100% - 20px) / 2))[2];
        grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    }
}

@media screen and (max-width: 600px) {
    article.page-news-list .wrap .flex-scope {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

article.page-news-content .wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 80px;
}

    article.page-news-content .wrap .breadcrumb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px;
        margin-bottom: 20px;
    }

        article.page-news-content .wrap .breadcrumb .CM-link {
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

        article.page-news-content .wrap .breadcrumb span {
            color: #454545;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }

    article.page-news-content .wrap .news-content {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto 35px 333px;
        grid-template-columns: auto 333px;
        gap: 35px;
    }

        article.page-news-content .wrap .news-content .news-section .news-title {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
            font-size: 25px;
            font-weight: 500;
            color: #454545;
            margin-bottom: 12px;
        }

        article.page-news-content .wrap .news-content .news-section .flex-row, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .news-content .news-section .lb-content .invoice-row, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .news-content .news-section .lb-content .invoice-row, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .lb-content .news-content .news-section .invoice-row, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .lb-content .news-content .news-section .invoice-row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding-bottom: 12px;
            border-bottom: 1px solid #dcdcdc;
            margin-bottom: 12px;
        }

            article.page-news-content .wrap .news-content .news-section .flex-row .date, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .news-content .news-section .lb-content .invoice-row .date, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .news-content .news-section .lb-content .invoice-row .date, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .lb-content .news-content .news-section .invoice-row .date, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .lb-content .news-content .news-section .invoice-row .date {
                color: #808080;
            }

            article.page-news-content .wrap .news-content .news-section .flex-row .link-scope, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .news-content .news-section .lb-content .invoice-row .link-scope, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .news-content .news-section .lb-content .invoice-row .link-scope, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .lb-content .news-content .news-section .invoice-row .link-scope, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .lb-content .news-content .news-section .invoice-row .link-scope {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 6px;
                color: #808080;
            }

                article.page-news-content .wrap .news-content .news-section .flex-row .link-scope a, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .news-content .news-section .lb-content .invoice-row .link-scope a, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .news-content .news-section .lb-content .invoice-row .link-scope a, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .lb-content .news-content .news-section .invoice-row .link-scope a, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .lb-content .news-content .news-section .invoice-row .link-scope a {
                    display: inline-block;
                    width: 30px;
                }

                    article.page-news-content .wrap .news-content .news-section .flex-row .link-scope a img, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .news-content .news-section .lb-content .invoice-row .link-scope a img, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .news-content .news-section .lb-content .invoice-row .link-scope a img, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .lb-content .news-content .news-section .invoice-row .link-scope a img, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .lb-content .news-content .news-section .invoice-row .link-scope a img {
                        vertical-align: top;
                        width: 100%;
                    }

        article.page-news-content .wrap .news-content .news-section .editor-scope * {
            line-height: 1.6;
            color: #454545;
            font-size: 16px;
        }

        article.page-news-content .wrap .news-content .news-section .editor-scope img, article.page-news-content .wrap .news-content .news-section .editor-scope iframe {
            max-width: 100%;
            margin: 20px 0;
        }

        article.page-news-content .wrap .news-content .news-aside {
            position: relative;
        }

            article.page-news-content .wrap .news-content .news-aside .sticky-box {
                position: sticky;
                top: 100px;
                background-color: #FAF5FF;
                border-radius: 10px;
                padding: 30px 20px;
            }

            article.page-news-content .wrap .news-content .news-aside .na-title {
                font-weight: 500;
                font-size: 22px;
                color: #704b97;
            }

            article.page-news-content .wrap .news-content .news-aside .grid-row {
                margin-top: 10px;
                display: -ms-grid;
                display: grid;
                border: 1px solid #c2c2c2;
                padding: 10px;
                -ms-grid-columns: 97px 10px auto;
                grid-template-columns: 97px auto;
                gap: 10px;
                border-radius: 10px;
                background-color: #fff;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                article.page-news-content .wrap .news-content .news-aside .grid-row:hover {
                    -webkit-transform: translateY(-3px);
                    transform: translateY(-3px);
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                article.page-news-content .wrap .news-content .news-aside .grid-row .img {
                    width: 100%;
                    height: 60px;
                    border-radius: 6px;
                    overflow: hidden;
                }

                    article.page-news-content .wrap .news-content .news-aside .grid-row .img img {
                        width: 100%;
                        height: 100%;
                        -o-object-fit: cover;
                        object-fit: cover;
                    }

                article.page-news-content .wrap .news-content .news-aside .grid-row a {
                    text-decoration: none;
                    color: #454545;
                    font-size: 14px;
                    line-height: 20px;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 4;
                    overflow: hidden;
                }

            article.page-news-content .wrap .news-content .news-aside .link-row {
                padding: 20px 0;
            }

                article.page-news-content .wrap .news-content .news-aside .link-row .CM-link {
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    font-size: 14px;
                }

@media screen and (max-width: 1220px) {
    article.page-news-content .breadcrumb,
    article.page-news-content .news-content {
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1000px) {
    article.page-news-content .wrap {
        margin-bottom: 0;
    }

        article.page-news-content .wrap .news-content {
            -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
            padding: 0;
        }

            article.page-news-content .wrap .news-content .news-section {
                padding: 0 10px;
            }

            article.page-news-content .wrap .news-content .news-aside .sticky-box {
                position: relative;
                top: unset;
                border-radius: 0;
            }
}

@media screen and (max-width: 768px) {
    article.page-news-content .wrap .news-content .news-section .news-title {
        font-size: 20px;
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }

    article.page-news-content .wrap .news-content .news-section .flex-row .date, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .news-content .news-section .lb-content .invoice-row .date, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .news-content .news-section .lb-content .invoice-row .date, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .lb-content .news-content .news-section .invoice-row .date, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .lb-content .news-content .news-section .invoice-row .date {
        font-size: 15px;
    }

    article.page-news-content .wrap .news-content .news-section .flex-row .link-scope a, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .news-content .news-section .lb-content .invoice-row .link-scope a, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .news-content .news-section .lb-content .invoice-row .link-scope a, article.page-news-content .CM-lightbox.pp-ps-payment .wrap .lb-content .news-content .news-section .invoice-row .link-scope a, .CM-lightbox.pp-ps-payment article.page-news-content .wrap .lb-content .news-content .news-section .invoice-row .link-scope a {
        width: 25px;
    }

    article.page-news-content .wrap .news-content .news-aside .grid-row:hover {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

article.page-error {
    margin-top: 80px;
    margin-bottom: 100px;
}

    article.page-error .flex-row, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
        height: 60vh;
    }

        article.page-error .flex-row .img, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .img, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .img {
            padding-left: 50px;
        }

        article.page-error .flex-row .txt, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .txt, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .txt {
            text-align: center;
            font-size: 18px;
            line-height: 1.8;
            color: #454545;
        }

        article.page-error .flex-row .CM-btn, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .CM-btn, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .CM-btn {
            width: 135px;
            margin-top: 50px;
        }

        article.page-error .flex-row .link-row, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .link-row, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .link-row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 5px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            article.page-error .flex-row .link-row a, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .link-row a, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .link-row a {
                display: inline-block;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                article.page-error .flex-row .link-row a:hover, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .link-row a:hover, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .link-row a:hover {
                    -webkit-transform: translateY(-3px);
                    transform: translateY(-3px);
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                article.page-error .flex-row .link-row a img, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .link-row a img, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .link-row a img {
                    vertical-align: top;
                }

@media screen and (max-width: 768px) {
    article.page-error .flex-row, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row {
        height: unset;
        padding: 0 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        article.page-error .flex-row .img, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .img, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .img {
            width: 270px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

            article.page-error .flex-row .img img, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .img img, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .img img {
                width: 100%;
            }

        article.page-error .flex-row .txt, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .txt, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .txt {
            font-size: 16px;
        }

        article.page-error .flex-row .link-row a:hover, article.page-error .CM-lightbox.pp-ps-payment .wrap .lb-content .invoice-row .link-row a:hover, .CM-lightbox.pp-ps-payment .wrap .lb-content article.page-error .invoice-row .link-row a:hover {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
}
