@media screen {
        .page-body .scenes {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;

        }

            .page-body .scenes .scenes-content-wrapper {
                width: 100%;
            }

                .page-body .scenes .scenes-content-wrapper .img-wrapper {
                    width: 100%;
                    height: 100%;
                }

                    .page-body .scenes .scenes-content-wrapper .img-wrapper img {
                        width: 100%;
                        height: 15rem;
                        -o-object-fit: cover;
                           object-fit: cover;
                    }

                .page-body .scenes .scenes-content-wrapper .banner-title {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 100%;
                    max-width: 75rem;
                    height: 100%;
                    transform: translate3d(-50%, -50%, 0);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 2.8125rem;
                    letter-spacing: 0.0625rem;
                }

        .page-body .categories {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
        }

            .page-body .categories .tabs-wrapper {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

                .page-body .categories .tabs-wrapper .tabs {
                    width: 100%;
                    height: 4.625rem;
                    max-width: 75rem;
                    display: flex;
                    justify-content: space-around;
                    align-items: center;
                    background-color: #fff;
                }

                    .page-body .categories .tabs-wrapper .tabs .tab {
                        position: relative;
                        font-size: 22x;
                        height: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: #152C4D;
                    }

                        .page-body .categories .tabs-wrapper .tabs .tab::after {
                            position: absolute;
                            left: 0;
                            bottom: 0.875rem;
                            width: 100%;
                            height: 0.1875rem;
                            content: "";
                            background: #F66640;
                            transition: transform 0.15s ease;
                            transform: scaleX(0);
                        }
                            .page-body .categories .tabs-wrapper .tabs .tab.active::after {
                                transform: scaleX(1);
                            }

            .page-body .categories .contents-wrapper {
                position: relative;
                width: 100%;
                background-color: #f6f6f6;
                box-shadow: 0px -0.3125rem 0.625rem -0.3125rem #999;

                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
            }

                .page-body .categories .contents-wrapper .content {
                    flex: 1 1 auto;
                    width: 100%;
                    height: 100%;
                    max-width: 75rem;
                    display: none;
                    background: url("/assets/images/newDesign/bg-10.png") center/cover no-repeat;
                    color: #000;

                    padding: 1rem;
                }

                    .page-body .categories .contents-wrapper .content.active {
                        display: block;
                    }

                    .page-body .categories .contents-wrapper .content .desc {
                        position: relative;
                        height: 100%;
                        min-height: 33.75rem;
                    }

                        .page-body .categories .contents-wrapper .content .desc .left {
                            position: absolute;
                            z-index: 3;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;

                            padding: 0.75rem 1rem 0 1rem;

                            color: #fff;
                        }

                            .page-body .categories .contents-wrapper .content .desc .left .title {
                                text-align: center;
                                font-size: 2rem;
                                font-weight: 400;
                            }

                            .page-body .categories .contents-wrapper .content .desc .left .text {
                                margin-top: 1rem;
                                letter-spacing: 0.0625rem;
                                line-height: 2em;
                                text-align: left;
                                font-size: 1.125rem;
                            }

                            .page-body .categories .contents-wrapper .content .desc .left .actions {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                margin-top: 2rem;
                            }

                                .page-body .categories .contents-wrapper .content .desc .left .actions .action {
                                    width: 10.5rem;
                                    height: 2.375rem;
                                    line-height: 2.375rem;
                                    text-align: center;
                                    cursor: pointer;
                                }

                                    .page-body .categories .contents-wrapper .content .desc .left .actions .action.register {
                                        border: 0.0625rem solid #fff;
                                        color: #fff;
                                    }

                                        .page-body .categories .contents-wrapper .content .desc .left .actions .action.register:hover {
                                            background-color: #F66640;
                                            color: #fff;
                                            border-color: #F66640;
                                        }

                                    .page-body .categories .contents-wrapper .content .desc .left .actions .action.try {
                                        margin-right: 1.5rem;
                                        background-color: #F66640;
                                        color: #fff;
                                    }

                                        .page-body .categories .contents-wrapper .content .desc .left .actions .action.try:hover {
                                            background-color: #F66640;
                                        }

                            .page-body .categories .contents-wrapper .content .desc .left::after {
                                position: absolute;
                                z-index: -1;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                content: "";
                                background-color: rgba(0, 0, 0, 0.5)
                            }

                        .page-body .categories .contents-wrapper .content .desc .right {
                            position: absolute;
                            z-index: 2;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                        }

                            .page-body .categories .contents-wrapper .content .desc .right img {
                                -o-object-fit: cover;
                                   object-fit: cover;
                                width: 100%;
                                height: 100%;
                            }
}

@media screen and (min-width:960px) {
                .page-body .scenes .scenes-content-wrapper .banner-title {
                    justify-content: flex-start;
                    padding-left: 5%;
                    font-size: 4.0625rem;
                }

        .page-body .categories {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
        }

            .page-body .categories .tabs-wrapper {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

                .page-body .categories .tabs-wrapper .tabs {
                    width: 100%;
                    height: 4.625rem;
                    max-width: 75rem;
                    display: flex;
                    justify-content: space-around;
                    align-items: center;
                    background-color: #fff;
                }

                    .page-body .categories .tabs-wrapper .tabs .tab {
                        position: relative;
                        font-size: 1.375rem;
                        height: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: #152C4D;
                    }

                        .page-body .categories .tabs-wrapper .tabs .tab::after {
                            position: absolute;
                            left: 0;
                            bottom: 0.875rem;
                            width: 100%;
                            height: 0.1875rem;
                            content: "";
                            background: #F66640;
                            transition: transform 0.15s ease;
                            transform: scaleX(0);
                        }
                            .page-body .categories .tabs-wrapper .tabs .tab.active::after {
                                transform: scaleX(1);
                            }

            .page-body .categories .contents-wrapper {
                position: relative;
                width: 100%;
                /* min-height: 345px;*/
                background-color: #f6f6f6;
                box-shadow: 0px -0.3125rem 0.625rem -0.3125rem #999;

                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
            }

                .page-body .categories .contents-wrapper .content {
                    flex: 1 1 auto;
                    width: 100%;
                    height: 100%;
                    min-height: 21.5625rem;
                    max-width: 75rem;
                    display: none;
                    background: url("/assets/images/newDesign/bg-10.png") center/cover no-repeat;
                    color: #000;

                    padding: 4.75rem;
                }

                    .page-body .categories .contents-wrapper .content.active {
                        display: block;
                    }

                    .page-body .categories .contents-wrapper .content .desc {
                        display: flex;
                        justify-content: space-evenly;
                        align-items: stretch;
                    }

                        .page-body .categories .contents-wrapper .content .desc .left {
                            position: static;
                            flex: 1 1 50%;
                            height: 29rem;
                            color: #152C4D;
                        }

                            .page-body .categories .contents-wrapper .content .desc .left .title {
                                color: #152C4D;
                                font-size: 2rem;
                                font-weight: 400;
                                text-align: left;
                            }

                            .page-body .categories .contents-wrapper .content .desc .left .text {
                                margin-top: 1rem;
                                padding-right: 5.4375rem;
                                letter-spacing: 0.0625rem;
                                line-height: 2em;
                                font-size: 1.125rem;
                            }

                            .page-body .categories .contents-wrapper .content .desc .left::after {
                                display: none;
                            }

                            .page-body .categories .contents-wrapper .content .desc .left .actions {
                                display: flex;
                                justify-content: flex-start;
                                align-items: center;
                                margin-top: 2rem;
                            }

                                .page-body .categories .contents-wrapper .content .desc .left .actions .action {
                                    width: 10.5rem;
                                    height: 2.375rem;
                                    line-height: 2.375rem;
                                    text-align: center;
                                    cursor: pointer;
                                }

                                    .page-body .categories .contents-wrapper .content .desc .left .actions .action.register {
                                        border: 0.0625rem solid #000;
                                        color: #000;
                                    }

                                        .page-body .categories .contents-wrapper .content .desc .left .actions .action.register:hover {
                                            background-color: #F66640;
                                            color: #fff;
                                            border-color: #F66640;
                                        }

                                    .page-body .categories .contents-wrapper .content .desc .left .actions .action.try {
                                        margin-right: 1.5rem;
                                        background-color: #F66640;
                                        color: #fff;
                                    }

                                        .page-body .categories .contents-wrapper .content .desc .left .actions .action.try:hover {
                                            background-color: #F66640;
                                        }

                        .page-body .categories .contents-wrapper .content .desc .right {
                            position: static;
                            flex: 1 1 50%;
                            padding-top: 4.125rem;
                        }

                            .page-body .categories .contents-wrapper .content .desc .right img {
                                -o-object-fit: cover;
                                   object-fit: cover;
                                width: 100%;
                                height: 17.875rem;
                            }
}
