/* design-style-section styles */
.design-style-section {
    position: relative;
}

.dss-wrapper {
    position: relative;
}

.dss-box {
    width: 100%;
    position: relative;
}

.dss-title-wrap {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 4;
}

.dss-title {
    color: #fff;
    position: relative;
}

.dss-title .dss-title-text {
    opacity: 0;
    transition: all 1s;
}

.dss-title .dss-title-text:nth-of-type(2) {
    position: absolute;
    top: 0;
    left: 0;
}

.dss-title .dss-title-text.active {
    opacity: 1;
}

.dss-title-main {
    font-size: 0.5rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 1s;
}

.dss-title-sub {
    font-size: 0.2rem;
    line-height: 0.35rem;
    margin-top: 0.1rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 1s;
    transition-delay: .2s;
}

.dss-title._into .dss-title-main,
.dss-title._into .dss-title-sub {
    opacity: 1;
    transform: translateY(0rem);
}

.dss-tab-pc{
    display: block;
}

.dss-tab-mb{
    display: none;
}

.dss-tab-line {
    width: 3.8rem;
    height: 2px;
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: rgba(0, 0, 0, 0.2);
}

.dss-tab-line div {
    width: 50%;
    height: 100%;
    /* background-color: #fff; */
    background-color: #000;
    transition: all .5s;
}

.dss-tab-line.active div {
    transform: translateX(100%);
}

.dss-tab-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.dss-tab-nav div {
    width: 50%;
    text-align: center;
    color: #000;
    font-size: 0.2rem;
    font-weight: 500;
    padding-top: 0.1rem;
    cursor: pointer;
}

.dss-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.dss-slide {
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 1.2s;
}

.dss-slide:nth-of-type(1) {
    position: relative;
}

.dss-slide .dss-slide-img {
    width: 100%;
    object-fit: cover;
}

.dss-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.dss-slide-text {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 1rem;
    display: flex;
}

.dss-color-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    align-items: center;
    color: #fff;
}

.dss-color-name {
    font-size: 0.32rem;
    position: relative;
    font-weight: 500;
}

/* .dss-color-name::before,
.dss-color-name::after {
    position: absolute;
    display: block;
    content: '';
    width: 0.35rem;
    height: 1px;
    background-color: #fff;
    opacity: 0.5;
    top: 50%;
    transform: translateY(-50%);
} */

.dss-color-name::before {
    left: -0.5rem;
}

.dss-color-name::after {
    right: -0.5rem;
}

.dss-color-desc {
    font-size: 0.2rem;
    margin-top: 0.1rem;
    font-weight: 200;
    display: flex;
}

.dss-hotspot {
    position: absolute;
    cursor: pointer;

    display: none !important;
}

.dss-hotspot[data-index="0"] {
    left: 42%;
    top: 58%;
}

.dss-hotspot[data-index="1"] {
    left: 50.5%;
    top: 58%;
}

.dss-hotspot[data-index="2"] {
    left: 58%;
    top: 60%;
}

.dss-hotspot[data-index="3"] {
    left: 74%;
    top: 39%;
}

.dss-hotspot[data-index="4"] {
    left: 85.5%;
    top: 55%;
}

.dss-slide .dss-button {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    margin-left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.dss-slide .dss-button:hover {
    opacity: 1;
}

.dss-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 5;
    pointer-events: none !important;
}

.dss-popup.active {
    pointer-events: auto !important;
}

.dss-popup.swiper-container-fade .swiper-slide-active,
.dss-popup.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: none !important;
}

.dss-popup.active.swiper-container-fade .swiper-slide-active,
.dss-popup.active.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto !important;
}

.dss-popup .swiper-slide {
    display: flex;
}

.dss-popup-left {
    width: 63%;
    height: 100vh;
    transform: translateX(-100%);
    transition: all .4s;
}

.dss-popup.active .dss-popup-left {
    transform: translateX(0%);
}

.dss-popup-left img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
}

.dss-popup.active .dss-popup-left img {
    opacity: 1;
}

.dss-popup-right {
    width: 37%;
    background-color: #fff;
    height: 100vh;
    padding: 2.4rem 1rem 0;
    transform: translateX(100%);
    transition: all .4s;
}

