.details {
    display: flex;
    overflow: hidden;
}

.details-swiper {
    position: relative;
}

.details-swiper-top {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    transition: all 0.4s ease;
}

.details-swiper-top.on {
    width: 100vw;
}

.details-swiper-top .swiper-slide {
    background-position: center;
    background-size: auto 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide .swiper-slide-item{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.swiper-slide img,
.swiper-slide .big-img {
    /* width: 100%; */
    height: 100%;
}

.details-swiper-bottom {
    position: relative;
    overflow: hidden;
}

.details-swiper-bottom .swiper-slide img {
    width: 100%;
    border: 1px solid #fff;
    box-sizing: border-box;
    height: 80px;
    cursor: pointer;
}

.details-swiper-content {
    position: absolute;
    bottom: 5vh;
    right: calc(50% - 32vw);
    z-index: 10;
    transform: translateX(-50%);
    width: 40vw;
    transition: all .4s ease;
    display: flex;
    align-items: center;
}

.details-swiper-content .swiper-button-disabled {
    background-color: #000;
    opacity: 1;
}

.details-swiper-content .swiper-slide-active img {
    border: 1px solid #e60012;
}

.details-swiper-content.on {
    right: calc(50% - 42vw);
}

.details-swiper-screen {
    font-size: 0.7vw;
    color: #fff;
    position: absolute;
    top: 3vw;
    right: 38.2vw;
    z-index: 122;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .4s ease;
}

.details-swiper-screen::after {
    content: '';
    background: url(../images/overview/qp-icon.png) no-repeat center;
    width: 28px;
    height: 28px;
}

.details-swiper-screen.on {
    color: #fff;
    right: 3vw;
}

.details-swiper-screen.on::after {
    background: url(../images/overview/qpg-icon.png) no-repeat center;
}

.details-right {
    background: url(../images/common/popup-right-bg.png) no-repeat center;
    background-size: cover;
    width: 35vw;
    height: 100vh;
    padding: 3vw;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    box-sizing: border-box;
    transition: all .4s ease;
}

.details-right .close-icon {
    position: absolute;
    top: 3vw;
    right: 3vw;
}

.details-right.on {
    right: -36vw;
}

.details-right-back {
    padding-bottom: 10%;
    margin-right: 0.7vw;
}

.details-right-back a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #1b1b1b;
}

.details-right-back a:after {
    content: '';
    width: 17px;
    height: 17px;
    margin-left: 0.5vw;
    background: url(../images/overview/back-list-icon.png) no-repeat center
}

.details-swiper-content {
    position: absolute;
    bottom: 5vh;
    right: calc(50% - 32vw);
    z-index: 10;
    transform: translateX(-50%);
    width: 40vw;
    transition: all .4s ease;
}

.details-swiper-content .swiper-button-next {
    background-color: #e60012;
    color: #fff;
    font-size: 13px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    font-family: '宋体';
    font-weight: bold;
    position: absolute;
    top: calc(50% + 10px);
    right: -50px;
    z-index: 11;
    background-image: none;
}

.details-swiper-content .swiper-button-prev {
    background-color: #e60012;
    color: #fff;
    font-size: 13px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    font-family: '宋体';
    font-weight: bold;
    position: absolute;
    top: calc(50% + 10px);
    left: -50px;
    z-index: 11;
    background-image: none;
}

.details-swiper-content .swiper-button-disabled {
    background-color: #000;
    opacity: 1;
}

.details-swiper-content.on {
    right: calc(50% - 42vw);
}

.gallery-thumbs .swiper-slide {
    border: 1px solid #fff;
    cursor: pointer;
}

.details-swiper-content .swiper-slide-active {
    border: 1px solid #e60012;
}

.details-swiper-content .swiper-slide-btn {
    cursor: pointer;
}

.details-swiper-content .swiper-slide-btn.disabled {
    opacity: 0.6;
}

.details-right .swiper-desc li {
    display: none;
}

.details-right .swiper-desc li:first-child {
    display: block;
}


/* 右边详情介绍样式 */

.swiper-desc {
    height: 80vh;
    padding-right: 4.2vw;
    margin-top: 2vw;
    overflow-y: auto;
}


/* 滚动条修改 */

.swiper-desc::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0.3vw;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
    scrollbar-arrow-color: #fff;
}

.swiper-desc::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background-color: #bea193;
}

.swiper-desc::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.0);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0);
}

.swiper-desc .nav-tab {
    margin-bottom: 100px;
    border-bottom: 1px solid #ddd;
}

.swiper-desc .nav-tab a {
    display: block;
    margin-bottom: -1px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid transparent;
    transition: .3s;
}

.swiper-desc .nav-tab a+a {
    margin-left: 30px;
}

.swiper-desc .nav-tab a:hover,
.swiper-desc .nav-tab a.active {
    color: var(--hover-color);
    border-color: var(--hover-color);
}

.swiper-desc .title {
    font-size: 24px;
    margin-bottom: 30px;
}

.swiper-desc .title small {
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: normal;
    font-size: 50%;
}

.swiper-desc .title small::after {
    content: "";
    display: block;
    margin-top: 20px;
    width: 40px;
    border-bottom: 2px solid #1b1b1b;
}

.swiper-desc .sub-title {
    margin-bottom: 2vw;
    color: #060606;
    font-size: 0.7vw;
}

.swiper-desc .sub-title p {
    line-height: 1.3vw;
}

.swiper-desc .back {
    margin-bottom: 100px;
    text-align: right;
}

.swiper-desc .back a {
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--hover-color);
    color: #fff;
    border-radius: 50%;
}

.swiper-desc .rich-text {
    word-break: break-all;
    line-height: 1.6vw;
    color: #000;
    margin-bottom: 25px;
    font-size: 0.8vw;
}

.gallery-thumbs {
    width: 100% !important;
    height: 90px !important;
}