@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-color: #fb7400;
            border-radius: 8px;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            text-decoration: none;
        }

@media screen and (min-width: 769px) {
    .cookie-confirm .cc-wrap {
        width: 90%;
        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 {
            -webkit-filter: brightness(1.15);
            filter: brightness(1.15);
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }
}

@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;
        }
}

.CM-lh-1 {
    line-height: 1.2 !important;
}

.CM-lh-2 {
    line-height: 1.4 !important;
}

.CM-lh-3 {
    line-height: 1.6 !important;
}

.CM-fz-l {
    font-size: 18px !important;
}

.CM-fz-m {
    font-size: 16px !important;
}

.CM-fz-s {
    font-size: 14px !important;
}

.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-gray-hr {
    border-bottom: 1px solid #dcdcdc;
    height: 1px;
    width: 100%;
}

.CM-notice {
    line-height: 1.4;
}

    .CM-notice ol {
        margin-left: 20px;
    }

        .CM-notice ol li {
            list-style-type: decimal;
        }

    .CM-notice ul {
        margin-left: 20px;
    }

        .CM-notice ul li {
            list-style-type: disc;
        }

@media screen and (max-width: 768px) {
    .CM-notice {
        font-size: 14px;
    }
}

.CM-text-primary {
    color: #1e1e1e !important;
}

.CM-text-sec {
    color: #666 !important;
}

.CM-text-accent {
    color: #808080 !important;
}

.CM-text-red {
    color: #F55431 !important;
}

.CM-text-orange {
    color: #fb7400 !important;
}

.CM-text-green {
    color: #82B500 !important;
}

.CM-text-blue {
    color: #0071B8 !important;
}

.CM-link {
    color: #0071B8;
    font-size: 14px;
    line-height: 14px;
}

    .CM-link.link-black {
        color: #1e1e1e;
    }

    .CM-link.nl {
        text-decoration: none;
    }

        .CM-link.nl:hover {
            text-decoration: underline;
        }

.CM-text-l {
    text-align: left !important;
}

.CM-text-c {
    text-align: center !important;
}

.CM-text-r {
    text-align: right !important;
}