.dss-popup.active .dss-popup-right {
    transform: translateX(0%);
}

.dss-popup-title {
    font-size: 0.4rem;
}

.dss-popup-desc {
    color: rgba(36, 41, 43, 0.5);
    letter-spacing: 0.01rem;
    font-size: 0.18rem;
    line-height: 0.3rem;
    margin-top: 0.3rem;
}

.dss-popup-close {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgba(0, 0, 0, 1);
    left: calc(63% - 0.25rem);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.7);
    z-index: 1;
    opacity: 0;
}

.dss-popup-close img {
    width: 0.15rem;
}

.dss-popup-nav {
    position: absolute;
    bottom: 1rem;
    display: flex;
    left: calc(63% + 1rem);
    z-index: 1;
    opacity: 0;
    transition: all .5s;
}

.dss-popup-nav img {
    width: 0.3rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.4s;
}

.dss-popup-nav img:nth-of-type(2) {
    margin-left: 0.4rem;
}

.dss-popup-nav img:hover {
    opacity: 1;
}

.dss-popup._showBtn .dss-popup-close {
    opacity: 1;
    transition: all .5s;
}

.dss-popup._showBtn .dss-popup-nav {
    opacity: 1;
}

.dss-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 0.5rem;
    border: 1px solid #fff;
    opacity: 0.8;
    transition: opacity .4s;
    cursor: pointer;
    margin-left: 0.2rem;
}

.dss-button div {
    font-size: 0.16rem;
    color: #fff;
    margin-right: 0.2rem;
}

.HotspotPoint__point__3GEmahoi {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: scale(0);
    border: 1px solid transparent;
    transition: border 300ms;
}

.HotspotPoint__point__3GEmahoi:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    transition: transform 300ms, background 300ms;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.HotspotPoint__point__3GEmahoi:before {
    border-color: #fff;
}

.HotspotPoint__hidden__2I1UO_ir {
    pointer-events: none;
}

.HotspotPoint__hidden__2I1UO_ir:before {
    transform: translate(-50%, -50%) scale(0);
}

.HotspotPoint__opened__17jxY6X7 {
    border-color: #fff;
}

.HotspotPoint__opened__17jxY6X7:before {
    transform: translate(-50%, -50%) scale(2);
}

.HotspotPoint__opened__17jxY6X7:before {
    background: #fff;
}

.HotspotPoint__pulsing__1MVjgpDF:before {
    width: 20px;
    height: 20px;
}

.HotspotPoint__pulsing__1MVjgpDF::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    transform-origin: center;
    border-radius: 50%;
    box-sizing: border-box;
    animation: HotspotPoint__pulse__1erxfkPR 2s infinite;
    border: 2px solid #fff;
}

.HotspotPoint__pulsing__1MVjgpDF::after {
    color: #fff;
    border: 2px solid #fff;
}

@keyframes HotspotPoint__pulse__1erxfkPR {
    0% {
        opacity: 0;
        border-width: 2px;
        transform: scale(0.5, 0.5);
        background-color: rgba(255, 255, 255, .8);
    }

    50% {
        opacity: 1;
        transform: scale(1, 1);
        border-width: 2px;
        background-color: rgba(255, 255, 255, .8);
    }

    100% {
        opacity: 0;
        border-width: 1px;
        background-color: transparent;
        transform: scale(2, 2);
    }
}

