﻿.popup-email, .popup-email-mobile {
    align-items: center;
    display: none;
    justify-content: center;
    overflow: hidden;
    transform: translateZ(999px);
    z-index: 999
}

    .popup-email, .popup-email .popup-email-bg, .popup-email-mobile, .popup-email-mobile .popup-email-bg {
        bottom: 0;
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%
    }

        .popup-email .popup-email-bg, .popup-email-mobile .popup-email-bg {
            background-color: rgba(0,0,0,.9);
            z-index: 2
        }

        .popup-email .popup-email-ct, .popup-email-mobile .popup-email-ct {
            display: none;
            position: relative;
            z-index: 3
        }

        .popup-email .popup-email-main, .popup-email-mobile .popup-email-main {
            background-color: #fff;
            border-radius: 4px;
            box-shadow: 0 10px 20px 0 rgba(0,0,0,.4);
            overflow: hidden
        }

            .popup-email .popup-email-main .popup-email-header, .popup-email-mobile .popup-email-main .popup-email-header {
                height: 50px;
                left: 0;
                position: absolute;
                top: 0;
                width: 100%;
                z-index: 3
            }

                .popup-email .popup-email-main .popup-email-header .close, .popup-email-mobile .popup-email-main .popup-email-header .close {
                    cursor: pointer;
                    float: right;
                    margin: 25px 20px;
                    width: 16px
                }

            .popup-email .popup-email-main .popup-email-body, .popup-email-mobile .popup-email-main .popup-email-body {
                height: 100%;
                width: 100%
            }

                .popup-email .popup-email-main .popup-email-body .top, .popup-email-mobile .popup-email-main .popup-email-body .top {
                    position: relative;
                    width: 100%
                }

                .popup-email .popup-email-main .popup-email-body .bottom .line-input button, .popup-email .popup-email-main .popup-email-body .bottom .line-input input, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input button, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input {
                    border-radius: 20px;
                    color: rgba(0,0,0,.7);
                    font-size: 14px;
                    height: 40px;
                    outline: none;
                    transition: all .25s
                }

                .popup-email .popup-email-main .popup-email-body .bottom .line-input input, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input {
                    -webkit-appearance: none;
                    background-color: #fff;
                    border: 1px solid #e6e6e6;
                    flex: 1;
                    line-height: 20px;
                    padding: 10px 15px
                }

                    .popup-email .popup-email-main .popup-email-body .bottom .line-input input textarea::-webkit-input-placeholder, .popup-email .popup-email-main .popup-email-body .bottom .line-input input::-webkit-input-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input textarea::-webkit-input-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input::-webkit-input-placeholder {
                        color: rgba(0,0,0,.4)
                    }

                    .popup-email .popup-email-main .popup-email-body .bottom .line-input input textarea:-moz-placeholder, .popup-email .popup-email-main .popup-email-body .bottom .line-input input textarea::-moz-placeholder, .popup-email .popup-email-main .popup-email-body .bottom .line-input input:-moz-placeholder, .popup-email .popup-email-main .popup-email-body .bottom .line-input input::-moz-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input textarea:-moz-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input textarea::-moz-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input:-moz-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input::-moz-placeholder {
                        color: rgba(0,0,0,.4)
                    }

                    .popup-email .popup-email-main .popup-email-body .bottom .line-input input textarea:-ms-input-placeholder, .popup-email .popup-email-main .popup-email-body .bottom .line-input input:-ms-input-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input textarea:-ms-input-placeholder, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input input:-ms-input-placeholder {
                        color: rgba(0,0,0,.4)
                    }

                .popup-email .popup-email-main .popup-email-body .bottom .line-input button, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input button {
                    align-items: center;
                    background-image: linear-gradient(-135deg,#ffeb00,#ffd200);
                    border: none;
                    display: flex;
                    padding: 0 29px
                }

                    .popup-email .popup-email-main .popup-email-body .bottom .line-input button .loading, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input button .loading {
                        -webkit-animation: rotate 2s ease-in-out infinite;
                        animation: rotate 2s ease-in-out infinite;
                        display: none;
                        height: 20px;
                        transform-origin: center center;
                        width: 20px
                    }

                    .popup-email .popup-email-main .popup-email-body .bottom .line-input button .path, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-input button .path {
                        stroke: #ffd200;
                        stroke-dasharray: 1,200;
                        stroke-dashoffset: 0;
                        stroke-linecap: round;
                        -webkit-animation: dash 1.5s ease-in-out infinite;
                        animation: dash 1.5s ease-in-out infinite
                    }

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35
    }

    to {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35
    }

    to {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.popup-email .popup-email-main .popup-email-body .bottom .line-tip, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip {
    display: none;
    margin-top: 15px
}

    .popup-email .popup-email-main .popup-email-body .bottom .line-tip .error, .popup-email .popup-email-main .popup-email-body .bottom .line-tip .success, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .error, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .success {
        align-items: center;
        display: none
    }

        .popup-email .popup-email-main .popup-email-body .bottom .line-tip .error img, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .error img {
            height: 17px;
            margin-right: 12px
        }

        .popup-email .popup-email-main .popup-email-body .bottom .line-tip .error .text1, .popup-email .popup-email-main .popup-email-body .bottom .line-tip .error .text2, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .error .text1, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .error .text2 {
            color: #f13649;
            font-size: 12px
        }

        .popup-email .popup-email-main .popup-email-body .bottom .line-tip .error .text2, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .error .text2 {
            display: none
        }

    .popup-email .popup-email-main .popup-email-body .bottom .line-tip .success, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .success {
        justify-content: space-between
    }

        .popup-email .popup-email-main .popup-email-body .bottom .line-tip .success .text, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .success .text {
            color: #1bc864;
            font-size: 14px;
            max-width: 90%
        }

        .popup-email .popup-email-main .popup-email-body .bottom .line-tip .success .icon, .popup-email-mobile .popup-email-main .popup-email-body .bottom .line-tip .success .icon {
            border-bottom: 2px solid #1bc864;
            border-right: 2px solid #1bc864;
            height: 14px;
            margin-right: 10px;
            transform: rotate(45deg) translateY(-2px);
            width: 7px
        }

.popup-email .popup-email-main .popup-email-body .bottom.submit input, .popup-email-mobile .popup-email-main .popup-email-body .bottom.submit input {
    border-color: #e6e6e6;
    color: #e6e6e6;
    cursor: not-allowed
}

.popup-email .popup-email-main .popup-email-body .bottom.submit button, .popup-email-mobile .popup-email-main .popup-email-body .bottom.submit button {
    cursor: wait
}

    .popup-email .popup-email-main .popup-email-body .bottom.submit button span, .popup-email-mobile .popup-email-main .popup-email-body .bottom.submit button span {
        display: none
    }

    .popup-email .popup-email-main .popup-email-body .bottom.submit button .loading, .popup-email-mobile .popup-email-main .popup-email-body .bottom.submit button .loading {
        display: block
    }

.popup-email .popup-email-main .popup-email-body .bottom.error .line-input input, .popup-email-mobile .popup-email-main .popup-email-body .bottom.error .line-input input {
    background-color: rgba(241,54,73,.05);
    border-color: #f13649;
    color: #f13649
}

.popup-email .popup-email-main .popup-email-body .bottom.error .line-input button, .popup-email-mobile .popup-email-main .popup-email-body .bottom.error .line-input button {
    background-image: linear-gradient(-135deg,#ffeb00,#ffd200);
    cursor: not-allowed;
    opacity: .3
}

.popup-email .popup-email-main .popup-email-body .bottom.error .line-tip, .popup-email-mobile .popup-email-main .popup-email-body .bottom.error .line-tip {
    display: block
}

    .popup-email .popup-email-main .popup-email-body .bottom.error .line-tip .error, .popup-email-mobile .popup-email-main .popup-email-body .bottom.error .line-tip .error {
        display: flex
    }

.popup-email .popup-email-main .popup-email-body .bottom.error2 .line-tip .error .text1, .popup-email-mobile .popup-email-main .popup-email-body .bottom.error2 .line-tip .error .text1 {
    display: none
}

.popup-email .popup-email-main .popup-email-body .bottom.error2 .line-tip .error .text2, .popup-email-mobile .popup-email-main .popup-email-body .bottom.error2 .line-tip .error .text2 {
    display: block
}

.popup-email .popup-email-main .popup-email-body .bottom.success .line-tip, .popup-email-mobile .popup-email-main .popup-email-body .bottom.success .line-tip {
    display: block;
    margin-top: 0
}

    .popup-email .popup-email-main .popup-email-body .bottom.success .line-tip .success, .popup-email-mobile .popup-email-main .popup-email-body .bottom.success .line-tip .success {
        display: flex
    }

.popup-email .popup-email-main .popup-email-body .bottom .privacy-tip, .popup-email-mobile .popup-email-main .popup-email-body .bottom .privacy-tip {
    color: rgba(0,0,0,.4);
    font-size: 12px;
    line-height: 18px;
    margin-top: 16px;
    width: 420px
}

    .popup-email .popup-email-main .popup-email-body .bottom .privacy-tip a, .popup-email-mobile .popup-email-main .popup-email-body .bottom .privacy-tip a {
        color: #f9c439
    }

.popup-email .popup-email-ct {
    width: 600px
}

    .popup-email .popup-email-ct .popup-email-body .top {
        min-height: 224px
    }

        .popup-email .popup-email-ct .popup-email-body .top .bgImg {
            width: 100%
        }

        .popup-email .popup-email-ct .popup-email-body .top .bundle {
            bottom: 0;
            left: 0;
            padding: 20px 36px;
            position: absolute
        }

            .popup-email .popup-email-ct .popup-email-body .top .bundle.general .text, .popup-email .popup-email-ct .popup-email-body .top .bundle.general .text-sm {
                color: #000;
                text-shadow: none
            }

            .popup-email .popup-email-ct .popup-email-body .top .bundle .text {
                color: #fff;
                font-size: 28px;
                font-weight: 900;
                line-height: 33px;
                text-shadow: 0 0 4px rgba(0,0,0,.5)
            }

            .popup-email .popup-email-ct .popup-email-body .top .bundle .text-sm {
                color: #fff;
                font-size: 15px;
                line-height: 18px;
                margin-top: 4px;
                text-shadow: 0 0 4px rgba(0,0,0,.5);
                white-space: pre-wrap
            }

    .popup-email .popup-email-ct .popup-email-body .bottom {
        padding: 22px 32px;
        width: 600px
    }

        .popup-email .popup-email-ct .popup-email-body .bottom .line-input {
            align-items: center;
            display: flex;
            height: 40px;
            justify-content: center;
            margin-bottom: 3px
        }

            .popup-email .popup-email-ct .popup-email-body .bottom .line-input button {
                align-items: center;
                margin-left: 16px
            }

.popup-email-mobile .popup-email-ct {
    max-width: 280px;
    width: 90%
}

    .popup-email-mobile .popup-email-ct .popup-email-body .top {
        min-height: 260px
    }

        .popup-email-mobile .popup-email-ct .popup-email-body .top .bgImg {
            width: 100%
        }

        .popup-email-mobile .popup-email-ct .popup-email-body .top .bundle {
            left: 0;
            padding: 24px;
            position: absolute;
            top: 0
        }

            .popup-email-mobile .popup-email-ct .popup-email-body .top .bundle.general .text, .popup-email-mobile .popup-email-ct .popup-email-body .top .bundle.general .text-sm {
                color: #000
            }

            .popup-email-mobile .popup-email-ct .popup-email-body .top .bundle .text {
                color: #fff;
                font-size: 22px;
                font-weight: 900;
                line-height: 25px
            }

            .popup-email-mobile .popup-email-ct .popup-email-body .top .bundle .text-sm {
                color: #fff;
                font-size: 12px;
                line-height: 15px;
                margin-top: 4px
            }

    .popup-email-mobile .popup-email-ct .popup-email-body .bottom {
        padding: 22px
    }

        .popup-email-mobile .popup-email-ct .popup-email-body .bottom .line-input button, .popup-email-mobile .popup-email-ct .popup-email-body .bottom .line-input input {
            width: 100%
        }

        .popup-email-mobile .popup-email-ct .popup-email-body .bottom .line-input button {
            font-weight: 700;
            justify-content: center;
            margin-top: 16px
        }

        .popup-email-mobile .popup-email-ct .popup-email-body .bottom .privacy-tip {
            width: auto
        }

.store-popup-email, .store-popup-email-mobile {
    align-items: center;
    display: none;
    justify-content: center;
    overflow: hidden;
    transform: translateZ(999px);
    z-index: 999
}

    .store-popup-email, .store-popup-email .popup-email-bg, .store-popup-email-mobile, .store-popup-email-mobile .popup-email-bg {
        bottom: 0;
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%
    }

        .store-popup-email .popup-email-bg, .store-popup-email-mobile .popup-email-bg {
            background-color: rgba(0,0,0,.9);
            z-index: 2
        }

        .store-popup-email .popup-email-ct, .store-popup-email-mobile .popup-email-ct {
            display: none;
            position: relative;
            width: 600px;
            z-index: 3
        }

        .store-popup-email .popup-email-main, .store-popup-email-mobile .popup-email-main {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden
        }

            .store-popup-email .popup-email-main .close, .store-popup-email-mobile .popup-email-main .close {
                cursor: pointer;
                position: absolute;
                right: 16px;
                top: 16px;
                width: 16px
            }

            .store-popup-email .popup-email-main .step1 .top, .store-popup-email-mobile .popup-email-main .step1 .top {
                width: 100%
            }

            .store-popup-email .popup-email-main .step1 .bottom, .store-popup-email-mobile .popup-email-main .step1 .bottom {
                padding: 24px
            }

                .store-popup-email .popup-email-main .step1 .bottom .form, .store-popup-email-mobile .popup-email-main .step1 .bottom .form {
                    display: flex;
                    flex-wrap: wrap
                }

                    .store-popup-email .popup-email-main .step1 .bottom .form input[type=text], .store-popup-email-mobile .popup-email-main .step1 .bottom .form input[type=text] {
                        border: 1px solid #ededed;
                        border-radius: 90px;
                        color: #2d2d2d;
                        flex: none;
                        height: 40px;
                        margin-right: 16px;
                        outline: none;
                        padding-left: 16px;
                        width: 400px
                    }

                    .store-popup-email .popup-email-main .step1 .bottom .form .btn, .store-popup-email-mobile .popup-email-main .step1 .bottom .form .btn {
                        background: transparent;
                        background-image: linear-gradient(45deg,#fe0,#ffd200);
                        border: 0;
                        border-radius: 90px;
                        color: #2d2d2d;
                        flex: auto;
                        font-weight: bolder;
                        height: 40px;
                        line-height: 40px;
                        outline: 0;
                        text-align: center
                    }

                        .store-popup-email .popup-email-main .step1 .bottom .form .btn[disabled], .store-popup-email-mobile .popup-email-main .step1 .bottom .form .btn[disabled] {
                            opacity: .6
                        }

                .store-popup-email .popup-email-main .step1 .bottom .info, .store-popup-email-mobile .popup-email-main .step1 .bottom .info {
                    align-items: flex-start;
                    background-color: #eaedf0;
                    border-radius: 8px;
                    display: flex;
                    margin-top: 14px;
                    padding: 14px 14px 14px 0
                }

                    .store-popup-email .popup-email-main .step1 .bottom .info .ic, .store-popup-email-mobile .popup-email-main .step1 .bottom .info .ic {
                        margin: 0 10px;
                        width: 20px
                    }

                    .store-popup-email .popup-email-main .step1 .bottom .info .txt, .store-popup-email-mobile .popup-email-main .step1 .bottom .info .txt {
                        color: rgba(0,0,0,.65);
                        flex: auto;
                        font-size: 12px
                    }

                    .store-popup-email .popup-email-main .step1 .bottom .info.info-error, .store-popup-email-mobile .popup-email-main .step1 .bottom .info.info-error {
                        background-color: rgba(251,54,73,.15)
                    }

            .store-popup-email .popup-email-main .step1.error .bottom .form input[type=text], .store-popup-email-mobile .popup-email-main .step1.error .bottom .form input[type=text] {
                border-color: #f13649
            }

            .store-popup-email .popup-email-main .step2, .store-popup-email-mobile .popup-email-main .step2 {
                padding: 0 16px
            }

                .store-popup-email .popup-email-main .step2 .title, .store-popup-email-mobile .popup-email-main .step2 .title {
                    color: #000;
                    font-size: 28px;
                    font-weight: 600;
                    line-height: 100px
                }

                .store-popup-email .popup-email-main .step2 .main, .store-popup-email-mobile .popup-email-main .step2 .main {
                    align-items: center;
                    border-bottom: 1px solid #f3f3f3;
                    border-top: 1px solid #f3f3f3;
                    display: flex;
                    padding: 32px 0
                }

                    .store-popup-email .popup-email-main .step2 .main img, .store-popup-email-mobile .popup-email-main .step2 .main img {
                        margin-right: 32px;
                        width: 120px
                    }

                    .store-popup-email .popup-email-main .step2 .main .txt, .store-popup-email-mobile .popup-email-main .step2 .main .txt {
                        color: rgba(0,0,0,.65)
                    }

                .store-popup-email .popup-email-main .step2 .footer, .store-popup-email-mobile .popup-email-main .step2 .footer {
                    padding: 32px 0;
                    text-align: right
                }

                    .store-popup-email .popup-email-main .step2 .footer .btn, .store-popup-email-mobile .popup-email-main .step2 .footer .btn {
                        background: transparent;
                        background-image: linear-gradient(45deg,#fe0,#ffd200);
                        border: 0;
                        border-radius: 90px;
                        color: #2d2d2d;
                        font-weight: bolder;
                        height: 48px;
                        line-height: 48px;
                        min-width: 128px;
                        outline: 0;
                        text-align: center
                    }

        .store-popup-email-mobile .popup-email-ct {
            width: 288px
        }

            .store-popup-email-mobile .popup-email-ct .step1 .top {
                width: 100%
            }

            .store-popup-email-mobile .popup-email-ct .step1 .bottom .form input[type=text] {
                margin-bottom: 12px;
                margin-right: 0;
                width: 100%
            }

            .store-popup-email-mobile .popup-email-ct .step2 {
                padding: 20px
            }

                .store-popup-email-mobile .popup-email-ct .step2 .title {
                    font-size: 20px;
                    line-height: 1;
                    padding: 12px
                }

                .store-popup-email-mobile .popup-email-ct .step2 .main {
                    flex-direction: column;
                    padding: 12px 0 24px;
                    text-align: center
                }

                .store-popup-email-mobile .popup-email-ct .step2 .footer {
                    padding: 12px 0 0;
                    text-align: center
                }

                    .store-popup-email-mobile .popup-email-ct .step2 .footer .btn {
                        min-width: 158px
                    }

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__container {
    position: relative;
    box-sizing: border-box
}

.splide__list {
    margin: 0 !important;
    padding: 0 !important;
    width: -webkit-max-content;
    width: max-content;
    will-change: transform
}

.splide.is-active .splide__list {
    display: flex
}

.splide__pagination {
    display: inline-flex;
    align-items: center;
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0
}

    .splide__pagination li {
        list-style-type: none;
        display: inline-block;
        line-height: 1;
        margin: 0
    }

.splide {
    visibility: hidden
}

.splide, .splide__slide {
    position: relative;
    outline: none
}

.splide__slide {
    box-sizing: border-box;
    list-style-type: none !important;
    margin: 0;
    flex-shrink: 0
}

    .splide__slide img {
        vertical-align: bottom
    }

.splide__slider {
    position: relative
}

.splide__spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #999;
    border-left-color: transparent;
    animation: splide-loading 1s linear infinite
}

.splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden
}

.splide--draggable > .splide__track > .splide__list > .splide__slide {
    -webkit-user-select: none;
    user-select: none
}

.splide--fade > .splide__track > .splide__list {
    display: block
}

    .splide--fade > .splide__track > .splide__list > .splide__slide {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0
    }

        .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
            position: relative;
            z-index: 1;
            opacity: 1
        }

.splide--rtl {
    direction: rtl
}

.splide--ttb > .splide__track > .splide__list {
    display: block
}

.splide--ttb > .splide__pagination {
    width: auto
}

body, html {
    font-family: Gilroy,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Helvetica,Arial,PingFang SC,-apple-system,Noto Sans CJK SC,Hiragino Sans GB,Noto Sans,Microsoft YaHei,微软雅黑,WenQuanYi Micro Hei,Heiti SC,sans-serif
}

a {
    color: inherit
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

.popup-email .popup-email-ct .popup-email-body .top .bundle .text, .popup-email .popup-email-ct .popup-email-body .top .bundle .text-sm {
    color: #000;
    text-shadow: none
}

.popup-email-mobile .popup-email-ct .popup-email-body .top .bundle {
    bottom: 0;
    top: auto
}

    .popup-email-mobile .popup-email-ct .popup-email-body .top .bundle .text, .popup-email-mobile .popup-email-ct .popup-email-body .top .bundle .text-sm {
        color: #000
    }

.modal-shot-lab h1, .my-page h1 {
    line-height: 1.12;
    margin: 0
}

.modal-shot-lab h2, .modal-shot-lab li, .modal-shot-lab p, .my-page h2, .my-page li, .my-page p {
    line-height: 1.16;
    margin: 0
}

.modal-shot-lab.zh-cn h1, .modal-shot-lab.zh-tw h1, .my-page.zh-cn h1, .my-page.zh-tw h1 {
    letter-spacing: .015em;
    line-height: 1.21
}

.modal-shot-lab.zh-cn h2, .modal-shot-lab.zh-cn li, .modal-shot-lab.zh-cn p, .modal-shot-lab.zh-tw h2, .modal-shot-lab.zh-tw li, .modal-shot-lab.zh-tw p, .my-page.zh-cn h2, .my-page.zh-cn li, .my-page.zh-cn p, .my-page.zh-tw h2, .my-page.zh-tw li, .my-page.zh-tw p {
    letter-spacing: .015em;
    line-height: 1.35
}

.splide__pagination {
    margin-top: 8px;
    padding: 0;
    width: 100%
}

    .splide__pagination .splide__pagination__page {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: #d8d8d8;
        border: 0;
        border-radius: 50%;
        height: 8px;
        margin: 0 8px;
        outline: 0;
        padding: 0;
        transition: background .2s;
        width: 8px
    }

        .splide__pagination .splide__pagination__page.is-active {
            background: #72717a
        }

.ref-window {
    height: 100vh;
    position: fixed
}

.ready-fade {
    opacity: 0;
    transition: opacity .4s ease-out
}

    .ready-fade.animated {
        opacity: 1
    }

.wrapper-video {
    transform-origin: center top
}

.nav-header {
    background-color: #fff
}

    .nav-header .menu-toogle {
        background-image: url(https://static.insta360.com/assets/www/project/official/component/header-mobile/icon-menu-black@2x.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: 20px 16px
    }

        .nav-header .menu-toogle.inactive {
            background-image: url(https://static.insta360.com/assets/www/project/official/component/header-mobile/icon-close-black@2x.png);
            background-size: 24px 24px
        }

    .nav-header .brand {
        background-image: url(https://static.insta360.com/assets/storage/20200114/90f83d679b42df5ad025b2ed63d989a0/logo_dark.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: 106px 24px;
        width: 106px
    }

    .nav-header .btn-buy {
        background: #e20010;
        color: #fff
    }

.my-page .sec-first {
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1
}

    .my-page .sec-first .wrapper-ct {
        padding-bottom: 156%;
        position: relative
    }

        .my-page .sec-first .wrapper-ct .kv {
            left: 0;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 0
        }

        .my-page .sec-first .wrapper-ct .lastframe {
            left: 0;
            opacity: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

        .my-page .sec-first .wrapper-ct .wrapper-1 {
            bottom: 43.7%;
            left: 0;
            position: absolute;
            width: 100%
        }

            .my-page .sec-first .wrapper-ct .wrapper-1 .wrapper-slogan {
                margin: auto;
                padding-bottom: 24.3%;
                position: relative;
                width: 66.7%
            }

            .my-page .sec-first .wrapper-ct .wrapper-1 .slogan {
                left: 50%;
                position: absolute;
                top: 50%;
                transform: translate(-50%,-50%);
                width: 200%
            }

    .my-page .sec-first .wrapper-2 {
        padding: 0 24px 75px;
        position: relative
    }

    .my-page .sec-first .text-group .text {
        color: #888;
        font-size: 24px;
        font-weight: 600;
        text-align: center
    }

    .my-page .sec-first .btn-list {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 40px
    }

    .my-page .sec-first .btn-video {
        border-radius: 100px;
        cursor: pointer;
        height: 48px;
        overflow: hidden;
        position: relative;
        width: 205px;
        z-index: 0
    }

        .my-page .sec-first .btn-video:not(:first-child) {
            margin-top: 16px
        }

        .my-page .sec-first .btn-video .btn-video-bg {
            left: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%
        }

        .my-page .sec-first .btn-video .btn-video-wrapper {
            align-items: center;
            display: flex;
            height: 100%;
            justify-content: center;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

        .my-page .sec-first .btn-video .btn-video-text {
            color: #fff;
            font-size: 17px;
            font-weight: 600
        }

.my-page .sec-resolution {
    background: #000;
    margin-top: -100vh;
    position: relative
}

    .my-page .sec-resolution .wrapper-sticky {
        height: 100vh;
        overflow: hidden;
        position: -webkit-sticky;
        position: sticky;
        top: 0
    }

    .my-page .sec-resolution .kv {
        overflow: hidden
    }

        .my-page .sec-resolution .kv, .my-page .sec-resolution .kv .sequence, .my-page .sec-resolution .kv .sequence img {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

            .my-page .sec-resolution .kv .sequence img {
                -o-object-fit: cover;
                object-fit: cover
            }

            .my-page .sec-resolution .kv .feature-list .wrapper-loc {
                left: 0;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 100%
            }

            .my-page .sec-resolution .kv .feature-list .feature {
                color: #fff;
                font-size: 32px;
                font-weight: 700;
                opacity: 0;
                text-align: center
            }

            .my-page .sec-resolution .kv .bg-mask {
                background: rgba(0,0,0,.8);
                height: 100%;
                left: 0;
                opacity: 0;
                position: absolute;
                top: 0;
                transition: opacity .2s;
                width: 100%
            }

    .my-page .sec-resolution .wrapper-ct {
        position: relative
    }

    .my-page .sec-resolution .wrapper-feature {
        height: 300vh;
        position: relative
    }

    .my-page .sec-resolution .wrapper-main {
        margin: 160px 0
    }

        .my-page .sec-resolution .wrapper-main .text-group {
            margin: 0 32px
        }

            .my-page .sec-resolution .wrapper-main .text-group .text {
                color: #fff;
                font-size: 32px;
                font-weight: 700
            }

            .my-page .sec-resolution .wrapper-main .text-group .text-sm {
                color: #888;
                font-size: 17px;
                font-weight: 500;
                margin-top: 8px
            }

        .my-page .sec-resolution .wrapper-main .wrapper-video {
            margin-top: 48px;
            padding-bottom: 100%;
            position: relative
        }

            .my-page .sec-resolution .wrapper-main .wrapper-video video {
                height: 100%;
                left: 0;
                -o-object-fit: cover;
                object-fit: cover;
                position: absolute;
                top: 0;
                width: 100%
            }

    .my-page .sec-resolution .wrapper-1, .my-page .sec-resolution .wrapper-2, .my-page .sec-resolution .wrapper-3 {
        overflow: hidden
    }

        .my-page .sec-resolution .wrapper-1 .wrapper-main:not(:first-child) .text-group .text {
            font-size: 24px
        }

    .my-page .sec-resolution .wrapper-transition {
        height: 200vh
    }

.my-page .sec-selfie-stick {
    background: #000;
    height: 300vh;
    padding: 48px 0;
    position: relative
}

    .my-page .sec-selfie-stick .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-selfie-stick .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-selfie-stick .text-group .text {
            color: #000
        }

        .my-page .sec-selfie-stick .text-group .text-sm {
            color: #888
        }

    .my-page .sec-selfie-stick .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-selfie-stick .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-selfie-stick .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-selfie-stick .wrapper-sticky {
        height: 100vh;
        overflow: hidden;
        position: -webkit-sticky;
        position: sticky;
        top: 0
    }

    .my-page .sec-selfie-stick .kv {
        height: 100%;
        left: 0;
        overflow: hidden;
        position: absolute;
        top: 0;
        width: 100%
    }

        .my-page .sec-selfie-stick .kv .sequence {
            height: 1080px;
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 608px
        }

            .my-page .sec-selfie-stick .kv .sequence img {
                height: 100%;
                left: 0;
                -o-object-fit: cover;
                object-fit: cover;
                position: absolute;
                top: 0;
                width: 100%
            }

        .my-page .sec-selfie-stick .kv .wrapper-lf {
            left: 50%;
            opacity: 0;
            position: absolute;
            top: 50%;
            transform: translate(-50%,-50%)
        }

            .my-page .sec-selfie-stick .kv .wrapper-lf .fake-video, .my-page .sec-selfie-stick .kv .wrapper-lf video {
                -webkit-clip-path: inset(0 16.67% 0 16.67%);
                clip-path: inset(0 16.67% 0 16.67%);
                height: 540px;
                -o-object-fit: cover;
                object-fit: cover;
                position: relative;
                width: 810px
            }

                .my-page .sec-selfie-stick .kv .wrapper-lf .fake-video.full-size, .my-page .sec-selfie-stick .kv .wrapper-lf video.full-size {
                    -webkit-clip-path: none;
                    clip-path: none
                }

            .my-page .sec-selfie-stick .kv .wrapper-lf .camera {
                height: 335%;
                left: -100%;
                position: absolute;
                top: -37%
            }

    .my-page .sec-selfie-stick .wrapper-ct {
        left: 0;
        opacity: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }

        .my-page .sec-selfie-stick .wrapper-ct .wrapper-video {
            padding-bottom: 66.7%
        }

    .my-page .sec-selfie-stick .snapshot-1 {
        bottom: calc(50% + 128px);
        height: 100px;
        left: calc(50% + 81.5px);
        position: absolute;
        transform: translate(-50%,-50%);
        width: 100px
    }

.my-page .sec-third-person-view {
    padding: 48px 0
}

    .my-page .sec-third-person-view .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-third-person-view .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-third-person-view .text-group .text {
            color: #000
        }

        .my-page .sec-third-person-view .text-group .text-sm {
            color: #888
        }

    .my-page .sec-third-person-view .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-third-person-view .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-third-person-view .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-third-person-view .wrapper-video {
        padding-bottom: 125%
    }

.my-page .sec-flowstate {
    padding: 48px 0
}

    .my-page .sec-flowstate .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-flowstate .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-flowstate .text-group .text {
            color: #000
        }

        .my-page .sec-flowstate .text-group .text-sm {
            color: #888
        }

    .my-page .sec-flowstate .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-flowstate .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-flowstate .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-flowstate .tag-list {
        bottom: 8px;
        height: 24px;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 0
    }

        .my-page .sec-flowstate .tag-list .tag-1, .my-page .sec-flowstate .tag-list .tag-2 {
            border-radius: 100px;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            height: 24px;
            line-height: 24px;
            max-width: 50%;
            overflow: hidden;
            padding: 0 12px;
            text-overflow: ellipsis;
            white-space: nowrap
        }

        .my-page .sec-flowstate .tag-list .tag-1 {
            background: #191c22;
            left: 25%;
            position: absolute;
            transform: translateX(-50%)
        }

        .my-page .sec-flowstate .tag-list .tag-2 {
            background-color: #e10210;
            position: absolute;
            right: 25%;
            transform: translateX(50%)
        }

    .my-page .sec-flowstate .wrapper-video {
        padding-bottom: 66.7%
    }

.my-page .sec-horizon-lock {
    padding: 48px 0
}

    .my-page .sec-horizon-lock .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-horizon-lock .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-horizon-lock .text-group .text {
            color: #000
        }

        .my-page .sec-horizon-lock .text-group .text-sm {
            color: #888
        }

    .my-page .sec-horizon-lock .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-horizon-lock .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-horizon-lock .wrapper-break {
        margin: 0 -24px
    }

.my-page .sec-slowmo {
    padding: 48px 0
}

    .my-page .sec-slowmo .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-slowmo .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-slowmo .text-group .text {
            color: #000
        }

        .my-page .sec-slowmo .text-group .text-sm {
            color: #888
        }

    .my-page .sec-slowmo .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-slowmo .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-slowmo .wrapper-break {
        margin: 0 -24px
    }

.my-page .sec-hdr {
    padding: 48px 0
}

    .my-page .sec-hdr .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-hdr .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-hdr .text-group .text {
            color: #000
        }

        .my-page .sec-hdr .text-group .text-sm {
            color: #888
        }

    .my-page .sec-hdr .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-hdr .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-hdr .wrapper-break {
        margin: 0 -24px
    }

.my-page .sec-waterproof {
    background: #000;
    margin-top: 48px;
    overflow: hidden;
    padding: 120px 0 360px;
    position: relative
}

    .my-page .sec-waterproof .text-group > .text {
        color: #fff;
        font-size: 48px;
        font-weight: 700
    }

    .my-page .sec-waterproof .text-group .bundle {
        margin-top: 48px
    }

        .my-page .sec-waterproof .text-group .bundle .colorful {
            -webkit-background-clip: text;
            background-clip: text;
            background-image: linear-gradient(90deg,#ff4510,#e20010);
            background-size: 100%;
            display: inline-block
        }

        .my-page .sec-waterproof .text-group .bundle .text {
            color: #ff4510;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px
        }

        .my-page .sec-waterproof .text-group .bundle .text-sm {
            color: #a6a6aa;
            font-size: 17px;
            font-weight: 500
        }

    .my-page .sec-waterproof .wrapper-bg-img {
        bottom: -80px;
        position: absolute;
        right: 0
    }

        .my-page .sec-waterproof .wrapper-bg-img .bg-img {
            display: block;
            height: 550px
        }

    .my-page .sec-waterproof .wrapper-ct {
        margin: 0 24px;
        position: relative
    }

.my-page .before-wifi {
    padding: 154px 0 64px
}

    .my-page .before-wifi .wrapper-ct {
        margin: 0 24px
    }

    .my-page .before-wifi .text-group > .text {
        color: #1d1d1f;
        font-size: 56px;
        font-weight: 700
    }

    .my-page .before-wifi .text-group .bundle {
        margin-top: 56px
    }

        .my-page .before-wifi .text-group .bundle .text {
            color: #000;
            font-size: 24px;
            font-weight: 700
        }

        .my-page .before-wifi .text-group .bundle .text-sm {
            color: #888;
            font-size: 17px;
            font-weight: 500;
            margin-top: 16px
        }

.my-page .sec-wifi {
    padding: 48px 0
}

    .my-page .sec-wifi .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-wifi .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-wifi .text-group .text {
            color: #000
        }

        .my-page .sec-wifi .text-group .text-sm {
            color: #888
        }

    .my-page .sec-wifi .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-wifi .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-wifi .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-wifi .text-group-right {
        margin-top: 32px
    }

        .my-page .sec-wifi .text-group-right .odemeter {
            display: flex;
            letter-spacing: -2px
        }

            .my-page .sec-wifi .text-group-right .odemeter .digit {
                height: 1em;
                overflow: hidden
            }

            .my-page .sec-wifi .text-group-right .odemeter .digit-container {
                align-items: center;
                display: flex;
                flex-direction: column
            }

                .my-page .sec-wifi .text-group-right .odemeter .digit-container span {
                    flex: none
                }

        .my-page .sec-wifi .text-group-right .text {
            color: #000;
            font-size: 80px;
            font-weight: 700;
            line-height: 1
        }

        .my-page .sec-wifi .text-group-right .text-sm {
            color: #888;
            font-size: 17px;
            font-weight: 500
        }

    .my-page .sec-wifi .wrapper-img {
        margin-top: 56px;
        padding-bottom: 93.3%;
        position: relative
    }

        .my-page .sec-wifi .wrapper-img img {
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

.my-page .sec-audio {
    background: #000;
    padding: 100px 0 150px;
    position: relative
}

    .my-page .sec-audio .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-audio .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-audio .text-group .text {
            color: #000
        }

        .my-page .sec-audio .text-group .text-sm {
            color: #888
        }

    .my-page .sec-audio .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-audio .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-audio .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-audio .text-group .text {
        color: #fff
    }

    .my-page .sec-audio .wrapper-ratio {
        overflow: hidden;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-audio .wrapper-ratio video {
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 120%
        }

        .my-page .sec-audio .wrapper-ratio .product {
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 768px
        }

    .my-page .sec-audio .wrapper-icon-list {
        align-items: center;
        display: flex;
        flex-direction: column
    }

        .my-page .sec-audio .wrapper-icon-list .text {
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            margin-top: 12px;
            position: relative;
            text-align: center
        }

            .my-page .sec-audio .wrapper-icon-list .text span:not(:first-child) {
                left: 0;
                opacity: 0;
                position: absolute;
                top: 0;
                width: 100%
            }

        .my-page .sec-audio .wrapper-icon-list .icon-list {
            display: flex;
            justify-content: center
        }

        .my-page .sec-audio .wrapper-icon-list .switch {
            background: #aeaeae;
            border-radius: 16px;
            cursor: pointer;
            height: 32px;
            position: relative;
            transition: background .2s;
            width: 60px
        }

            .my-page .sec-audio .wrapper-icon-list .switch .circle {
                background: #fff;
                border-radius: 50%;
                height: 28px;
                left: 2px;
                position: absolute;
                top: 2px;
                transition: transform .2s;
                width: 28px
            }

            .my-page .sec-audio .wrapper-icon-list .switch.on {
                background: #64c468
            }

                .my-page .sec-audio .wrapper-icon-list .switch.on .circle {
                    transform: translateX(28px)
                }

    .my-page .sec-audio .volume {
        bottom: 24px;
        cursor: pointer;
        height: 32px;
        position: absolute;
        right: 24px;
        width: 32px
    }

        .my-page .sec-audio .volume img {
            left: 0;
            position: absolute;
            right: 0;
            width: 100%
        }

            .my-page .sec-audio .volume img:last-child, .my-page .sec-audio .volume.on img:first-child {
                opacity: 0
            }

        .my-page .sec-audio .volume.on img:last-child {
            opacity: 1
        }

.my-page .before-editing {
    padding: 154px 0 64px
}

    .my-page .before-editing .wrapper-ct {
        margin: 0 24px
    }

    .my-page .before-editing .text-group > .text {
        color: #1d1d1f;
        font-size: 56px;
        font-weight: 700
    }

    .my-page .before-editing .text-group .bundle {
        margin-top: 56px
    }

        .my-page .before-editing .text-group .bundle .text {
            color: #000;
            font-size: 24px;
            font-weight: 700
        }

        .my-page .before-editing .text-group .bundle .text-sm {
            color: #888;
            font-size: 17px;
            font-weight: 500;
            margin-top: 16px
        }

.my-page .sec-screen {
    padding: 72px 0 96px
}

    .my-page .sec-screen .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-screen .block:not(:first-child) {
        margin-top: 72px
    }

    .my-page .sec-screen .wrapper-video {
        background: #f5f5f7;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-screen .wrapper-video img {
            height: 100%;
            position: absolute;
            top: 0
        }

        .my-page .sec-screen .wrapper-video video {
            border-radius: 10px;
            height: 59%;
            left: 9%;
            position: absolute;
            top: 20.5%;
            width: 59%
        }

    .my-page .sec-screen .text-group {
        font-size: 21px;
        font-weight: 600;
        margin-top: 40px
    }

        .my-page .sec-screen .text-group .text {
            color: #000;
            display: inline
        }

        .my-page .sec-screen .text-group .text-sm {
            color: #888;
            display: inline
        }

.my-page .sec-battery {
    background: #000;
    overflow: hidden;
    padding: 96px 0;
    position: relative
}

    .my-page .sec-battery .text-group {
        padding: 0 24px
    }

        .my-page .sec-battery .text-group .text {
            color: #fff;
            font-size: 48px;
            font-weight: 700
        }

        .my-page .sec-battery .text-group .text-sm {
            color: #fff;
            font-size: 21px;
            font-weight: 600;
            margin-top: 40px
        }

            .my-page .sec-battery .text-group .text-sm .colorful {
                -webkit-background-clip: text;
                background-clip: text;
                background-image: linear-gradient(90deg,#ff4510,#e20010);
                background-size: 100%;
                color: transparent;
                display: inline-block
            }

    .my-page .sec-battery .wrapper-video {
        overflow: hidden;
        padding-bottom: 100%;
        position: relative;
        z-index: 0
    }

        .my-page .sec-battery .wrapper-video video {
            left: -20%;
            position: absolute;
            top: 0;
            width: 140%
        }

        .my-page .sec-battery .wrapper-video .replay {
            bottom: 8px;
            cursor: pointer;
            position: absolute;
            right: 8px
        }

.my-page .sec-quick-reader {
    background: #1c1c1c;
    padding-top: 64px;
    position: relative
}

    .my-page .sec-quick-reader .text-group > .text {
        color: #fff;
        font-size: 48px;
        font-weight: 700
    }

    .my-page .sec-quick-reader .text-group .bundle {
        margin-top: 48px
    }

        .my-page .sec-quick-reader .text-group .bundle .colorful {
            -webkit-background-clip: text;
            background-clip: text;
            background-image: linear-gradient(90deg,#ff4510,#e20010);
            background-size: 100%;
            display: inline-block
        }

        .my-page .sec-quick-reader .text-group .bundle .text {
            color: #ff4510;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px
        }

        .my-page .sec-quick-reader .text-group .bundle .text-sm {
            color: #a6a6aa;
            font-size: 17px;
            font-weight: 500
        }

    .my-page .sec-quick-reader .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-quick-reader .text-group > .text {
        margin-bottom: 56px
    }

    .my-page .sec-quick-reader .btn-list {
        display: flex;
        margin-top: 56px
    }

    .my-page .sec-quick-reader .btn {
        border: 1px solid #fff;
        border-radius: 50px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 19px;
        padding: 14px 24px 13px
    }

    .my-page .sec-quick-reader .wrapper-video {
        margin-top: 85px;
        padding-bottom: 75%;
        position: relative
    }

        .my-page .sec-quick-reader .wrapper-video video {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

.my-page .sec-mounting {
    background: #000;
    padding: 72px 0 50px;
    position: relative
}

    .my-page .sec-mounting .text-group > .text {
        color: #fff;
        font-size: 48px;
        font-weight: 700
    }

    .my-page .sec-mounting .text-group .bundle {
        margin-top: 48px
    }

        .my-page .sec-mounting .text-group .bundle .colorful {
            -webkit-background-clip: text;
            background-clip: text;
            background-image: linear-gradient(90deg,#ff4510,#e20010);
            background-size: 100%;
            display: inline-block
        }

        .my-page .sec-mounting .text-group .bundle .text {
            color: #ff4510;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px
        }

        .my-page .sec-mounting .text-group .bundle .text-sm {
            color: #a6a6aa;
            font-size: 17px;
            font-weight: 500
        }

    .my-page .sec-mounting .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-mounting .text-group .bundle {
        margin: 0
    }

    .my-page .sec-mounting .block-detail {
        margin-top: 40px
    }

    .my-page .sec-mounting .wrapper-main {
        background: #1c1c1c;
        height: 100%;
        padding-bottom: calc(118.8% + 50px)
    }

        .my-page .sec-mounting .wrapper-main .text-group {
            padding: 40px 24px 0
        }

        .my-page .sec-mounting .wrapper-main .kv {
            bottom: 50px;
            left: 0;
            position: absolute;
            width: 100%
        }

            .my-page .sec-mounting .wrapper-main .kv img {
                display: block;
                width: 100%
            }

.my-page .sec-editing-1 {
    padding: 64px 0
}

    .my-page .sec-editing-1 .text-group {
        margin-top: 32px
    }

        .my-page .sec-editing-1 .text-group .text-lg {
            color: #1d1d1f;
            font-size: 40px;
            font-weight: 700;
            width: 150px
        }

        .my-page .sec-editing-1 .text-group .text {
            color: #202020;
            font-size: 24px;
            font-weight: 700
        }

        .my-page .sec-editing-1 .text-group .text-sm {
            color: #888;
            font-size: 17px;
            font-weight: 500;
            margin-top: 16px
        }

    .my-page .sec-editing-1 .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-editing-1 .wrapper-video {
        height: 460px;
        margin: 40px auto 0;
        position: relative;
        width: 227px
    }

        .my-page .sec-editing-1 .wrapper-video video {
            height: 438px;
            left: 14px;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 12px;
            width: 200px
        }

        .my-page .sec-editing-1 .wrapper-video .overlay {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0
        }

.my-page .sec-editing-2 {
    padding: 64px 0
}

    .my-page .sec-editing-2 .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-editing-2 .text-group .text-lg {
        color: #1d1d1f;
        font-size: 40px;
        font-weight: 700;
        width: 150px
    }

    .my-page .sec-editing-2 .wrapper-video {
        margin-top: 40px;
        padding-bottom: 56.25%;
        position: relative
    }

        .my-page .sec-editing-2 .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

            .my-page .sec-editing-2 .wrapper-video video:not(:first-child) {
                display: none
            }

    .my-page .sec-editing-2 .wrapper-tab-list {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 14px
    }

    .my-page .sec-editing-2 .tab-list {
        display: flex;
        position: relative
    }

        .my-page .sec-editing-2 .tab-list:before {
            background: #eeeef0;
            bottom: 0;
            content: "";
            height: 2px;
            left: 0;
            position: absolute;
            width: 100%
        }

        .my-page .sec-editing-2 .tab-list .tab {
            align-items: center;
            color: #888;
            cursor: pointer;
            display: flex;
            font-size: 12px;
            font-weight: 600;
            justify-content: center;
            margin: 0 12px;
            padding: 10px 0;
            position: relative;
            text-align: center;
            transition: color .2s;
            width: 64px
        }

            .my-page .sec-editing-2 .tab-list .tab:first-child {
                margin-left: 0
            }

            .my-page .sec-editing-2 .tab-list .tab:last-child {
                margin-right: 0
            }

            .my-page .sec-editing-2 .tab-list .tab .border {
                background: #000;
                bottom: 0;
                height: 2px;
                left: 0;
                position: absolute;
                transition: opacity .2s;
                width: 0
            }

            .my-page .sec-editing-2 .tab-list .tab.active, .my-page .sec-editing-2 .tab-list .tab:hover {
                color: #000
            }

    .my-page .sec-editing-2 .detail {
        color: #888;
        font-size: 17px;
        font-weight: 500;
        margin-top: 36px;
        position: relative;
        text-align: center;
        width: 100%
    }

        .my-page .sec-editing-2 .detail span:not(:first-child) {
            left: 0;
            opacity: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

.my-page .sec-flashcut {
    padding: 48px 0
}

    .my-page .sec-flashcut .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-flashcut .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-flashcut .text-group .text {
            color: #000
        }

        .my-page .sec-flashcut .text-group .text-sm {
            color: #888
        }

    .my-page .sec-flashcut .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-flashcut .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-flashcut .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-flashcut .wrapper-video {
        padding-bottom: 56.25%
    }

.my-page .sec-explore {
    margin-bottom: 64px
}

    .my-page .sec-explore .wrapper-ct {
        padding-bottom: 186.7%;
        position: relative
    }

    .my-page .sec-explore .bg, .my-page .sec-explore .block-main {
        left: 0;
        position: absolute;
        top: 0;
        width: 100%
    }

    .my-page .sec-explore .block-main {
        padding: 30px 72px 0 24px
    }

    .my-page .sec-explore .text-group .text {
        color: #000;
        font-size: 32px;
        font-weight: 700
    }

    .my-page .sec-explore .btn-list {
        display: flex;
        margin-top: 32px
    }

    .my-page .sec-explore .btn {
        border: 1px solid #1d1d1f;
        border-radius: 50px;
        color: #1d1d1f;
        cursor: pointer;
        font-size: 17px;
        font-weight: 600;
        padding: 7px 24px
    }

.my-page .sec-studio {
    padding: 48px 0
}

    .my-page .sec-studio .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-studio .text-group {
        font-size: 21px;
        font-weight: 600
    }

        .my-page .sec-studio .text-group .text {
            color: #000
        }

        .my-page .sec-studio .text-group .text-sm {
            color: #888
        }

    .my-page .sec-studio .wrapper-video {
        margin-top: 40px;
        padding-bottom: 100%;
        position: relative
    }

        .my-page .sec-studio .wrapper-video video {
            height: 100%;
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-studio .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-studio .wrapper-img {
        margin-top: 40px;
        padding-bottom: 60%;
        position: relative
    }

        .my-page .sec-studio .wrapper-img img {
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

.my-page .sec-share {
    overflow: hidden;
    padding: 64px 0
}

    .my-page .sec-share .text-group {
        margin-top: 32px
    }

        .my-page .sec-share .text-group .text-lg {
            color: #1d1d1f;
            font-size: 40px;
            font-weight: 700;
            width: 150px
        }

        .my-page .sec-share .text-group .text {
            color: #202020;
            font-size: 24px;
            font-weight: 700
        }

        .my-page .sec-share .text-group .text-sm {
            color: #888;
            font-size: 17px;
            font-weight: 500;
            margin-top: 16px
        }

    .my-page .sec-share .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-share .wrapper-video-phone {
        height: 460px;
        margin: 40px auto 0;
        position: relative;
        width: 227px
    }

        .my-page .sec-share .wrapper-video-phone video {
            height: 438px;
            left: 14px;
            -o-object-fit: cover;
            object-fit: cover;
            position: absolute;
            top: 12px;
            width: 200px
        }

        .my-page .sec-share .wrapper-video-phone .overlay {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0
        }

    .my-page .sec-share .wrapper-break {
        margin: 0 -24px
    }

    .my-page .sec-share .wrapper-video-mac {
        margin-top: 96px;
        padding-bottom: 67.73%;
        position: relative
    }

        .my-page .sec-share .wrapper-video-mac video {
            height: 73%;
            left: 34%;
            position: absolute;
            top: 6%
        }

        .my-page .sec-share .wrapper-video-mac .overlay {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0
        }

.my-page .sec-scene {
    background: #f5f5f7;
    margin-top: 64px;
    padding-top: 96px
}

    .my-page .sec-scene .text-group {
        margin: 0 24px
    }

        .my-page .sec-scene .text-group .text {
            color: #000;
            font-size: 48px;
            font-weight: 700
        }

    .my-page .sec-scene .scene-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 72px
    }

        .my-page .sec-scene .scene-list .scene {
            margin-bottom: 8px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity .4s ease-out,transform .4s ease-in-out
        }

            .my-page .sec-scene .scene-list .scene img {
                height: 100%;
                left: 0;
                -o-object-fit: cover;
                object-fit: cover;
                position: absolute;
                top: 0;
                width: 100%
            }

            .my-page .sec-scene .scene-list .scene.animated {
                opacity: 1;
                transform: translateY(0)
            }

            .my-page .sec-scene .scene-list .scene:first-child, .my-page .sec-scene .scene-list .scene:nth-child(4), .my-page .sec-scene .scene-list .scene:nth-child(5) {
                padding-bottom: 45%;
                width: calc(62.5% - 4px)
            }

            .my-page .sec-scene .scene-list .scene:nth-child(2), .my-page .sec-scene .scene-list .scene:nth-child(3), .my-page .sec-scene .scene-list .scene:nth-child(6) {
                padding-bottom: 45%;
                width: calc(37.5% - 4px)
            }

            .my-page .sec-scene .scene-list .scene:nth-child(7) {
                padding-bottom: 60%;
                width: 100%
            }

.my-page .sec-summary {
    padding: 112px 0 60px
}

    .my-page .sec-summary .text-group {
        margin: 0 24px
    }

        .my-page .sec-summary .text-group .text {
            color: #000;
            font-size: 48px;
            font-weight: 700
        }

    .my-page .sec-summary .wrapper-img {
        margin-top: 56px;
        padding-bottom: 171.7%;
        position: relative
    }

        .my-page .sec-summary .wrapper-img img {
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

.my-page .sec-acc {
    background: #f5f5f7;
    padding: 96px 0 48px
}

    .my-page .sec-acc .splide {
        margin-top: 56px
    }

    .my-page .sec-acc .text-group {
        margin: 0 24px
    }

        .my-page .sec-acc .text-group .text {
            color: #000;
            font-size: 48px;
            font-weight: 700
        }

    .my-page .sec-acc .acc {
        align-items: center;
        background: #fff;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
        padding: 48px 36px 50px;
        position: relative
    }

        .my-page .sec-acc .acc .img {
            height: 190px
        }

        .my-page .sec-acc .acc .text {
            color: #000;
            font-size: 19px;
            font-weight: 700;
            margin-top: 40px;
            text-align: center
        }

        .my-page .sec-acc .acc .text-sm {
            color: #888;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 108px;
            margin-top: 8px;
            text-align: center
        }

        .my-page .sec-acc .acc .btn {
            background-image: linear-gradient(135deg,#ff4510,#e20010);
            border-radius: 50px;
            bottom: 50px;
            color: #fff;
            font-size: 16px;
            font-weight: 900;
            height: 48px;
            left: 50%;
            letter-spacing: .83px;
            line-height: 48px;
            padding: 0 36px;
            position: absolute;
            text-align: center;
            transform: translateX(-50%);
            white-space: nowrap
        }

        .my-page .sec-acc .acc .btn-disabled {
            background: #ececec;
            color: #000
        }

.my-page .sec-edition {
    background: #f5f5f7;
    padding: 48px 0
}

    .my-page .sec-edition .splide {
        margin-top: 56px
    }

    .my-page .sec-edition .text-group {
        margin: 0 24px
    }

        .my-page .sec-edition .text-group .text {
            color: #000;
            font-size: 48px;
            font-weight: 700
        }

    .my-page .sec-edition .edition {
        background: #fff;
        height: 500px;
        padding: 56px 32px 0;
        position: relative
    }

        .my-page .sec-edition .edition .deal {
            color: #e40510;
            font-size: 12px;
            font-weight: 700;
            left: 32px;
            position: absolute;
            right: 32px;
            top: 28px
        }

        .my-page .sec-edition .edition .logo {
            height: 18px
        }

        .my-page .sec-edition .edition .text {
            color: #a6a6aa;
            font-size: 14px;
            font-weight: 500;
            margin-top: 8px
        }

        .my-page .sec-edition .edition .price {
            color: #000;
            font-size: 14px;
            height: 20px;
            margin-top: 16px
        }

        .my-page .sec-edition .edition .wrapper-img {
            height: 190px;
            margin-top: 45px;
            position: relative
        }

            .my-page .sec-edition .edition .wrapper-img .img {
                height: 100%;
                left: 50%;
                position: absolute;
                top: 0;
                transform: translateX(-50%)
            }

        .my-page .sec-edition .edition .wrapper-bottom {
            bottom: 36px;
            display: flex;
            justify-content: center;
            left: 32px;
            position: absolute;
            right: 32px
        }

        .my-page .sec-edition .edition .btn {
            background-image: linear-gradient(135deg,#ff4510,#e20010);
            border-radius: 50px;
            color: #fff;
            font-size: 14px;
            font-weight: 900;
            height: 36px;
            letter-spacing: .73px;
            line-height: 36px;
            padding: 0 16px
        }

.my-page .sec-upgrade {
    background: #f5f5f7;
    padding: 48px 0
}

    .my-page .sec-upgrade .text-group {
        margin: 0 24px
    }

        .my-page .sec-upgrade .text-group .text {
            color: #000;
            font-size: 48px;
            font-weight: 700
        }

        .my-page .sec-upgrade .text-group .text-sm {
            color: #a6a6aa;
            font-size: 17px;
            font-weight: 500;
            margin-top: 16px
        }

    .my-page .sec-upgrade .qa-list {
        background: #fff;
        margin-top: 48px;
        padding: 48px 24px
    }

        .my-page .sec-upgrade .qa-list .qa {
            padding: 16px 0
        }

            .my-page .sec-upgrade .qa-list .qa:not(:last-child) {
                border-bottom: 1px solid #dedede
            }

            .my-page .sec-upgrade .qa-list .qa.expanded .question:after {
                transform: rotate(180deg)
            }

        .my-page .sec-upgrade .qa-list .question {
            color: #1d1d1f;
            cursor: pointer;
            font-size: 19px;
            font-weight: 600;
            padding-right: 48px;
            position: relative
        }

            .my-page .sec-upgrade .qa-list .question:after {
                background-image: url(https://res.insta360.com/static/infr_base/f73087fe213dcbe8e81bb228cca8d5a1/dropdown.svg);
                background-size: cover;
                content: "";
                height: 24px;
                position: absolute;
                right: 0;
                top: 0;
                transition: transform .2s;
                width: 24px
            }

        .my-page .sec-upgrade .qa-list .answer {
            color: #888;
            display: none;
            font-size: 17px;
            font-weight: 500;
            line-height: 1.35;
            margin-top: 24px
        }

.my-page .sec-spec {
    background: #f5f5f7;
    padding: 54px 0
}

    .my-page .sec-spec .spec-list-list {
        background: #fff;
        position: relative
    }

        .my-page .sec-spec .spec-list-list .nav-sticky {
            background: #fff;
            position: -webkit-sticky;
            position: sticky;
            top: 32px;
            z-index: 1
        }

            .my-page .sec-spec .spec-list-list .nav-sticky .name-list {
                border-bottom: 2px solid #eeeef0;
                display: flex;
                justify-content: center;
                margin: 0 24px;
                padding-top: 16px
            }

            .my-page .sec-spec .spec-list-list .nav-sticky .name {
                display: flex;
                flex: 1;
                flex-direction: column;
                justify-content: center;
                margin: 0 12px;
                padding: 8px 0;
                position: relative;
                width: 64px
            }

                .my-page .sec-spec .spec-list-list .nav-sticky .name span {
                    color: #888;
                    font-size: 14px;
                    font-weight: 600;
                    text-align: center
                }

                .my-page .sec-spec .spec-list-list .nav-sticky .name:after {
                    background: #000;
                    bottom: -2px;
                    content: "";
                    height: 2px;
                    left: 0;
                    opacity: 0;
                    position: absolute;
                    width: 100%
                }

                .my-page .sec-spec .spec-list-list .nav-sticky .name.active {
                    color: #000
                }

                    .my-page .sec-spec .spec-list-list .nav-sticky .name.active:after {
                        opacity: 1
                    }

    .my-page .sec-spec .wrapper-spec-list {
        margin: 0 24px;
        position: relative
    }

    .my-page .sec-spec .spec-list {
        background: #fff;
        height: 100%;
        opacity: 0;
        padding: 48px 0;
        position: relative;
        transition: opacity .5s
    }

        .my-page .sec-spec .spec-list.active {
            opacity: 1
        }

        .my-page .sec-spec .spec-list:not(:first-child) {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

    .my-page .sec-spec .spec-head {
        border-bottom: 1px solid #d4d3d8;
        padding-bottom: 24px
    }

        .my-page .sec-spec .spec-head .edition {
            align-items: center;
            display: flex;
            flex-direction: column
        }

            .my-page .sec-spec .spec-head .edition img {
                height: 156px
            }

            .my-page .sec-spec .spec-head .edition .name {
                color: #000;
                font-size: 17px;
                font-weight: 600;
                margin-top: 24px;
                text-align: center
            }

    .my-page .sec-spec .spec-item {
        margin-top: 80px
    }

        .my-page .sec-spec .spec-item .t1 {
            border-bottom: 1px solid #d4d3d8;
            color: #000;
            font-size: 24px;
            font-weight: 700;
            padding-bottom: 24px
        }

        .my-page .sec-spec .spec-item .t2 {
            color: #000;
            font-size: 17px;
            font-weight: 500;
            margin-top: 32px
        }

.my-page .sec-footnote {
    background: #f5f5f7;
    padding: 50px 0
}

    .my-page .sec-footnote .wrapper-ct {
        margin: 0 24px
    }

    .my-page .sec-footnote ol {
        border-top: 1px solid #d4d3d8;
        padding-left: 16px
    }

        .my-page .sec-footnote ol li {
            color: #888;
            font-size: 14px;
            margin-top: 32px
        }

.modal-shot-lab {
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    transition: opacity .2s;
    width: 100%;
    z-index: 999
}

    .modal-shot-lab .modal-content {
        background: #fff;
        position: relative
    }

    .modal-shot-lab .wrapper-ic-close {
        background: #fff;
        height: 49px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1
    }

    .modal-shot-lab .ic-close {
        cursor: pointer;
        height: 20px;
        position: absolute;
        right: 16px;
        top: 16px
    }

    .modal-shot-lab video, .my-page video {
        background-position: 50%;
        background-size: cover
    }

    .modal-shot-lab .sec-shot-lab-1, .modal-shot-lab .sec-shot-lab-2, .modal-shot-lab .sec-shot-lab-3, .my-page .sec-shot-lab-1, .my-page .sec-shot-lab-2, .my-page .sec-shot-lab-3 {
        padding: 48px 0
    }

        .modal-shot-lab .sec-shot-lab-1 .wrapper-ct, .modal-shot-lab .sec-shot-lab-2 .wrapper-ct, .modal-shot-lab .sec-shot-lab-3 .wrapper-ct, .my-page .sec-shot-lab-1 .wrapper-ct, .my-page .sec-shot-lab-2 .wrapper-ct, .my-page .sec-shot-lab-3 .wrapper-ct {
            margin: 0 24px
        }

        .modal-shot-lab .sec-shot-lab-1 .text-group, .modal-shot-lab .sec-shot-lab-2 .text-group, .modal-shot-lab .sec-shot-lab-3 .text-group, .my-page .sec-shot-lab-1 .text-group, .my-page .sec-shot-lab-2 .text-group, .my-page .sec-shot-lab-3 .text-group {
            font-size: 21px;
            font-weight: 600
        }

            .modal-shot-lab .sec-shot-lab-1 .text-group .text, .modal-shot-lab .sec-shot-lab-2 .text-group .text, .modal-shot-lab .sec-shot-lab-3 .text-group .text, .my-page .sec-shot-lab-1 .text-group .text, .my-page .sec-shot-lab-2 .text-group .text, .my-page .sec-shot-lab-3 .text-group .text {
                color: #000
            }

            .modal-shot-lab .sec-shot-lab-1 .text-group .text-sm, .modal-shot-lab .sec-shot-lab-2 .text-group .text-sm, .modal-shot-lab .sec-shot-lab-3 .text-group .text-sm, .my-page .sec-shot-lab-1 .text-group .text-sm, .my-page .sec-shot-lab-2 .text-group .text-sm, .my-page .sec-shot-lab-3 .text-group .text-sm {
                color: #888
            }

        .modal-shot-lab .sec-shot-lab-1 .wrapper-video, .modal-shot-lab .sec-shot-lab-2 .wrapper-video, .modal-shot-lab .sec-shot-lab-3 .wrapper-video, .my-page .sec-shot-lab-1 .wrapper-video, .my-page .sec-shot-lab-2 .wrapper-video, .my-page .sec-shot-lab-3 .wrapper-video {
            margin-top: 40px;
            padding-bottom: 100%;
            position: relative
        }

            .modal-shot-lab .sec-shot-lab-1 .wrapper-video video, .modal-shot-lab .sec-shot-lab-2 .wrapper-video video, .modal-shot-lab .sec-shot-lab-3 .wrapper-video video, .my-page .sec-shot-lab-1 .wrapper-video video, .my-page .sec-shot-lab-2 .wrapper-video video, .my-page .sec-shot-lab-3 .wrapper-video video {
                height: 100%;
                left: 0;
                -o-object-fit: cover;
                object-fit: cover;
                position: absolute;
                top: 0;
                width: 100%
            }

        .modal-shot-lab .sec-shot-lab-1 .wrapper-break, .modal-shot-lab .sec-shot-lab-2 .wrapper-break, .modal-shot-lab .sec-shot-lab-3 .wrapper-break, .my-page .sec-shot-lab-1 .wrapper-break, .my-page .sec-shot-lab-2 .wrapper-break, .my-page .sec-shot-lab-3 .wrapper-break {
            margin: 0 -24px
        }

        .modal-shot-lab .sec-shot-lab-1 .wrapper-tab-list, .modal-shot-lab .sec-shot-lab-2 .wrapper-tab-list, .modal-shot-lab .sec-shot-lab-3 .wrapper-tab-list, .my-page .sec-shot-lab-1 .wrapper-tab-list, .my-page .sec-shot-lab-2 .wrapper-tab-list, .my-page .sec-shot-lab-3 .wrapper-tab-list {
            align-items: center;
            display: flex;
            flex-direction: column;
            margin-top: 14px
        }

        .modal-shot-lab .sec-shot-lab-1 .wrapper-video, .modal-shot-lab .sec-shot-lab-2 .wrapper-video, .modal-shot-lab .sec-shot-lab-3 .wrapper-video, .my-page .sec-shot-lab-1 .wrapper-video, .my-page .sec-shot-lab-2 .wrapper-video, .my-page .sec-shot-lab-3 .wrapper-video {
            padding-bottom: 66.7%
        }

            .modal-shot-lab .sec-shot-lab-1 .wrapper-video .fake-video, .modal-shot-lab .sec-shot-lab-2 .wrapper-video .fake-video, .modal-shot-lab .sec-shot-lab-3 .wrapper-video .fake-video, .my-page .sec-shot-lab-1 .wrapper-video .fake-video, .my-page .sec-shot-lab-2 .wrapper-video .fake-video, .my-page .sec-shot-lab-3 .wrapper-video .fake-video {
                height: 100%;
                left: 0;
                position: absolute;
                top: 0;
                width: 100%
            }

                .modal-shot-lab .sec-shot-lab-1 .wrapper-video .fake-video img, .modal-shot-lab .sec-shot-lab-2 .wrapper-video .fake-video img, .modal-shot-lab .sec-shot-lab-3 .wrapper-video .fake-video img, .my-page .sec-shot-lab-1 .wrapper-video .fake-video img, .my-page .sec-shot-lab-2 .wrapper-video .fake-video img, .my-page .sec-shot-lab-3 .wrapper-video .fake-video img {
                    left: 0;
                    position: absolute;
                    top: 0;
                    width: 100%
                }

                .modal-shot-lab .sec-shot-lab-1 .wrapper-video .fake-video .tag-list, .modal-shot-lab .sec-shot-lab-2 .wrapper-video .fake-video .tag-list, .modal-shot-lab .sec-shot-lab-3 .wrapper-video .fake-video .tag-list, .my-page .sec-shot-lab-1 .wrapper-video .fake-video .tag-list, .my-page .sec-shot-lab-2 .wrapper-video .fake-video .tag-list, .my-page .sec-shot-lab-3 .wrapper-video .fake-video .tag-list {
                    bottom: 8px;
                    height: 24px;
                    left: 0;
                    position: absolute;
                    width: 100%;
                    z-index: 0
                }

                    .modal-shot-lab .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-1, .modal-shot-lab .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-2, .modal-shot-lab .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-1, .modal-shot-lab .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-2, .modal-shot-lab .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-1, .modal-shot-lab .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-2, .my-page .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-1, .my-page .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-2, .my-page .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-1, .my-page .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-2, .my-page .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-1, .my-page .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-2 {
                        border-radius: 100px;
                        color: #fff;
                        font-size: 10px;
                        font-weight: 700;
                        height: 24px;
                        line-height: 24px;
                        max-width: 50%;
                        overflow: hidden;
                        padding: 0 12px;
                        text-overflow: ellipsis;
                        white-space: nowrap
                    }

                    .modal-shot-lab .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-1, .modal-shot-lab .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-1, .modal-shot-lab .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-1, .my-page .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-1, .my-page .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-1, .my-page .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-1 {
                        background: #191c22;
                        left: 25%;
                        position: absolute;
                        transform: translateX(-50%)
                    }

                    .modal-shot-lab .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-2, .modal-shot-lab .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-2, .modal-shot-lab .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-2, .my-page .sec-shot-lab-1 .wrapper-video .fake-video .tag-list .tag-2, .my-page .sec-shot-lab-2 .wrapper-video .fake-video .tag-list .tag-2, .my-page .sec-shot-lab-3 .wrapper-video .fake-video .tag-list .tag-2 {
                        background-color: #e10210;
                        position: absolute;
                        right: 25%;
                        transform: translateX(50%)
                    }

            .modal-shot-lab .sec-shot-lab-1 .wrapper-video > :not(:first-child), .modal-shot-lab .sec-shot-lab-2 .wrapper-video > :not(:first-child), .modal-shot-lab .sec-shot-lab-3 .wrapper-video > :not(:first-child), .my-page .sec-shot-lab-1 .wrapper-video > :not(:first-child), .my-page .sec-shot-lab-2 .wrapper-video > :not(:first-child), .my-page .sec-shot-lab-3 .wrapper-video > :not(:first-child) {
                display: none
            }

        .modal-shot-lab .sec-shot-lab-1 .tab-list, .modal-shot-lab .sec-shot-lab-2 .tab-list, .modal-shot-lab .sec-shot-lab-3 .tab-list, .my-page .sec-shot-lab-1 .tab-list, .my-page .sec-shot-lab-2 .tab-list, .my-page .sec-shot-lab-3 .tab-list {
            display: flex;
            position: relative
        }

            .modal-shot-lab .sec-shot-lab-1 .tab-list:before, .modal-shot-lab .sec-shot-lab-2 .tab-list:before, .modal-shot-lab .sec-shot-lab-3 .tab-list:before, .my-page .sec-shot-lab-1 .tab-list:before, .my-page .sec-shot-lab-2 .tab-list:before, .my-page .sec-shot-lab-3 .tab-list:before {
                background: #eeeef0;
                bottom: 0;
                content: "";
                height: 2px;
                left: 0;
                position: absolute;
                width: 100%
            }

            .modal-shot-lab .sec-shot-lab-1 .tab-list .tab, .modal-shot-lab .sec-shot-lab-2 .tab-list .tab, .modal-shot-lab .sec-shot-lab-3 .tab-list .tab, .my-page .sec-shot-lab-1 .tab-list .tab, .my-page .sec-shot-lab-2 .tab-list .tab, .my-page .sec-shot-lab-3 .tab-list .tab {
                align-items: center;
                color: #888;
                cursor: pointer;
                display: flex;
                font-size: 12px;
                font-weight: 600;
                justify-content: center;
                margin: 0 12px;
                padding: 10px 0;
                position: relative;
                text-align: center;
                transition: color .2s;
                width: 64px
            }

                .modal-shot-lab .sec-shot-lab-1 .tab-list .tab:first-child, .modal-shot-lab .sec-shot-lab-2 .tab-list .tab:first-child, .modal-shot-lab .sec-shot-lab-3 .tab-list .tab:first-child, .my-page .sec-shot-lab-1 .tab-list .tab:first-child, .my-page .sec-shot-lab-2 .tab-list .tab:first-child, .my-page .sec-shot-lab-3 .tab-list .tab:first-child {
                    margin-left: 0
                }

                .modal-shot-lab .sec-shot-lab-1 .tab-list .tab:last-child, .modal-shot-lab .sec-shot-lab-2 .tab-list .tab:last-child, .modal-shot-lab .sec-shot-lab-3 .tab-list .tab:last-child, .my-page .sec-shot-lab-1 .tab-list .tab:last-child, .my-page .sec-shot-lab-2 .tab-list .tab:last-child, .my-page .sec-shot-lab-3 .tab-list .tab:last-child {
                    margin-right: 0
                }

                .modal-shot-lab .sec-shot-lab-1 .tab-list .tab .border, .modal-shot-lab .sec-shot-lab-2 .tab-list .tab .border, .modal-shot-lab .sec-shot-lab-3 .tab-list .tab .border, .my-page .sec-shot-lab-1 .tab-list .tab .border, .my-page .sec-shot-lab-2 .tab-list .tab .border, .my-page .sec-shot-lab-3 .tab-list .tab .border {
                    background: #000;
                    bottom: 0;
                    height: 2px;
                    left: 0;
                    position: absolute;
                    transition: opacity .2s;
                    width: 0
                }

                .modal-shot-lab .sec-shot-lab-1 .tab-list .tab.active, .modal-shot-lab .sec-shot-lab-1 .tab-list .tab:hover, .modal-shot-lab .sec-shot-lab-2 .tab-list .tab.active, .modal-shot-lab .sec-shot-lab-2 .tab-list .tab:hover, .modal-shot-lab .sec-shot-lab-3 .tab-list .tab.active, .modal-shot-lab .sec-shot-lab-3 .tab-list .tab:hover, .my-page .sec-shot-lab-1 .tab-list .tab.active, .my-page .sec-shot-lab-1 .tab-list .tab:hover, .my-page .sec-shot-lab-2 .tab-list .tab.active, .my-page .sec-shot-lab-2 .tab-list .tab:hover, .my-page .sec-shot-lab-3 .tab-list .tab.active, .my-page .sec-shot-lab-3 .tab-list .tab:hover {
                    color: #000
                }

        .modal-shot-lab .sec-shot-lab-1 .detail, .modal-shot-lab .sec-shot-lab-2 .detail, .modal-shot-lab .sec-shot-lab-3 .detail, .my-page .sec-shot-lab-1 .detail, .my-page .sec-shot-lab-2 .detail, .my-page .sec-shot-lab-3 .detail {
            color: #888;
            font-size: 17px;
            font-weight: 500;
            margin-top: 36px;
            position: relative
        }

            .modal-shot-lab .sec-shot-lab-1 .detail span:not(:first-child), .modal-shot-lab .sec-shot-lab-2 .detail span:not(:first-child), .modal-shot-lab .sec-shot-lab-3 .detail span:not(:first-child), .my-page .sec-shot-lab-1 .detail span:not(:first-child), .my-page .sec-shot-lab-2 .detail span:not(:first-child), .my-page .sec-shot-lab-3 .detail span:not(:first-child) {
                left: 0;
                opacity: 0;
                position: absolute;
                top: 0;
                width: 100%
            }

.my-page.es-es .before-wifi .text-group > .text {
    font-size: 40px
}

.my-page.ja-jp .sec-editing-1 .text-group .text-lg, .my-page.ja-jp .sec-editing-2 .text-group .text-lg, .my-page.ja-jp .sec-share .text-group .text-lg {
    width: auto
}

.my-page.zh-cn .before-editing .text-group > .text {
    width: 250px
}

.my-page.zh-cn .sec-editing-1 .text-group .text-lg {
    width: auto
}

.my-page .sec-spec .spec-item .t2, .my-page.zh-cn .sec-upgrade .qa-list .answer {
    line-height: 1.5
}

.my-page.zh-cn .sec-shot-lab-1 .tab-list .tab:first-child {
    width: 80px
}

.my-page.zh-cn .sec-share .text-group .text-lg {
    width: 240px
}