.CM-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.jc-s {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.jc-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.jc-e {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.jc-sa {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.jc-sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.jc-se {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.ai-s {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.ai-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ai-e {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.gap-1 {
    gap: 5px;
}

.gap-2 {
    gap: 10px;
}

.gap-3 {
    gap: 15px;
}

.grow-0 {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.CM-btn {
    text-decoration: none;
    border-radius: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 46px;
    line-height: 46px;
    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 img {
        height: 24px;
    }

    .CM-btn.btn-fill-white {
        background-color: #fff;
        border-color: #fff;
        color: #1e1e1e;
    }

    .CM-btn.btn-fill-orange {
        background-color: #fb7400;
        border-color: #fb7400;
        color: #fff;
    }

        .CM-btn.btn-fill-orange:hover {
            -webkit-filter: brightness(1.15);
            filter: brightness(1.15);
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    .CM-btn.btn-border-orange {
        background-color: #fff;
        border-color: #fb7400;
        color: #fb7400;
    }

        .CM-btn.btn-border-orange:hover {
            background-color: #fb7400;
            color: #fff;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    .CM-btn.btn-fill-green {
        background-color: #82b500;
        border-color: #82b500;
        color: #fff;
    }

        .CM-btn.btn-fill-green:hover {
            -webkit-filter: brightness(1.15);
            filter: brightness(1.15);
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    .CM-btn.btn-border-green {
        background-color: #fff;
        border-color: #82b500;
        color: #82b500;
    }

        .CM-btn.btn-border-green:hover {
            background-color: #82b500;
            color: #fff;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    .CM-btn.btn-fill-gray {
        background-color: #f4f4f4;
        border-color: #f4f4f4;
        color: #1e1e1e;
    }

    .CM-btn.btn-fill-darkgray {
        background-color: #808080;
        border-color: #808080;
        color: #fff;
    }

        .CM-btn.btn-fill-darkgray:hover {
            -webkit-filter: brightness(1.15);
            filter: brightness(1.15);
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    .CM-btn.disabled {
        background-color: #D9D9D9;
        border-color: #D9D9D9;
        color: #808080;
        cursor: default;
    }

        .CM-btn.disabled:hover {
            -webkit-filter: brightness(1);
            filter: brightness(1);
        }

@media screen and (max-width: 768px) {
    .CM-btn {
        font-size: 14px;
    }
}

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=time],
    .CM-input input[type=url],
    .CM-input input[type=number],
    .CM-input textarea {
        width: 100%;
        color: #1e1e1e;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #dcdcdc;
        border-radius: 5px;
        font-size: 14px;
        padding: 11px 14px;
        -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=time]:focus,
        .CM-input input[type=url]:focus,
        .CM-input input[type=number]:focus,
        .CM-input textarea:focus {
            outline: 0;
            border: 1px solid #fb7400;
            -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=time]:disabled,
        .CM-input input[type=url]:disabled,
        .CM-input input[type=number]:disabled,
        .CM-input textarea:disabled {
            background-color: #f4f4f4;
            color: #808080;
        }

    .CM-input input[type=date],
    .CM-input input[type=time] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        padding: 11px 14px;
        height: 46px;
    }

    .CM-input input[type=time] {
        font-size: 16px;
    }

    .CM-input textarea {
        resize: none;
        height: 100px;
    }

    .CM-input .error-tip {
        margin-top: 5px;
        color: #f55431;
        font-size: 14px;
    }

    .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-input.pwd-input .ic-eye {
        position: absolute;
        right: 15px;
        bottom: 9px;
    }

        .CM-input.pwd-input .ic-eye .close {
            display: block;
        }

        .CM-input.pwd-input .ic-eye .open {
            display: none;
        }

            .CM-input.pwd-input .ic-eye.open .open {
                display: block;
            }

            .CM-input.pwd-input .ic-eye.open .close {
                display: none;
            }

    .CM-input.send-input input[type=text] {
        padding: 11px 40px 11px 14px;
    }

    .CM-input.send-input .ic-send {
        position: absolute;
        right: 15px;
        bottom: 9px;
    }

    .CM-input.date-input input[type=date]::-webkit-date-and-time-value {
        text-align: left;
    }

    .CM-input.date-input input[type=date]::-webkit-calendar-picker-indicator {
        opacity: 0;
        width: 100%;
        position: absolute;
        right: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 1;
        height: 100%;
    }

    .CM-input.date-input input[type=date] {
        padding: 11px 40px 11px 14px;
    }

    .CM-input.date-input:after {
        content: "";
        background: url(/Images/ico-date1.svg) no-repeat center center;
        position: absolute;
        right: 12px;
        height: 24px;
        width: 24px;
        top: 0;
        bottom: 0;
        margin: auto;
        pointer-events: none;
    }

    .CM-input.date-time input[type=time]::-webkit-calendar-picker-indicator {
        opacity: 0.4;
    }

    .CM-input.search-input:after {
        content: "";
        background: url(/Images/ico_search.svg) no-repeat center center;
        position: absolute;
        right: 12px;
        height: 24px;
        width: 24px;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 1;
    }

.CM-fileupload-input .input-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

    .CM-fileupload-input .input-file input[type=file] {
        display: none;
    }

    .CM-fileupload-input .input-file .CM-btn {
        height: 40px;
        line-height: 40px;
        width: 82px;
        margin: auto 0 auto auto;
    }

.CM-fileuploaded {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 12px 16px;
    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;
}

    .CM-fileuploaded span {
        font-size: 14px;
        color: #666;
    }

    .CM-fileuploaded a {
        width: 20px;
    }

        .CM-fileuploaded a img {
            width: 100%;
            vertical-align: top;
        }

.CM-tel-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 100;
    gap: 8px;
}

    .CM-tel-input .CM-tel-select-wrap {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 30%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

        .CM-tel-input .CM-tel-select-wrap .default-option {
            background-color: #fff;
            position: relative;
            height: 42px;
            border-radius: 5px;
            border: 1px solid #dcdcdc;
        }

            .CM-tel-input .CM-tel-select-wrap .default-option li {
                line-height: 45px;
                padding: 0 10px;
                color: #1e1e1e;
            }

                .CM-tel-input .CM-tel-select-wrap .default-option li:before {
                    content: "";
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    right: 8px;
                    width: 4px;
                    height: 4px;
                    border: 2px solid;
                    border-color: transparent transparent #555555 #555555;
                    -webkit-transform: rotate(-45deg);
                    transform: rotate(-45deg);
                }

        .CM-tel-input .CM-tel-select-wrap .CM-tel-select-ul {
            position: absolute;
            top: 47px;
            left: 0;
            width: 100%;
            border-radius: 5px;
            display: none;
            overflow: hidden;
            background-color: #fff;
            border: 1px solid #dcdcdc;
            border-radius: 5px;
            padding: 10px;
        }

            .CM-tel-input .CM-tel-select-wrap .CM-tel-select-ul li {
                padding: 8px 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;
            }

                .CM-tel-input .CM-tel-select-wrap .CM-tel-select-ul li span {
                    color: #1e1e1e;
                }

                .CM-tel-input .CM-tel-select-wrap .CM-tel-select-ul li:hover span {
                    color: #FB7400;
                }

        .CM-tel-input .CM-tel-select-wrap.active .default-option {
            border: 1px solid #fb7400;
        }

        .CM-tel-input .CM-tel-select-wrap.active .CM-tel-select-ul {
            display: block;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            overflow-y: scroll;
            max-height: 200px;
        }

    .CM-tel-input.verify .CM-btn {
        width: 160px;
    }

    .CM-tel-input.verify .CM-tel-select-wrap {
        width: 20%;
    }

@media screen and (max-width: 768px) {
    .CM-tel-input.verify .CM-btn {
        width: 90px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .CM-tel-input.verify .CM-tel-select-wrap {
        width: 80px;
    }
}

.CM-verify-sms-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

    .CM-verify-sms-input .CM-btn {
        width: 160px;
    }

@media screen and (max-width: 768px) {
    .CM-verify-sms-input .CM-btn {
        width: 90px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
}

.CM-verify-code-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

    .CM-verify-code-input .v-code {
        width: 90px;
        vertical-align: top;
    }

    .CM-verify-code-input a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 16px;
    }

.CM-checkbox {
    position: relative;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 26px;
}

    .CM-checkbox label {
        padding-left: 26px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .CM-checkbox input[type=checkbox] {
        display: none;
    }

        .CM-checkbox input[type=checkbox] + span {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 1px solid #D9D9D9;
            border-radius: 2px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
        }

        .CM-checkbox input[type=checkbox]:checked + span {
            background: url(/Images/icon_check.svg) no-repeat center center;
            border-color: transparent;
        }

    .CM-checkbox.check-2 label {
        padding-left: 30px;
    }

    .CM-checkbox.check-2 input[type=checkbox] + span {
        width: 26px;
        height: 26px;
        border: 2px solid #fff;
        border-radius: 50%;
        background: url(/Images/ico_check-2.svg) no-repeat center center;
        background-size: 100%;
    }

    .CM-checkbox.check-2 input[type=checkbox]:checked + span {
        background: url(/Images/ico_check-1.svg) no-repeat center center;
        background-size: 100%;
    }

.CM-radio {
    position: relative;
    font-size: 16px;
    display: inline-block;
    line-height: 26px;
}

    .CM-radio label {
        padding-left: 23px;
        position: relative;
    }

    .CM-radio input[type=radio] {
        display: none;
    }

        .CM-radio input[type=radio] + span {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 1px solid #a5a5a5;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
        }

            .CM-radio input[type=radio] + span:before {
                content: "";
                width: 10px;
                height: 10px;
                border-radius: 50%;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
            }

        .CM-radio input[type=radio]:checked + span {
            border-color: #F55431;
        }

            .CM-radio input[type=radio]:checked + span:before {
                background-color: #F55431;
            }

    .CM-radio.bd {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #dcdcdc;
        border-radius: 5px;
        padding: 0 14px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        height: 42px;
        line-height: 41px;
        background-color: #fff;
    }

        .CM-radio.bd label {
            display: block;
        }

    .CM-radio.radio-2 input[type=radio]:checked + span {
        border: unset;
    }

        .CM-radio.radio-2 input[type=radio]:checked + span:before {
            background: url(/Images/ico_check-1.svg) no-repeat center center;
            background-size: 100%;
            width: 18px;
            height: 18px;
        }

.CM-select {
    position: relative;
}

    .CM-select:after {
        content: "";
        position: absolute;
        background: url(/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: 44px;
        border-radius: 5px;
        background-color: #fff;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-select select:focus {
            outline: 0;
            border-color: #F55431;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

.CM-tip {
    font-size: 14px;
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 12px 16px 12px 35px;
    position: relative;
    line-height: 1.4;
}

    .CM-tip img {
        margin-right: 5px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        left: 12px;
        top: 13px;
    }

    .CM-tip.tip-2 {
        background-color: #FFFCDF;
    }

        .CM-tip.tip-2 img {
            width: 16px;
            height: 16px;
        }

.CM-pages-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;
}

    .CM-pages-row a, .CM-pages-row span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        height: 48px;
        line-height: 48px;
        border-radius: 10px;
        font-size: 14px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #1e1e1e;
        text-decoration: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        min-width: 48px;
    }

        .CM-pages-row a img, .CM-pages-row span img {
            vertical-align: top;
        }

        .CM-pages-row a.active, .CM-pages-row span.active {
            background-color: #fb7400;
            color: #fff;
        }

@media screen and (max-width: 768px) {
    .CM-pages-row a, .CM-pages-row span {
        height: 40px;
        line-height: 40px;
        min-width: 40px;
    }
}

.CM-table table {
    width: 100%;
    color: #1e1e1e;
}

    .CM-table table td, .CM-table table th {
        border: 1px solid #dcdcdc;
        padding: 10px 16px;
        vertical-align: middle;
    }

.CM-table.table-wb td, .CM-table.table-wb th {
    border: 1px solid #fff;
}

.CM-table.table-nb td, .CM-table.table-nb th {
    border: none;
}

.CM-table .bgc-ly {
    background-color: #FFFCDF;
}

.CM-table .bgc-gray {
    background-color: #808080;
    color: #fff;
}

.CM-table td.nw {
    white-space: nowrap;
}

.CM-page-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
}

    .CM-page-tab a {
        display: inline-block;
        padding: 15px 20px;
        color: #808080;
        border-bottom: 2px solid transparent;
        text-decoration: none;
        font-size: 20px;
    }

        .CM-page-tab a.active {
            color: #fb7400;
            border-color: #fb7400;
        }

@media screen and (max-width: 768px) {
    .CM-page-tab {
        margin-bottom: 20px;
        gap: 0;
    }

        .CM-page-tab a {
            font-size: 16px;
            padding: 12px 0;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            text-align: center;
        }
}

.CM-step-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: relative;
    width: 100%;
    max-width: 720px;
    padding: 30px 0 45px 0;
    margin: auto;
}

    .CM-step-row dl {
        width: 33.3333333333%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        text-align: center;
        color: #666;
        position: relative;
        z-index: 1;
    }

        .CM-step-row dl dt {
            border-radius: 50%;
            background-color: #dcdcdc;
            font-size: 18px;
            font-weight: bold;
            width: 46px;
            line-height: 46px;
            height: 46px;
            margin: 0 auto 8px;
            color: #1e1e1e;
        }

        .CM-step-row dl.active dt {
            color: #fff;
            background-color: #fb7400;
        }

        .CM-step-row dl.active dd {
            color: #fb7400;
        }

    .CM-step-row:after {
        content: "";
        height: 3px;
        width: 70%;
        top: 54px;
        right: 0;
        left: 0;
        margin: auto;
        position: absolute;
        background-color: #dcdcdc;
    }

@media screen and (max-width: 768px) {
    .CM-step-row {
        background-color: #f4f4f4;
        padding: 25px 0;
    }

        .CM-step-row dl dt {
            margin-bottom: 0;
        }

        .CM-step-row dl dd {
            display: none;
        }

        .CM-step-row:after {
            top: 49px;
        }
}

.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: 450px;
        border-radius: 10px;
        width: 100%;
        padding: 50px 40px;
        color: #454545;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .CM-lightbox .wrap a.lb-header {
            position: absolute;
            right: 15px;
            top: 15px;
        }

            .CM-lightbox .wrap a.lb-header img {
                vertical-align: top;
            }

        .CM-lightbox .wrap .lb-title {
            font-size: 18px;
            font-weight: 500;
            position: absolute;
            top: 25px;
        }

        .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: 50px;
            gap: 10px;
        }

            .CM-lightbox .wrap .btn-row a {
                -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                flex-grow: 1;
                width: 40%;
            }

                .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;
                    }

    .CM-lightbox.pp-fraud .wrap {
        background: url(/Images/ba-800x625.jpg) no-repeat center center;
        background-size: 100%;
        width: 800px;
        height: 625px;
        max-width: 800px;
        padding: 0;
    }

        .CM-lightbox.pp-fraud .wrap .mb-bn {
            display: none;
        }

@media screen and (max-width: 768px) {
    .CM-lightbox .wrap {
        width: 95%;
    }

    .CM-lightbox.pp-fraud .wrap {
        width: 95%;
        height: auto;
    }

        .CM-lightbox.pp-fraud .wrap .mb-bn {
            display: block;
            width: 100%;
            border-radius: 10px;
        }
}

body, body * {
    font-family: "Noto Sans TC", "microsoft jhenghei", Verdana, Arial, sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #1e1e1e;
}

    body.bg-w {
        background-color: #fff;
    }

        body.bg-w article {
            background-color: #fff;
        }

    body.fixed {
        overflow: hidden;
    }

    body * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    body header {
        background-color: #1e1e1e;
        padding: 18px 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        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;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

        body header .col {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 15px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            position: relative;
        }

        body header .menu {
            position: relative;
            text-decoration: none;
        }

            body header .menu .new {
                position: absolute;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background-color: red;
                right: -1px;
                top: 0;
            }

            body header .menu .close {
                display: none;
            }

            body header .menu.active .default {
                display: none;
            }

            body header .menu.active .close {
                display: block;
            }

            body header .menu.active .new {
                display: none;
            }

        body header .logo img {
            display: none;
        }

        body header .logo .default {
            display: inline-block;
        }

        body header nav {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 60px;
        }

            body header nav a {
                text-decoration: none;
                color: #fff;
                line-height: 40px;
                border-bottom: 2px solid #1e1e1e;
            }

                body header nav a:hover {
                    border-bottom: 2px solid #FB7400;
                }

        body header .member {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 3px;
        }

            body header .member .img {
                width: 44px;
                height: 44px;
                overflow: hidden;
                border-radius: 50%;
            }

                body header .member .img img {
                    width: 100%;
                    height: 100%;
                    -o-object-fit: cover;
                    object-fit: cover;
                }

            body header .member span {
                color: #fff;
                font-size: 14px;
            }

        body header .logout-col {
            height: 48px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            background-color: #fb7400;
            border-radius: 8px;
            color: #fff;
            margin: auto;
            gap: 5px;
            padding: 0 20px;
        }

            body header .logout-col a {
                text-decoration: none;
                color: #fff;
                padding: 0 5px;
            }

                body header .logout-col a:hover {
                    text-decoration: underline;
                }

        body header .CM-btn {
            padding: 0 20px;
        }

        body header .CM-language-select-wrap {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            width: 100px;
        }

            body header .CM-language-select-wrap .default-option {
                background-color: #666;
                color: #fff;
                position: relative;
                height: 40px;
                line-height: 40px;
                border-radius: 20px;
            }

                body header .CM-language-select-wrap .default-option li {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    gap: 5px;
                    padding: 0 10px;
                    cursor: pointer;
                }

                    body header .CM-language-select-wrap .default-option li:before {
                        content: "";
                        position: absolute;
                        top: 4px;
                        bottom: 0;
                        margin: auto;
                        right: 8px;
                        height: 4px;
                        border-style: solid;
                        border-width: 5px 5px 0 5px;
                        border-color: #fff transparent transparent transparent;
                    }

            body header .CM-language-select-wrap .CM-language-select-ul {
                position: absolute;
                top: 55px;
                left: 0;
                width: 100%;
                border-radius: 5px;
                display: none;
                overflow: hidden;
                background-color: #fff;
                border-radius: 5px;
                padding: 10px;
                -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
                box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
            }

                body header .CM-language-select-wrap .CM-language-select-ul li {
                    padding: 12px 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;
                }

                    body header .CM-language-select-wrap .CM-language-select-ul li span {
                        color: #1e1e1e;
                    }

                    body header .CM-language-select-wrap .CM-language-select-ul li:hover {
                        color: #FB7400;
                    }

            body header .CM-language-select-wrap.active .CM-language-select-ul {
                display: block;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                overflow-y: scroll;
                max-height: 200px;
            }

        body header.omgnews .logo .default {
            display: none;
        }

        body header.omgnews .logo .omgnews {
            display: inline-block;
        }

        body header.omgnews nav a:hover {
            border-bottom: 2px solid #A3DCFF;
        }

        body header.omgnews .logout-col {
            background-color: #57BFFF;
        }

        body header.lineat .logo .default {
            display: none;
        }

        body header.lineat .logo .lineat {
            display: inline-block;
        }

        body header.lineat nav a:hover {
            border-bottom: 2px solid #89BF00;
        }

        body header.lineat .logout-col {
            background-color: #89BF00;
        }

        body header.play .logo .default {
            display: none;
        }

        body header.play .logo .games {
            display: inline-block;
        }

        body header.play nav a:hover {
            border-bottom: 2px solid #F9BE00;
        }

        body header.play .logout-col {
            background-color: #F9BE00;
        }

@media screen and (max-width: 1200px) {
    body header nav {
        gap: 25px;
    }
}

@media screen and (max-width: 1000px) {
    body header {
        padding: 8.5px 30px;
        height: 60px;
    }

        body header nav, body header .member, body header .CM-btn, body header .CM-language-select-wrap {
            display: none;
        }

        body header .col:first-child {
            width: 100%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            body header .col:first-child .menu {
                position: absolute;
                left: 0;
            }

        body header .col:last-child {
            display: none;
        }
}

body aside {
    width: 100%;
    max-width: 340px;
    position: fixed;
    z-index: 999;
    top: 84px;
    padding-top: 10px;
    background-color: #fff;
    height: calc(100% - 84px);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(-340px);
    transform: translateX(-340px);
    opacity: 0;
    -webkit-transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
    transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
    transition: opacity 0.3s 0.1s, transform 0.3s;
    transition: opacity 0.3s 0.1s, transform 0.3s, -webkit-transform 0.3s;
    gap: 3px;
    overflow-y: scroll;
}

    body aside .member {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        padding: 8px 20px;
    }

        body aside .member .img {
            width: 44px;
            height: 44px;
            overflow: hidden;
            border-radius: 50%;
        }

            body aside .member .img img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
            }

        body aside .member span {
            font-size: 18px;
        }

    body aside .row {
        height: 50px;
        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: 0 20px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

        body aside .row a {
            text-decoration: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 20px;
            font-size: 18px;
            color: #1e1e1e;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
        }

            body aside .row a .active {
                display: none;
            }

        body aside .row .arrow {
            position: relative;
        }

            body aside .row .arrow .active {
                display: none;
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
            }

    body aside .sub-menu-toggle {
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        body aside .sub-menu-toggle .sub-menu {
            display: none;
        }

            body aside .sub-menu-toggle .sub-menu li {
                margin-bottom: 5px;
            }

                body aside .sub-menu-toggle .sub-menu li a {
                    text-decoration: none;
                    color: #fff;
                    display: inline-block;
                    padding: 8px 0 8px 44px;
                    border-radius: 10px;
                    width: 100%;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                    body aside .sub-menu-toggle .sub-menu li a:hover {
                        background-color: #FB7400;
                        -webkit-transition: 0.3s linear;
                        transition: 0.3s linear;
                    }

                body aside .sub-menu-toggle .sub-menu li .new-tag {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    gap: 5px;
                }

                    body aside .sub-menu-toggle .sub-menu li .new-tag span {
                        background-color: #fff;
                        color: #F55431;
                        font-size: 12px;
                        padding: 4px 10px;
                        border-radius: 10px;
                        font-weight: bold;
                    }

        body aside .sub-menu-toggle.active {
            background-color: #FFA04E;
            padding: 10px 0;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            body aside .sub-menu-toggle.active .row a {
                color: #fff;
            }

            body aside .sub-menu-toggle.active .row .default {
                display: none;
            }

            body aside .sub-menu-toggle.active .row .active {
                display: block;
            }

            body aside .sub-menu-toggle.active .arrow .default {
                display: none;
            }

            body aside .sub-menu-toggle.active .arrow .active {
                display: block;
            }

            body aside .sub-menu-toggle.active .sub-menu {
                padding: 0 20px;
            }

    body aside.active {
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    body aside > .row:hover {
        background-color: #FFA04E;
        border-radius: 10px;
        margin: 0 10px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        body aside > .row:hover a {
            color: #fff;
        }

        body aside > .row:hover .default {
            display: none;
        }

        body aside > .row:hover .active {
            display: block;
        }

    body aside .btn-row {
        padding: 10px 0 15px;
        border-bottom: 1px solid #f4f4f4;
        text-align: center;
    }

        body aside .btn-row .logout-col {
            height: 48px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            background-color: #fb7400;
            border-radius: 8px;
            color: #fff;
            margin: auto;
            gap: 5px;
            padding: 0 20px;
        }

            body aside .btn-row .logout-col a {
                text-decoration: none;
                color: #fff;
                padding: 0 5px;
            }

                body aside .btn-row .logout-col a:hover {
                    text-decoration: underline;
                }

    body aside .account-info {
        padding: 20px;
        border-bottom: 1px solid #f4f4f4;
        background-color: #f4f4f4;
        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;
    }

        body aside .account-info .txt {
            line-height: 2;
        }

        body aside .account-info .CM-btn {
            height: 38px;
            line-height: 38px;
            width: 60px;
        }

    body aside .logut {
        text-align: center;
        padding: 20px 0 40px;
    }

        body aside .logut a {
            text-decoration: none;
            color: #1e1e1e;
        }

@media screen and (max-width: 1000px) {
    body aside {
        top: 60px;
        height: calc(100% - 60px);
    }
}

@media screen and (max-width: 768px) {
    body aside {
        overflow-y: scroll;
    }
}

body footer {
    background-color: #1e1e1e;
}

    body footer .wrap {
        width: 1100px;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 20px 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

        body footer .wrap .scope .copyright {
            font-size: 13px;
            color: #fff;
            padding: 0 10px;
        }

        body footer .wrap .scope .logo-col {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 20px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-bottom: 20px;
        }

            body footer .wrap .scope .logo-col a {
                display: inline-block;
            }

                body footer .wrap .scope .logo-col a img {
                    vertical-align: top;
                }

        body footer .wrap .scope nav {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-bottom: 20px;
        }

            body footer .wrap .scope nav a {
                color: #fff;
                font-size: 14px;
                padding: 0 20px;
                text-decoration: none;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                body footer .wrap .scope nav a:hover {
                    color: #F9BE00;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                body footer .wrap .scope nav a:first-child {
                    padding-left: 0;
                }

                body footer .wrap .scope nav a:not(:last-child) {
                    border-right: 1px solid #666;
                }

        body footer .wrap .scope .info-col {
            line-height: 1.4;
            color: #fff;
            font-size: 14px;
        }

        body footer .wrap.hk {
            padding: 40px 0;
        }

            body footer .wrap.hk .scope nav {
                margin-bottom: 0;
            }

@media screen and (max-width: 1100px) {
    body footer.lineat .wrap {
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 768px) {
    body footer.play .wrap {
        padding-bottom: 160px;
    }
}

@media screen and (max-width: 768px) {
    body footer.play-2 .wrap {
        padding-bottom: 280px;
    }
}

@media screen and (max-width: 768px) {
    body footer .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
    }

        body footer .wrap .scope .info-col {
            width: 300px;
            margin: auto;
        }

        body footer .wrap .scope nav {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 15px 0;
        }

            body footer .wrap .scope nav a {
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                width: 50%;
                text-align: center;
            }

                body footer .wrap .scope nav a:nth-child(2) {
                    border-right: 0;
                }

                body footer .wrap .scope nav a:first-child {
                    padding-left: 20px;
                }

        body footer .wrap.hk .scope nav a {
            width: auto;
        }

            body footer .wrap.hk .scope nav a:nth-child(2) {
                border-right: 1px solid #666;
            }
}

body article {
    margin-top: 84px;
    padding: 32px 0;
    background-color: #f4f4f4;
    min-height: 700px;
}

    body article .breadcrumb-wrap {
        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;
    }

        body article .breadcrumb-wrap.wp-large {
            width: 1100px;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
            margin-bottom: 17px;
        }

        body article .breadcrumb-wrap.wp-medium {
            width: 680px;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
            margin-bottom: 17px;
        }

        body article .breadcrumb-wrap .breadcrumb {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

            body article .breadcrumb-wrap .breadcrumb a, body article .breadcrumb-wrap .breadcrumb span {
                font-size: 14px;
            }

    body article .wrap {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 8px;
        -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.08);
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.08);
        padding: 30px 50px;
    }

        body article .wrap.wp-large {
            width: 1100px;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }

        body article .wrap.wp-medium {
            width: 680px;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }

@media screen and (max-width: 1000px) {
    body article {
        background-color: #fff;
        margin-top: 60px;
        padding: 0;
    }

        body article .breadcrumb-wrap {
            background-color: #f4f4f4;
            padding: 10px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

            body article .breadcrumb-wrap.wp-large, body article .breadcrumb-wrap.wp-medium {
                margin-bottom: 0;
            }

        body article .wrap {
            border-radius: 0;
            -webkit-box-shadow: unset;
            box-shadow: unset;
            padding: 20px;
        }
}

@media screen and (max-width: 768px) {
    body article {
        min-height: 600px;
    }
}

.CM-content {
    width: 100%;
    background-color: #fff;
}

    .CM-content .page-title {
        font-weight: bold;
        font-size: 20px;
        color: #666;
        margin-bottom: 20px;
    }

    .CM-content .btn-row {
        text-align: center;
    }

        .CM-content .btn-row .CM-btn {
            width: 100%;
            max-width: 300px;
        }

@media screen and (max-width: 768px) {
    .CM-content .page-title {
        font-size: 18px;
    }

    .CM-content .btn-row .CM-btn {
        max-width: 100%;
    }
}

.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=time]:focus,
.CM-input input[type=number]:focus,
.CM-input textarea:focus {
    border: 1px solid #82B500;
}

.CM-select select:focus {
    border-color: #82B500;
}

.CM-checkbox input[type=checkbox]:checked + span {
    background: url(/Images/icon_check-2.svg) no-repeat center center;
}

.CM-radio.radio-2 input[type=radio]:checked + span:before {
    background: url(/Images/ico_check-4.svg) no-repeat center center;
}

@media screen and (min-width: 769px) {
    .tools-fixed {
        position: fixed;
        right: 25px;
        top: 300px;
        z-index: 998;
        width: 172px;
        overflow: hidden;
        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: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

        .tools-fixed a {
            display: block;
            position: relative;
            background-color: #82B500;
            border-radius: 50%;
            padding: 18px;
            width: 60px;
            height: 60px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            margin-bottom: 10px;
            -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            text-decoration: none;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            .tools-fixed a .txt {
                opacity: 0;
                position: absolute;
                background-color: #FFE696;
                color: #1e1e1e;
                font-size: 20px;
                font-weight: bold;
                padding: 0 70px 0 22px;
                border-radius: 30px;
                word-break: keep-all;
                right: 0;
                top: 0;
                z-index: -1;
                height: 60px;
                line-height: 60px;
                -webkit-transform: translateX(5%);
                transform: translateX(5%);
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

            .tools-fixed a .img {
                display: block;
            }

                .tools-fixed a .img .default {
                    display: block;
                }

                .tools-fixed a .img .hover {
                    display: none;
                }

            .tools-fixed a:hover {
                background: #F9BE00;
                -webkit-box-shadow: unset;
                box-shadow: unset;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                .tools-fixed a:hover .txt {
                    opacity: 1;
                    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
                    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
                    -webkit-transform: translateX(0%);
                    transform: translateX(0%);
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

                .tools-fixed a:hover .img .default {
                    display: none;
                }

                .tools-fixed a:hover .img .hover {
                    display: block;
                }
}

@media screen and (max-width: 768px) {
    .tools-fixed {
        position: fixed;
        z-index: 998;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #82B500;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    }

        .tools-fixed a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            gap: 5px;
            padding: 10px 0;
            text-decoration: none;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            position: relative;
        }

            .tools-fixed a:not(:last-child):after {
                content: "";
                position: absolute;
                width: 1px;
                height: 100%;
                background-color: #9CD900;
                right: 0;
                top: 0;
            }

            .tools-fixed a .img .hover {
                display: none;
            }

            .tools-fixed a .txt {
                color: #fff;
                font-weight: 500;
            }
}

article.page-trade {
    padding: 0;
    overflow: hidden;
}

    article.page-trade .wrap {
        all: unset;
        width: 1100px;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        display: block;
        padding: 25px 0;
    }

    article.page-trade .se-title-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;
        margin-bottom: 25px;
    }

        article.page-trade .se-title-row .se-title {
            font-size: 25px;
            color: #666;
            font-weight: bold;
        }

    article.page-trade .se-1 {
        height: 400px;
        width: 100%;
        margin-bottom: 10px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        article.page-trade .se-1 .swiper {
            height: 100%;
            position: relative;
        }

        article.page-trade .se-1 .swiper-slide {
            height: 100%;
            text-decoration: none;
            display: block;
        }

            article.page-trade .se-1 .swiper-slide .mb-bn {
                display: none;
            }

            article.page-trade .se-1 .swiper-slide .pc-bn {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
            }

        article.page-trade .se-1 .wrap {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1;
        }

            article.page-trade .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: center;
                -ms-flex-pack: center;
                justify-content: center;
                gap: 10px;
            }

                article.page-trade .se-1 .wrap .swiper-pagination * {
                    font-family: "Roboto";
                    font-weight: bold;
                }

                article.page-trade .se-1 .wrap .swiper-pagination .current {
                    color: #F9BE00;
                }

                article.page-trade .se-1 .wrap .swiper-pagination .total {
                    color: #fff;
                }

                article.page-trade .se-1 .wrap .swiper-pagination .progress-bar {
                    width: 107px;
                    height: 4px;
                    border-radius: 5px;
                    background-color: #fff;
                    position: relative;
                    overflow: hidden;
                }

                    article.page-trade .se-1 .wrap .swiper-pagination .progress-bar:after {
                        content: "";
                        position: absolute;
                        left: 0;
                        width: 0%;
                        top: 0;
                        height: 100%;
                        background-color: #F9BE00;
                        border-radius: 5px;
                    }

                article.page-trade .se-1 .wrap .swiper-pagination .current.stage-1 ~ .progress-bar:after {
                    width: calc(25% * 1);
                }

                article.page-trade .se-1 .wrap .swiper-pagination .current.stage-2 ~ .progress-bar:after {
                    width: calc(25% * 2);
                }

                article.page-trade .se-1 .wrap .swiper-pagination .current.stage-3 ~ .progress-bar:after {
                    width: calc(25% * 3);
                }

                article.page-trade .se-1 .wrap .swiper-pagination .current.stage-4 ~ .progress-bar:after {
                    width: calc(25% * 4);
                }

    article.page-trade .se-2 {
        margin-bottom: 30px;
    }

        article.page-trade .se-2 .grid-row {
            background-color: #fff;
            padding: 30px 40px;
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: 325px 20px 325px 20px 325px;
            grid-template-columns: repeat(3, 325px);
            gap: 20px;
            border-radius: 12px;
        }

            article.page-trade .se-2 .grid-row dl {
                border-radius: 12px;
                -webkit-box-shadow: inset 0 0 0 3px #C9ECAB;
                box-shadow: inset 0 0 0 3px #C9ECAB;
            }

                article.page-trade .se-2 .grid-row dl .img {
                    width: 100%;
                }

                    article.page-trade .se-2 .grid-row dl .img img {
                        width: 100%;
                        vertical-align: top;
                    }

                article.page-trade .se-2 .grid-row dl dd:not(.img) {
                    padding: 15px 20px;
                    color: #1e1e1e;
                    line-height: 1.6;
                    font-size: 14px;
                }

    article.page-trade .se-3 {
        margin-bottom: 30px;
    }

        article.page-trade .se-3 .grid-row {
            background-color: #fff;
            padding: 35px 40px;
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: calc((100% - 30px) / 4) 10px calc((100% - 30px) / 4) 10px calc((100% - 30px) / 4) 10px calc((100% - 30px) / 4);
            grid-template-columns: repeat(4, calc((100% - 30px) / 4));
            gap: 10px;
            border-radius: 12px;
        }

            article.page-trade .se-3 .grid-row a {
                display: inline-block;
                text-decoration: none;
                text-align: center;
                background-color: #C9ECAB;
                border-radius: 6px;
                height: 48px;
                line-height: 48px;
                color: #397307;
                font-weight: 500;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                article.page-trade .se-3 .grid-row a:hover {
                    -webkit-filter: brightness(1.05);
                    filter: brightness(1.05);
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

    article.page-trade .se-4 {
        margin-bottom: 30px;
    }

        article.page-trade .se-4 .search-scope {
            background-color: #fff;
            padding: 30px 40px;
            color: #1e1e1e;
            border-radius: 12px;
        }

            article.page-trade .se-4 .search-scope .rwd-pc-hide {
                display: none;
            }

            article.page-trade .se-4 .search-scope .search-row {
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            article.page-trade .se-4 .search-scope .sec-row {
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 32% 10px auto;
                grid-template-columns: 32% auto;
                gap: 10px;
            }

        article.page-trade .se-4 .tab-scope {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
        }

        article.page-trade .se-4 .tab-group {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 5px;
        }

            article.page-trade .se-4 .tab-group span {
                border: 1px solid #dcdcdc;
                border-radius: 6px;
                display: inline-block;
                height: 38px;
                line-height: 36px;
                padding: 0 10px;
                text-align: center;
                color: #808080;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                cursor: pointer;
                font-size: 14px;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

                article.page-trade .se-4 .tab-group span.current {
                    background-color: #FFE696;
                    border-color: #FFE696;
                    color: #666;
                    -webkit-transition: 0.3s linear;
                    transition: 0.3s linear;
                }

        article.page-trade .se-4 .btn {
            text-decoration: none;
            border-radius: 10px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            height: 46px;
            line-height: 46px;
            border: 1px solid #F9BE00;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            background-color: #F9BE00;
            color: #fff;
            font-weight: 500;
            width: 124px;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            article.page-trade .se-4 .btn:hover {
                -webkit-filter: brightness(1.05);
                filter: brightness(1.05);
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

    article.page-trade .se-5 {
        margin-bottom: 30px;
    }

        article.page-trade .se-5 .product-scope-box {
            background-color: #fff;
            padding: 50px 40px;
            border-radius: 12px;
        }

        article.page-trade .se-5 .product-scope {
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3);
            grid-template-columns: repeat(3, calc((100% - 20px) / 3));
            gap: 15px 10px;
        }

            article.page-trade .se-5 .product-scope .box {
                border-radius: 12px;
                border: 1px solid #dcdcdc;
                padding: 16px;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                position: relative;
                display: -ms-grid;
                display: grid;
                -ms-grid-columns: 130px 10px 1fr;
                grid-template-columns: 130px 1fr;
                -ms-grid-rows: 95px 0 35px;
                grid-template-rows: 95px 35px;
                gap: 0 10px;
                background-color: #fff;
                text-decoration: none;
                color: #1e1e1e;
            }

                article.page-trade .se-5 .product-scope .box > *:nth-child(1) {
                    -ms-grid-row: 1;
                    -ms-grid-column: 1;
                }

                article.page-trade .se-5 .product-scope .box > *:nth-child(2) {
                    -ms-grid-row: 1;
                    -ms-grid-column: 3;
                }

                article.page-trade .se-5 .product-scope .box > *:nth-child(3) {
                    -ms-grid-row: 3;
                    -ms-grid-column: 1;
                }

                article.page-trade .se-5 .product-scope .box > *:nth-child(4) {
                    -ms-grid-row: 3;
                    -ms-grid-column: 3;
                }

                article.page-trade .se-5 .product-scope .box .tag-img {
                    position: absolute;
                    left: 0;
                    top: 20px;
                    width: 60px;
                }

                    article.page-trade .se-5 .product-scope .box .tag-img img {
                        width: 100%;
                        vertical-align: top;
                    }

                article.page-trade .se-5 .product-scope .box .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;
                    width: 130px;
                    height: 130px;
                    border-radius: 8px;
                    overflow: hidden;
                    position: relative;
                }

                    article.page-trade .se-5 .product-scope .box .img img {
                        width: 100%;
                        height: 100%;
                        -o-object-fit: cover;
                        object-fit: cover;
                        vertical-align: top;
                    }

                    article.page-trade .se-5 .product-scope .box .img span {
                        position: absolute;
                        border: 1px solid #fff;
                        color: #fff;
                        font-size: 12px;
                        right: 10px;
                        top: 10px;
                        line-height: 18px;
                        width: 18px;
                        text-align: center;
                    }

                article.page-trade .se-5 .product-scope .box .p-name {
                    -ms-grid-row: 1;
                    -ms-grid-row-span: 1;
                    -ms-grid-column: 2;
                    -ms-grid-column-span: 1;
                    grid-area: 1/2/2/3;
                    line-height: 1.6;
                    border-bottom: 1px solid #dcdcdc;
                }

                article.page-trade .se-5 .product-scope .box .p-amount {
                    -ms-grid-row: 2;
                    -ms-grid-row-span: 1;
                    -ms-grid-column: 2;
                    -ms-grid-column-span: 1;
                    grid-area: 2/2/3/3;
                    -ms-grid-row-align: center;
                    align-self: center;
                }

                    article.page-trade .se-5 .product-scope .box .p-amount span {
                        color: #f55431;
                    }

                article.page-trade .se-5 .product-scope .box .p-ad {
                    -ms-grid-row: 2;
                    -ms-grid-row-span: 1;
                    -ms-grid-column: 2;
                    -ms-grid-column-span: 1;
                    grid-area: 2/2/3/3;
                    text-align: right;
                    -ms-grid-row-align: center;
                    align-self: center;
                    color: #808080;
                    font-size: 14px;
                }

        article.page-trade .se-5 .CM-pages-row a.active,
        article.page-trade .se-5 .CM-pages-row span.active {
            background-color: #82B500;
        }

    article.page-trade .search-empty {
        margin: 60px;
        text-align: center;
    }

        article.page-trade .search-empty img {
            margin-bottom: 5px;
            width: 80px;
        }

        article.page-trade .search-empty dl {
            line-height: 1.6;
            color: #666;
        }

            article.page-trade .search-empty dl dt {
                font-size: 20px;
                font-weight: bold;
            }

            article.page-trade .search-empty dl dd {
                font-size: 18px;
            }

@media screen and (max-width: 1100px) {
    article.page-trade {
        background-color: #f4f4f4;
    }

        article.page-trade .btn-publish {
            top: unset;
            bottom: 0;
            left: 0;
            border-right: none;
            border-radius: 0;
            background-color: #fff;
            padding: 10px;
        }

            article.page-trade .btn-publish .mb-bd {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                border-radius: 6px;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                background-color: #FFE696;
                gap: 50px;
            }

            article.page-trade .btn-publish .img {
                width: 50px;
            }

            article.page-trade .btn-publish b {
                font-size: 25px;
                font-weight: 500;
            }

        article.page-trade .wrap {
            padding: 0;
        }

        article.page-trade .se-title-row {
            padding: 15px 10px;
            margin-bottom: 0;
        }

            article.page-trade .se-title-row .se-title {
                font-size: 20px;
            }

        article.page-trade .se-1 {
            height: 380px;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            article.page-trade .se-1 .wrap {
                padding: 12px 0;
            }

        article.page-trade .se-2 {
            margin-bottom: 15px;
        }

            article.page-trade .se-2 .grid-row {
                border-radius: 0;
                padding: 20px 10px;
                overflow-x: scroll;
                -ms-grid-columns: (325px)[6];
                grid-template-columns: repeat(6, 325px);
            }

        article.page-trade .se-3 {
            margin-bottom: 15px;
        }

            article.page-trade .se-3 .grid-row {
                padding: 20px 10px;
                -ms-grid-columns: calc((100% - 10px) / 2) 10px calc((100% - 10px) / 2);
                grid-template-columns: repeat(2, calc((100% - 10px) / 2));
                gap: 10px;
                border-radius: 0;
            }

        article.page-trade .se-4 {
            margin-bottom: 15px;
        }

            article.page-trade .se-4 .search-scope {
                border-radius: 0;
                padding: 20px 10px;
            }

            article.page-trade .se-4 .rwd-mb-hide {
                display: none;
            }

            article.page-trade .se-4 .rwd-pc-hide {
                display: block !important;
            }

                article.page-trade .se-4 .rwd-pc-hide .CM-input input[type=text]:disabled {
                    background-color: #fff;
                }

        article.page-trade .se-5 .product-scope-box {
            border-radius: 0;
            padding: 0 10px;
            background-color: transparent;
        }

            article.page-trade .se-5 .product-scope-box .product-scope {
                -ms-grid-columns: 1fr;
                grid-template-columns: 1fr;
                gap: 10px;
            }
}

@media screen and (max-width: 768px) {
    article.page-trade .se-1 {
        height: auto;
        overflow-x: hidden;
    }

        article.page-trade .se-1 .swiper-slide .mb-bn {
            display: block;
            width: 100%;
        }

            article.page-trade .se-1 .swiper-slide .mb-bn img {
                vertical-align: top;
            }

        article.page-trade .se-1 .swiper-slide .pc-bn {
            display: none;
        }

    article.page-trade .search-empty img {
        width: 60px;
    }
}

article.page-nextpay .pn-title {
    font-size: 20px;
    font-weight: bold;
    color: #666;
}

article.page-nextpay .pn-scope {
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(100% - 315px) 15px 300px;
    grid-template-columns: calc(100% - 315px) 300px;
    -ms-grid-rows: auto 15px auto;
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

    article.page-nextpay .pn-scope > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    article.page-nextpay .pn-scope > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    article.page-nextpay .pn-scope > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    article.page-nextpay .pn-scope > *:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    article.page-nextpay .pn-scope .wrap {
        padding: 30px;
    }

    article.page-nextpay .pn-scope .pn-info {
        -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-nextpay .pn-scope .pn-info .pn-img-scope {
            border-radius: 8px;
            border: 1px solid #dcdcdc;
            width: 100%;
            height: 163px;
            background: url(/Images/seller-product.jpg) no-repeat center center/cover;
            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;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            article.page-nextpay .pn-scope .pn-info .pn-img-scope img {
                vertical-align: middle;
            }

        article.page-nextpay .pn-scope .pn-info .pn-info-scope {
            border-radius: 8px;
            border: 1px solid #dcdcdc;
            padding: 10px 0;
        }

        article.page-nextpay .pn-scope .pn-info .pn-row {
            border-radius: 8px;
            border: 1px solid #dcdcdc;
            padding: 16px;
        }

        article.page-nextpay .pn-scope .pn-info .num-row {
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: 35px 5px auto 5px 35px;
            grid-template-columns: 35px auto 35px;
            gap: 5px;
            width: 200px;
        }

            article.page-nextpay .pn-scope .pn-info .num-row .CM-input input {
                text-align: center;
                border-radius: 6px;
                padding: 7px 14px;
                color: #666;
            }

            article.page-nextpay .pn-scope .pn-info .num-row a {
                border: 1px solid #d9d9d9;
                border-radius: 6px;
            }

            article.page-nextpay .pn-scope .pn-info .num-row .btn-minus {
                background: #fff url(/Images/ico-minus.svg) no-repeat center center;
            }

            article.page-nextpay .pn-scope .pn-info .num-row .btn-plus {
                background: #fff url(/Images/ico-plus.svg) no-repeat center center;
            }

    article.page-nextpay .pn-scope .pn-aside {
        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 1/2/4/3;
        position: sticky;
        top: 100px;
    }

        article.page-nextpay .pn-scope .pn-aside .details {
            background-color: #FFFCDF;
            padding: 15px;
            border-radius: 10px;
        }

        article.page-nextpay .pn-scope .pn-aside .amount-row {
            margin: 25px 0;
        }

            article.page-nextpay .pn-scope .pn-aside .amount-row .amount {
                font-size: 20px;
            }

        article.page-nextpay .pn-scope .pn-aside .CM-btn {
            width: 100%;
        }

    article.page-nextpay .pn-scope .pn-method {
        -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-nextpay .pn-scope .pn-method .pay-btn-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 7px;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            article.page-nextpay .pn-scope .pn-method .pay-btn-list a {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                text-decoration: none;
                color: #666;
                gap: 8px;
                padding: 12px 16px;
                border: 1px solid #dcdcdc;
                border-radius: 5px;
                width: 235px;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }

                article.page-nextpay .pn-scope .pn-method .pay-btn-list a.active {
                    color: #82B500;
                    border: 1px solid #82B500;
                    -webkit-box-shadow: 0 0 0 1px #82B500;
                    box-shadow: 0 0 0 1px #82B500;
                }

    article.page-nextpay .pn-scope .pn-terms {
        -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: 1100px) {
    article.page-nextpay {
        padding: 32px 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1000px) {
    article.page-nextpay {
        padding: 0;
        background-color: #f4f4f4;
    }

        article.page-nextpay .pn-scope {
            -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        }

            article.page-nextpay .pn-scope .wrap {
                padding: 20px;
            }

            article.page-nextpay .pn-scope .pn-info {
                -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-nextpay .pn-scope .pn-info .pn-img-scope img {
                    max-width: 100%;
                }

            article.page-nextpay .pn-scope .pn-method {
                -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-nextpay .pn-scope .pn-aside {
                -ms-grid-row: 3;
                -ms-grid-row-span: 1;
                -ms-grid-column: 1;
                -ms-grid-column-span: 1;
                grid-area: 3/1/4/2;
            }

            article.page-nextpay .pn-scope .pn-terms {
                -ms-grid-row: 4;
                -ms-grid-row-span: -1;
                -ms-grid-column: 1;
                -ms-grid-column-span: 1;
                grid-area: 4/1/3/2;
            }
}

@media screen and (max-width: 768px) {
    article.page-nextpay .pn-scope {
        gap: 10px;
    }

        article.page-nextpay .pn-scope .wrap {
            padding: 20px;
        }

        article.page-nextpay .pn-scope .pn-info .pn-img-scope {
            height: 100px;
        }

            article.page-nextpay .pn-scope .pn-info .pn-img-scope img {
                width: 100%;
                height: 100%;
                -o-object-fit: contain;
                object-fit: contain;
            }

        article.page-nextpay .pn-scope .pn-method .pay-btn-list {
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: (1fr)[2];
            grid-template-columns: repeat(2, 1fr);
        }

            article.page-nextpay .pn-scope .pn-method .pay-btn-list a {
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                padding: 12px 5px 12px 8px;
                width: auto;
                font-size: 14px;
                gap: 5px;
            }

        article.page-nextpay .pn-scope .pn-aside {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            top: unset;
            -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }
}

article.page-paysuccess .ps-title {
    font-size: 20px;
    font-weight: bold;
    color: #666;
}

article.page-paysuccess .ps-scope {
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(100% - 315px) 15px 300px;
    grid-template-columns: calc(100% - 315px) 300px;
    gap: 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

    article.page-paysuccess .ps-scope .wrap {
        padding: 30px;
    }

    article.page-paysuccess .ps-scope .ps-info {
        -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-paysuccess .ps-scope .ps-info .ps-info-scope {
            border-radius: 8px;
            border: 1px solid #dcdcdc;
            padding: 10px 0;
        }

        article.page-paysuccess .ps-scope .ps-info .btn-row {
            text-align: center;
        }

            article.page-paysuccess .ps-scope .ps-info .btn-row .CM-btn {
                width: 100%;
                max-width: 400px;
            }

    article.page-paysuccess .ps-scope .ps-aside {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 1/2/2/3;
        position: sticky;
        top: 100px;
        padding: 30px 50px;
    }

        article.page-paysuccess .ps-scope .ps-aside .img {
            width: 100%;
            max-width: 200px;
            margin: auto;
        }

            article.page-paysuccess .ps-scope .ps-aside .img img {
                width: 100%;
            }

@media screen and (max-width: 1100px) {
    article.page-paysuccess {
        padding: 32px 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1000px) {
    article.page-paysuccess {
        padding: 20px;
        background-color: #fff;
    }

        article.page-paysuccess .ps-scope {
            -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
            gap: 0;
        }

            article.page-paysuccess .ps-scope .wrap {
                padding: 0;
            }

            article.page-paysuccess .ps-scope .ps-info {
                -ms-grid-row: 1;
                -ms-grid-row-span: 1;
                -ms-grid-column: 1;
                -ms-grid-column-span: 1;
                grid-area: 1/1/2/2;
                padding-bottom: 20px;
            }

            article.page-paysuccess .ps-scope .ps-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;
                border-radius: 12px;
                padding: 15px 0;
                background: #F4F4F4;
            }
}

@media screen and (max-width: 768px) {
    article.page-paysuccess .ps-scope {
        gap: 10px;
    }

    article.page-paysuccess .ps-aside .txt {
        width: 180px;
        margin: auto;
        text-align: center;
    }
}

article.page-verifysuccess {
    all: unset;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 70px;
    grid-template-rows: auto 70px;
    height: 100vh;
    padding: 0 20px;
}

    article.page-verifysuccess .info-scope {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

        article.page-verifysuccess .info-scope .img {
            text-align: center;
        }

        article.page-verifysuccess .info-scope b {
            text-align: center;
            display: block;
        }

    article.page-verifysuccess .btn-row .CM-btn {
        width: 100%;
    }

.CM-content.page-paylanding .pl-img-scope {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    width: 100%;
    height: 250px;
    background: url(/Images/seller-product.jpg) no-repeat center center/cover;
    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;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

    .CM-content.page-paylanding .pl-img-scope img {
        vertical-align: middle;
    }

.CM-content.page-paylanding .pl-info-scope {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    .CM-content.page-paylanding .pl-img-scope {
        height: 100px;
    }

        .CM-content.page-paylanding .pl-img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }
}

.CM-content.page-receipt .pl-info-scope {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    padding: 10px 0;
}

.CM-content.page-transaction-info .order-scope {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    padding: 10px 16px;
}

    .CM-content.page-transaction-info .order-scope .info-box:first-child {
        border-bottom: 1px solid #dcdcdc;
    }

    .CM-content.page-transaction-info .order-scope .img-scope {
        padding: 10px 0;
        width: 100%;
        background: url(/Images/seller-product.jpg) no-repeat center center/cover;
        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;
        margin-top: 10px;
        height: 250px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 12px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-transaction-info .order-scope .img-scope img {
            vertical-align: middle;
            max-width: 100%;
        }

    .CM-content.page-transaction-info .order-scope .qr-scope {
        background-color: #F4F4F4;
        padding: 20px 0;
        border-radius: 12px;
    }

        .CM-content.page-transaction-info .order-scope .qr-scope .img {
            width: 100%;
            max-width: 250px;
            margin: auto;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            .CM-content.page-transaction-info .order-scope .qr-scope .img img {
                width: 100%;
            }

        .CM-content.page-transaction-info .order-scope .qr-scope .txt {
            text-align: center;
        }

.CM-content.page-transaction-info .swiper-scope {
    overflow-x: hidden;
}

    .CM-content.page-transaction-info .swiper-scope .arrow-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
    }

        .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next,
        .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev {
            all: unset;
            cursor: pointer;
        }

            .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next:after,
            .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev:after {
                display: none;
            }

        .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next,
        .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev {
            display: block;
        }

            .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next .default,
            .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev .default {
                display: block;
            }

            .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next .hover,
            .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev .hover {
                display: none;
            }

                .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next:hover .default, .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next.hover .default,
                .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev:hover .default,
                .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev.hover .default {
                    display: none;
                }

                .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next:hover .hover, .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-next.hover .hover,
                .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev:hover .hover,
                .CM-content.page-transaction-info .swiper-scope .arrow-row .swiper-button-prev.hover .hover {
                    display: block;
                }

.CM-content.page-transaction-info .swiper {
    width: 100%;
    height: 100%;
}

    .CM-content.page-transaction-info .swiper .swiper-slide {
        text-align: center;
        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;
        position: relative;
        text-decoration: none;
    }

        .CM-content.page-transaction-info .swiper .swiper-slide:hover {
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

        .CM-content.page-transaction-info .swiper .swiper-slide .p-img {
            display: block;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            border-radius: 8px;
        }

        .CM-content.page-transaction-info .swiper .swiper-slide .tag-img {
            position: absolute;
            left: 0;
            width: 60px;
            top: 15px;
        }

@media screen and (max-width: 768px) {
    .CM-content.page-transaction-info .order-scope .img-scope {
        height: 100px;
    }

        .CM-content.page-transaction-info .order-scope .img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .CM-content.page-transaction-info .CM-table table td, .CM-content.page-transaction-info .CM-table table th {
        padding: 10px 10px 10px 0;
        line-height: 1.2;
    }

    .CM-content.page-transaction-info .order-scope .qr-scope .img {
        max-width: 150px;
    }

    .CM-content.page-transaction-info .order-scope .txt {
        width: 180px;
        margin: auto;
    }

    .CM-content.page-transaction-info .swiper .swiper-slide:hover {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .CM-content.page-transaction-info .swiper .swiper-slide .tag-img {
        top: 10px;
        width: 45px;
    }
}

.CM-content.page-selladd .ps-info-scope {
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 24px;
}

.CM-content.page-selladd .fileupload {
    border-radius: 10px;
    position: relative;
    background-color: #F4F4F4;
    height: 210px;
    width: 100%;
    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;
    cursor: pointer;
}

    .CM-content.page-selladd .fileupload input[type=file] {
        display: none;
    }

    .CM-content.page-selladd .fileupload span {
        display: block;
        margin-top: 20px;
    }

.CM-content.page-selladd .uploaded {
    position: relative;
}

    .CM-content.page-selladd .uploaded .del {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .CM-content.page-selladd .uploaded .img-scope {
        border-radius: 10px;
        width: 100%;
        background: url(/Images/seller-product.jpg) no-repeat center center/cover;
        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;
        height: 210px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-selladd .uploaded .img-scope img {
            vertical-align: middle;
            max-width: 100%;
        }

@media screen and (max-width: 768px) {
    .CM-content.page-selladd .fileupload,
    .CM-content.page-selladd .uploaded .img-scope {
        height: 120px;
    }

        .CM-content.page-selladd .uploaded .img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .CM-content.page-selladd .uploaded .del img {
        width: 25px;
    }
}

.CM-content.page-buyadd .pb-info-scope {
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 24px;
}

.CM-content.page-buyadd .fileupload {
    border-radius: 10px;
    position: relative;
    background-color: #F4F4F4;
    height: 210px;
    width: 100%;
    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;
    cursor: pointer;
}

    .CM-content.page-buyadd .fileupload input[type=file] {
        display: none;
    }

    .CM-content.page-buyadd .fileupload img {
        width: 50px;
    }

    .CM-content.page-buyadd .fileupload span {
        display: block;
        margin-top: 20px;
    }

.CM-content.page-buyadd .uploaded {
    position: relative;
}

    .CM-content.page-buyadd .uploaded .del {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .CM-content.page-buyadd .uploaded .img-scope {
        border-radius: 10px;
        width: 100%;
        background: url(/Images/seller-product.jpg) no-repeat center center/cover;
        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;
        height: 210px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-buyadd .uploaded .img-scope img {
            vertical-align: middle;
            max-width: 100%;
        }

@media screen and (max-width: 768px) {
    .CM-content.page-buyadd .fileupload,
    .CM-content.page-buyadd .uploaded .img-scope {
        height: 120px;
    }

        .CM-content.page-buyadd .uploaded .img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .CM-content.page-buyadd .uploaded .del img {
        width: 25px;
    }
}

.CM-content.page-productresult .ppr-status {
    text-align: center;
    padding: 40px 0;
    font-size: 20px;
    color: #82b500;
}

.CM-content.page-productresult .qr-scope {
    background-color: #F4F4F4;
    border-radius: 8px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 280px 50px auto;
    grid-template-columns: 280px auto;
    gap: 50px;
    padding: 50px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .CM-content.page-productresult .qr-scope .img {
        width: 100%;
        max-width: 148px;
        margin: auto 0 auto auto;
        padding: 10px;
        background-color: #fff;
        border-radius: 12px;
    }

        .CM-content.page-productresult .qr-scope .img img {
            width: 100%;
            vertical-align: top;
        }

    .CM-content.page-productresult .qr-scope dl {
        width: 80%;
    }

        .CM-content.page-productresult .qr-scope dl dt {
            color: #666;
            line-height: 1.4;
        }

        .CM-content.page-productresult .qr-scope dl dd {
            margin-top: 10px;
        }

.CM-content.page-productresult .img-scope {
    width: 100%;
    background: url(/Images/seller-product.jpg) no-repeat center center/cover;
    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;
    height: 250px;
    border-radius: 8px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

    .CM-content.page-productresult .img-scope img {
        vertical-align: middle;
        max-width: 100%;
    }

.CM-content.page-productresult .ppr-info-scope {
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 16px 0;
}

@media screen and (max-width: 768px) {
    .CM-content.page-productresult .ppr-status {
        padding: 20px 0;
    }

    .CM-content.page-productresult .qr-scope {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px 0;
    }

        .CM-content.page-productresult .qr-scope .img {
            margin: auto;
        }

        .CM-content.page-productresult .qr-scope dl {
            width: 300px;
            margin: auto;
        }

            .CM-content.page-productresult .qr-scope dl dt {
                font-size: 14px;
            }

            .CM-content.page-productresult .qr-scope dl dd {
                margin-top: 5px;
            }

    .CM-content.page-productresult .img-scope {
        height: 100px;
    }

        .CM-content.page-productresult .img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }
}

.CM-content.page-sellproductlist .tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #82B500;
    margin-bottom: 20px;
}

    .CM-content.page-sellproductlist .tab-list li {
        padding: 14px 0;
        border-radius: 5px 5px 0 0;
        background-color: #F4F4F4;
        color: #666;
        text-align: center;
        cursor: pointer;
        width: 200px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-sellproductlist .tab-list li:hover, .CM-content.page-sellproductlist .tab-list li.active {
            background-color: #82B500;
            color: #fff;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

.CM-content.page-sellproductlist .func-row {
    margin-bottom: 20px;
}

    .CM-content.page-sellproductlist .func-row .btn-scope .CM-btn {
        height: 33px;
        line-height: 33px;
        width: 78px;
        font-size: 15px;
    }

.CM-content.page-sellproductlist .tab-content {
    position: relative;
}

    .CM-content.page-sellproductlist .tab-content .tc-box {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0;
        display: none;
    }

        .CM-content.page-sellproductlist .tab-content .tc-box.active {
            position: relative;
            z-index: 1;
            opacity: 1;
            display: block;
        }

        .CM-content.page-sellproductlist .tab-content .tc-box .product-scope {
            border: 1px solid #DCDCDC;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 20px;
        }

            .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .status-tag {
                color: #fff;
                font-size: 13px;
                width: 63px;
                height: 28px;
                line-height: 28px;
                text-align: center;
                border-radius: 15px;
            }

            .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .tag-1 {
                background-color: #13AB67;
            }

            .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .tag-2 {
                background-color: #33B1FF;
            }

            .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .tag-3 {
                background-color: #808080;
            }

            .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .ps-info {
                padding-left: 28px;
                padding-right: 10px;
                -webkit-box-align: end;
                -ms-flex-align: end;
                align-items: flex-end;
            }

                .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .ps-info dl {
                    line-height: 2;
                }

            .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .tool-row {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 20px;
            }

                .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .tool-row a {
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    text-decoration: none;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    gap: 5px;
                    color: #5a675c;
                    font-size: 14px;
                }

@media screen and (max-width: 768px) {
    .CM-content.page-sellproductlist .tab-list {
        gap: 10px;
    }

    .CM-content.page-sellproductlist .func-row .btn-scope .CM-btn {
        width: 50px;
        height: 28px;
        line-height: 28px;
        font-size: 14px;
    }

    .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .ps-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }

        .CM-content.page-sellproductlist .tab-content .tc-box .product-scope .ps-info .tool-row {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #DCDCDC;
        }
}

.CM-content.page-buyproductlist .tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #82B500;
    margin-bottom: 20px;
}

    .CM-content.page-buyproductlist .tab-list li {
        padding: 14px 0;
        border-radius: 5px 5px 0 0;
        background-color: #F4F4F4;
        color: #666;
        text-align: center;
        cursor: pointer;
        width: 200px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-buyproductlist .tab-list li:hover, .CM-content.page-buyproductlist .tab-list li.active {
            background-color: #82B500;
            color: #fff;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

.CM-content.page-buyproductlist .func-row {
    margin-bottom: 20px;
}

    .CM-content.page-buyproductlist .func-row .btn-scope .CM-btn {
        height: 33px;
        line-height: 33px;
        width: 78px;
        font-size: 15px;
    }

.CM-content.page-buyproductlist .tab-content {
    position: relative;
}

    .CM-content.page-buyproductlist .tab-content .tc-box {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0;
        display: none;
    }

        .CM-content.page-buyproductlist .tab-content .tc-box.active {
            position: relative;
            z-index: 1;
            opacity: 1;
            display: block;
        }

        .CM-content.page-buyproductlist .tab-content .tc-box .product-scope {
            border: 1px solid #DCDCDC;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 20px;
        }

            .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .status-tag {
                color: #fff;
                font-size: 13px;
                width: 63px;
                height: 28px;
                line-height: 28px;
                text-align: center;
                border-radius: 15px;
            }

            .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .tag-1 {
                background-color: #13AB67;
            }

            .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .tag-2 {
                background-color: #33B1FF;
            }

            .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .tag-3 {
                background-color: #808080;
            }

            .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .pb-info {
                padding-left: 28px;
                padding-right: 10px;
                -webkit-box-align: end;
                -ms-flex-align: end;
                align-items: flex-end;
            }

                .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .pb-info dl {
                    line-height: 2;
                }

            .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .tool-row {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 20px;
            }

                .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .tool-row a {
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    text-decoration: none;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    gap: 5px;
                    color: #5a675c;
                    font-size: 14px;
                }

@media screen and (max-width: 768px) {
    .CM-content.page-buyproductlist .tab-list {
        gap: 10px;
    }

    .CM-content.page-buyproductlist .func-row .btn-scope .CM-btn {
        width: 50px;
        height: 28px;
        line-height: 28px;
        font-size: 14px;
    }

    .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .pb-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }

        .CM-content.page-buyproductlist .tab-content .tc-box .product-scope .pb-info .tool-row {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #DCDCDC;
        }
}

.CM-content.page-editproduct .pep-info-scope {
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 24px;
}

.CM-content.page-editproduct .fileupload {
    border-radius: 10px;
    position: relative;
    background-color: #F4F4F4;
    height: 210px;
    width: 100%;
    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;
    cursor: pointer;
}

    .CM-content.page-editproduct .fileupload input[type=file] {
        display: none;
    }

    .CM-content.page-editproduct .fileupload img {
        width: 50px;
    }

    .CM-content.page-editproduct .fileupload span {
        display: block;
        margin-top: 20px;
    }

.CM-content.page-editproduct .uploaded {
    position: relative;
}

    .CM-content.page-editproduct .uploaded .del {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .CM-content.page-editproduct .uploaded .img-scope {
        border-radius: 10px;
        width: 100%;
        background: url(/Images/seller-product.jpg) no-repeat center center/cover;
        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;
        height: 210px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-editproduct .uploaded .img-scope img {
            vertical-align: middle;
            max-width: 100%;
        }

.CM-content.page-editproduct .qr-scope {
    background-color: #F4F4F4;
    padding: 20px 0;
    border-radius: 12px;
}

    .CM-content.page-editproduct .qr-scope .img {
        width: 100%;
        max-width: 250px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        margin: auto;
    }

        .CM-content.page-editproduct .qr-scope .img img {
            width: 100%;
        }

@media screen and (max-width: 768px) {
    .CM-content.page-editproduct .fileupload,
    .CM-content.page-editproduct .uploaded .img-scope {
        height: 120px;
    }

        .CM-content.page-editproduct .uploaded .img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .CM-content.page-editproduct .uploaded .del img {
        width: 25px;
    }

    .CM-content.page-editproduct .qr-scope .img {
        max-width: 150px;
    }
}

.CM-content.page-sellorderlist .tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    border-bottom: 2px solid #82B500;
    margin-bottom: 15px;
}

    .CM-content.page-sellorderlist .tab-list li {
        padding: 14px 10px;
        border-radius: 5px 5px 0 0;
        background-color: #F4F4F4;
        color: #666;
        text-align: center;
        cursor: pointer;
        width: 130px;
        font-size: 15px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-sellorderlist .tab-list li:hover, .CM-content.page-sellorderlist .tab-list li.active {
            background-color: #82B500;
            color: #fff;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

.CM-content.page-sellorderlist .tab-content {
    position: relative;
}

    .CM-content.page-sellorderlist .tab-content .tc-box {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0;
        display: none;
    }

        .CM-content.page-sellorderlist .tab-content .tc-box.active {
            position: relative;
            z-index: 1;
            opacity: 1;
            display: block;
        }

        .CM-content.page-sellorderlist .tab-content .tc-box .product-scope {
            border: 1px solid #DCDCDC;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 15px;
        }

            .CM-content.page-sellorderlist .tab-content .tc-box .product-scope .btn-details-toggle img {
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

            .CM-content.page-sellorderlist .tab-content .tc-box .product-scope .btn-details-toggle.open img {
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

        .CM-content.page-sellorderlist .tab-content .tc-box .toggle-scope {
            border-top: 1px solid #dcdcdc;
            padding: 20px 20px 0 20px;
            margin-top: 10px;
            display: none;
        }

        .CM-content.page-sellorderlist .tab-content .tc-box .img-scope {
            border-radius: 10px;
            width: 100%;
            background: url(/Images/seller-product.jpg) no-repeat center center/cover;
            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;
            height: 210px;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            .CM-content.page-sellorderlist .tab-content .tc-box .img-scope img {
                vertical-align: middle;
                max-width: 100%;
            }

.CM-content.page-sellorderlist .CM-pages-row a.active, .CM-content.page-sellorderlist .CM-pages-row span.active {
    background-color: #82B500;
}

@media screen and (max-width: 768px) {
    .CM-content.page-sellorderlist .tab-list {
        overflow-x: scroll;
    }

        .CM-content.page-sellorderlist .tab-list li {
            width: unset;
            min-width: 90px;
        }

    .CM-content.page-sellorderlist .tab-content .tc-box .toggle-scope {
        padding: 10px 0;
    }

    .CM-content.page-sellorderlist .tab-content .tc-box .img-scope {
        height: 100px;
    }

        .CM-content.page-sellorderlist .tab-content .tc-box .img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .CM-content.page-sellorderlist .tab-content .tc-box .product-scope {
        padding: 8px;
    }

    .CM-content.page-sellorderlist .tab-content .CM-table table td, .CM-content.page-sellorderlist .tab-content .CM-table table th {
        font-size: 14px;
        padding: 5px;
        line-height: 1.4;
    }
}

.CM-content.page-sellorderlist .tab-list, .CM-content.page-buyorderlist .tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    border-bottom: 2px solid #82B500;
    margin-bottom: 15px;
}

    .CM-content.page-sellorderlist .tab-list li, .CM-content.page-buyorderlist .tab-list li {
        padding: 14px 10px;
        border-radius: 5px 5px 0 0;
        background-color: #F4F4F4;
        color: #666;
        text-align: center;
        cursor: pointer;
        width: 130px;
        font-size: 15px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
    }

        .CM-content.page-sellorderlist .tab-list li:hover, .CM-content.page-sellorderlist .tab-list li.active, .CM-content.page-buyorderlist .tab-list li:hover, .CM-content.page-buyorderlist .tab-list li.active {
            background-color: #82B500;
            color: #fff;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

.CM-content.page-sellorderlist .tab-content, .CM-content.page-buyorderlist .tab-content {
    position: relative;
}

    .CM-content.page-sellorderlist .tab-content .tc-box, .CM-content.page-buyorderlist .tab-content .tc-box {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0;
        display: none;
    }

        .CM-content.page-sellorderlist .tab-content .tc-box.active, .CM-content.page-buyorderlist .tab-content .tc-box.active {
            position: relative;
            z-index: 1;
            opacity: 1;
            display: block;
        }

        .CM-content.page-sellorderlist .tab-content .tc-box .product-scope, .CM-content.page-buyorderlist .tab-content .tc-box .product-scope {
            border: 1px solid #DCDCDC;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 15px;
        }

            .CM-content.page-sellorderlist .tab-content .tc-box .product-scope .btn-details-toggle img, .CM-content.page-buyorderlist .tab-content .tc-box .product-scope .btn-details-toggle img {
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

            .CM-content.page-sellorderlist .tab-content .tc-box .product-scope .btn-details-toggle.open img, .CM-content.page-buyorderlist .tab-content .tc-box .product-scope .btn-details-toggle.open img {
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

        .CM-content.page-sellorderlist .tab-content .tc-box .toggle-scope, .CM-content.page-buyorderlist .tab-content .tc-box .toggle-scope {
            border-top: 1px solid #dcdcdc;
            padding: 20px 20px 0 20px;
            margin-top: 10px;
            display: none;
        }

        .CM-content.page-sellorderlist .tab-content .tc-box .img-scope, .CM-content.page-buyorderlist .tab-content .tc-box .img-scope {
            border-radius: 10px;
            width: 100%;
            background: url(/Images/seller-product.jpg) no-repeat center center/cover;
            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;
            height: 210px;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            .CM-content.page-sellorderlist .tab-content .tc-box .img-scope img, .CM-content.page-buyorderlist .tab-content .tc-box .img-scope img {
                vertical-align: middle;
                max-width: 100%;
            }

.CM-content.page-sellorderlist .CM-pages-row a.active, .CM-content.page-sellorderlist .CM-pages-row span.active, .CM-content.page-buyorderlist .CM-pages-row a.active, .CM-content.page-buyorderlist .CM-pages-row span.active {
    background-color: #82B500;
}

@media screen and (max-width: 768px) {
    .CM-content.page-sellorderlist .tab-list, .CM-content.page-buyorderlist .tab-list {
        overflow-x: scroll;
    }

        .CM-content.page-sellorderlist .tab-list li, .CM-content.page-buyorderlist .tab-list li {
            width: unset;
            min-width: 90px;
        }

    .CM-content.page-sellorderlist .tab-content .tc-box .toggle-scope, .CM-content.page-buyorderlist .tab-content .tc-box .toggle-scope {
        padding: 10px 0;
    }

    .CM-content.page-sellorderlist .tab-content .tc-box .img-scope, .CM-content.page-buyorderlist .tab-content .tc-box .img-scope {
        height: 100px;
    }

        .CM-content.page-sellorderlist .tab-content .tc-box .img-scope img, .CM-content.page-buyorderlist .tab-content .tc-box .img-scope img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .CM-content.page-sellorderlist .tab-content .tc-box .product-scope, .CM-content.page-buyorderlist .tab-content .tc-box .product-scope {
        padding: 8px;
    }

    .CM-content.page-sellorderlist .tab-content .CM-table table td, .CM-content.page-sellorderlist .tab-content .CM-table table th, .CM-content.page-buyorderlist .tab-content .CM-table table td, .CM-content.page-buyorderlist .tab-content .CM-table table th {
        font-size: 14px;
        padding: 5px;
        line-height: 1.4;
    }
}

.CM-content.page-linemamberdata .time-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .CM-content.page-linemamberdata .time-row .time-scope {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
    }

        .CM-content.page-linemamberdata .time-row .time-scope .CM-radio {
            width: 100%;
        }

        .CM-content.page-linemamberdata .time-row .time-scope:first-child {
            padding: 10px 10px 10px 0;
            border-radius: 0 0 8px 0;
            background-color: #fff;
            z-index: 1;
            position: relative;
        }

    .CM-content.page-linemamberdata .time-row .set-time {
        padding: 10px;
        border-radius: 8px 8px 0 0;
        position: relative;
    }

        .CM-content.page-linemamberdata .time-row .set-time.active {
            background-color: #EFFAFA;
        }

            .CM-content.page-linemamberdata .time-row .set-time.active:after {
                content: "";
                position: absolute;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 0 10px 10px;
                bottom: 0;
                left: -10px;
                border-color: transparent transparent #EFFAFA transparent;
            }

.CM-content.page-linemamberdata .time-toggle-scope {
    background-color: #EFFAFA;
    padding: 7px 12px;
    border-radius: 8px 0 8px 8px;
    display: none;
}

.CM-lightbox.p-search-scope .wrap {
    width: 100%;
    padding: 70px 20px 50px;
}

    .CM-lightbox.p-search-scope .wrap .btn-close {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        right: unset;
        left: 0;
    }

        .CM-lightbox.p-search-scope .wrap .btn-close img {
            width: 40px;
        }

    .CM-lightbox.p-search-scope .wrap .lb-content .select-row {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

        .CM-lightbox.p-search-scope .wrap .lb-content .select-row select {
            color: #808080;
        }

    .CM-lightbox.p-search-scope .wrap .lb-content .tab-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .CM-lightbox.p-search-scope .wrap .lb-content .tab-group span {
            border: 1px solid #dcdcdc;
            border-radius: 6px;
            display: inline-block;
            height: 38px;
            line-height: 36px;
            padding: 0 16px;
            text-align: center;
            color: #808080;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            cursor: pointer;
            -webkit-transition: 0.3s linear;
            transition: 0.3s linear;
        }

            .CM-lightbox.p-search-scope .wrap .lb-content .tab-group span.current {
                background-color: #FFE696;
                border-color: #FFE696;
                color: #1e1e1e;
                -webkit-transition: 0.3s linear;
                transition: 0.3s linear;
            }

    .CM-lightbox.p-search-scope .wrap .btn-row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .CM-lightbox.p-search-scope .wrap .btn-row .btn {
            text-decoration: none;
            border-radius: 10px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            height: 46px;
            line-height: 46px;
            border: 1px solid #F9BE00;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            background-color: #F9BE00;
            color: #fff;
            font-weight: 500;
            width: 200px;
            -webkit-box-flex: 0;
            -ms-flex-positive: 0;
            flex-grow: 0;
        }

@media screen and (max-width: 768px) {
    .CM-lightbox.p-search-scope .wrap {
        height: 100%;
        border-radius: 0;
        padding: 70px 10px 50px;
        max-width: 100%;
    }
}

.CM-lightbox.pp-paylanding .wrap {
    padding: 90px 25px 25px;
    max-width: 640px;
}

.CM-lightbox.pp-paylanding .lb-title {
    font-size: 20px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    top: 45px;
}

.CM-lightbox.pp-paylanding .qr-box {
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

    .CM-lightbox.pp-paylanding .qr-box img {
        width: 100%;
        max-width: 360px;
    }

.CM-lightbox.pp-paylanding .btn-row {
    margin: 30px auto 10px;
}

@media screen and (max-width: 768px) {
    .CM-lightbox.pp-paylanding .wrap {
        width: 100%;
        height: 100%;
        max-width: unset;
        border-radius: 0;
    }
}
