@charset "UTF-8";

.YWJJ {
    overflow: hidden;
    width: 100%;
    /*背景图片*/
    background: transparent url(../images/YWJJ/bg.jpg) no-repeat right -110px;

    box-sizing: border-box;
    padding-bottom: 100px;
}

.YWJJ .container {
    width: 100%;
    /* max-width: calc(100% - 180px); */
    max-width: 1730px;
    margin: auto;
}


.YWJJ .container .title .right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.YWJJ .container .scroll-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.YWJJ .container .scroll-container>.left,
.YWJJ .container .scroll-container>.right {
    width: calc(50% - 20px);
    height: 600px;
    flex-shrink: 0;
    position: relative;

}

/* 左侧------------------------------------- */

.YWJJ .container .scroll-container>.left .images {
    width: 100%;
    height: 100%;

}

.YWJJ .container .scroll-container>.left .images:after {
    content: "";
    width: 100%;
    position: absolute;
    height: 100px;
    /*从上往下线性渐变背景*/
    background: linear-gradient(transparent, #000000CC);
    left: 0;
    bottom: 0;

}

.YWJJ .container .scroll-container>.left .images img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    position: absolute;
    left: 0;
    top: 0;
}

.YWJJ .container .scroll-container>.left .images img.show {
    opacity: 1;
    pointer-events: auto;
}

.YWJJ .container .scroll-container>.left .prev-next {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    /* height: 100px; */
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.YWJJ .container .scroll-container>.left .prev-next .prev-btn,
.YWJJ .container .scroll-container>.left .prev-next .next-btn {
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 11px 33px 0 #00000011;
    width: 20px;
    height: 20px;
    /*背景图片*/
    background: transparent url("../images/YWJJ/left.svg") no-repeat center / contain;
}

.YWJJ .container .scroll-container>.left .prev-next .next-btn {
    /*水平翻转*/
    transform: scaleX(-1);
}

.YWJJ .container .scroll-container>.left .prev-next .prev-btn:hover,
.YWJJ .container .scroll-container>.left .prev-next .next-btn:hover {
    opacity: 0.618;
}

.YWJJ .container .scroll-container>.left .prev-next .dot {
    width: 10px;
    height: 10px;
    background-color: white;
    box-shadow: 0 11px 33px 0 #00000011;
    border-radius: 88px;
    box-sizing: border-box;
    padding: 5px;
    margin: 0 10px;
    cursor: pointer;
    transition: .2s;
    border: 0px solid white;
}

.YWJJ .container .scroll-container>.left .prev-next .dot:hover,
.YWJJ .container .scroll-container>.left .prev-next .dot.active {
    border-width: 5px;
    background-color: #9c266e;


}

.YWJJ .container .scroll-container>.left .prev-next .dot:active {
    transform: scale(0.95);
}

/* 右侧------------------------------------- */

.YWJJ .container .scroll-container>.right {
    border-top: 3px solid #9c266e;
    box-sizing: border-box;

}

.YWJJ .container .scroll-container>.right>ul>li {
    height: 99.5px;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: .2s;
    cursor: pointer;
}

.YWJJ .container .scroll-container>.right>ul>li:hover {
    /*从左往右线性渐变背景*/
    background: linear-gradient(to right, #9c266e, transparent);
    padding: 0 30px;

}

.YWJJ .container .scroll-container>.right>ul>li:hover .date,
.YWJJ .container .scroll-container>.right>ul>li:hover .title {
    color: white;
}

.YWJJ .container .scroll-container>.right>ul>li .date {
    font-family: DIN Light;
    font-size: 18px;
    margin-bottom: 10px;
    color: #8896B3;
    font-weight: 300;
}

.YWJJ .container .scroll-container>.right>ul>li .title {
    font-family: Microsoft YaHei;
    font-size: 20px;
    color: #333;
    /*单行省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 移动端------------------------------------- */
[isMobile] .YWJJ {
    padding-bottom: 50px;
    background-size: contain;
    background-position-y: -50px;
}

[isMobile] .YWJJ .container {}

[isMobile] .YWJJ .container .scroll-container {
    flex-direction: column;
}

[isMobile] .YWJJ .container .scroll-container>.left,
[isMobile] .YWJJ .container .scroll-container>.right {
    width: 100%;
    height: revert;

}

[isMobile] .YWJJ .container .scroll-container>.left {
    height: 60vw;
}

[isMobile] .YWJJ .container .scroll-container>.right>ul>li {
    height: 80px;
}

[isMobile] .YWJJ .container .scroll-container>.right>ul>li .title {
    font-family: AlimamaFangYuanTiVF-Thin;
}