@media (min-width: 721px) {
    .dss-hotspot:hover .hover_img {
        transform: translate(-50%, -50%) scale(1);
    }

    .dss-hotspot:hover .dss-hotspot-tip {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .dss-box {
        padding: 1rem 0.5rem;
        background-color: #fff;
    }

    .dss-title-wrap {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    }

    .dss-title-main {
        font-weight: 500;
    }

    .dss-title .dss-title-main,
    .dss-title .dss-title-sub {
        color: #333;
    }

    .dss-title-sub {
        margin-top: 0.2rem;
        font-weight: 200;
    }

    .dss-tab {
        display: block;
        width: 80%;
        margin: 0.5rem auto 0;
    }

    .dss-tab-nav div {
        color: #333;
        font-size: 0.28rem;
        padding-top: 0.2rem;
        font-weight: 500;
    }

    .dss-tab-pc {
        display: none;
    }

    .dss-content {
        margin-top: 0.4rem;
    }

    .dss-tab-mb {
        display: block;
        width: 80%;
        margin: 0.5rem auto 0;
    }

    .dss-tab-line {
        width: 100%;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .dss-tab-line div {
        width: 50%;
        height: 2px;
        background-color: #DBAD76;
        transition: all .5s;
    }

    .dss-hotspot[data-index="0"] {
        left: 18%;
        top: 56%;
    }

    .dss-hotspot[data-index="1"] {
        left: 29.5%;
        top: 57%;
    }

    .dss-hotspot[data-index="2"] {
        left: 42%;
        top: 67%;
    }

    .dss-hotspot[data-index="3"] {
        left: 69%;
        top: 42%;
    }

    .dss-hotspot[data-index="4"] {
        left: 85.5%;
        top: 52%;
    }

    .dss-popup {
        display: none;
    }


    .dss-slide .dss-button {
        bottom: auto;
        top: 6.25rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .dss-button {
        margin-left: 0;
        width: 3.4rem;
        height: 0.75rem;
    }

    .dss-button div {
        font-size: 0.24rem;
    }

    .dss-button img {
        width: 0.18rem;
    }


    .wgns-swiper-box-section.active {
        display: flex;
        z-index: 100000;
        opacity: 1;
    }

    .wgns-swiper-box-section {
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.78);
        left: 0;
        top: 0;
        align-items: center;
        justify-content: center;
        z-index: -100000;
        opacity: 0;
    }

    .wgns-swiper-box {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
    }

    .wgns-swiper-box .swiper-box-ws {
        width: 100%;
    }

    .wgns-swiper-box .swiper-box-ws .swiper-container {
        width: 80%;
        overflow: inherit;
    }

    .wgns-swiper-box .swiper-box-ws .swiper-slide {
        height: 8rem !important;
        background: #000;
    }

    .wgns-swiper-box .swiper-box-ws .swiper-slide-active {
        border: 1px solid #e1954e;
        border-radius: 10px;
        overflow: hidden;
    }

    .wgns-swiper-box .swiper-box-ws .swiper-slide img {
        width: 100%;
    }

    .swiper-wg {
        opacity: 1;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .swiper-ns {
        opacity: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .wgns-swiper-box .swiper-box-ws .swiper-slide .t {
        color: #fff;
        font-size: 0.34rem;
        background: #000;
        padding: 0.34rem 0.34rem 0.18rem;
    }

    .wgns-swiper-box .swiper-box-ws .swiper-slide .d {
        color: #fff;
        font-size: 0.24rem;
        background: #000;

        padding: 0rem 0.34rem 0.34rem;
        line-height: 1.45;
    }

    .wgns-swiper-box-section .swiper-conrtol {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 0 0.8rem;
        margin-top: 0.5rem;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-pagination {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: static;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-pagination .swiper-pagination-bullet-active {
        background: #fff;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 0.1rem;
        background: #fff;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-button-prev {
        width: 1rem;
        height: 1rem;
        overflow: hidden;
        position: static;
        border-radius: 50%;
        background: #000;
        background-image: inherit;
        display: flex;
        align-items: center;
        margin: 0;
        justify-content: center;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-button-prev::after {
        display: none;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-button-prev img {
        width: 0.2rem;
        transform: rotate(180deg);
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-button-next {
        width: 1rem;
        margin: 0;
        height: 1rem;
        overflow: hidden;
        position: static;
        border-radius: 50%;
        background: #000;
        background-image: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-button-next::after {
        display: none;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-button-next img {
        width: 0.2rem;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-close {
        width: 1.1rem;
        height: 1.1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 100%;
        cursor: pointer;
        margin-top: 0.8rem;
    }

    .wgns-swiper-box-section .swiper-conrtol .swiper-close img {
        width: 0.25rem;
    }

    .dss-popup {
        display: none;
    }


    .dss-slide .dss-button {
        bottom: auto;
        top: 6.25rem;
        left: 50%;
        transform: translateX(-50%);
    }
}