@charset "UTF-8";

.GYQC {
    overflow: hidden;
    width: 100%;
    /*背景图片*/
    box-sizing: border-box;
    padding-bottom: 50px;
}

.GYQC .container {
    width: 100%;
    max-width: 1730px;
    margin: auto;
}


.GYQC .container .scroll-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;

}

/* 右侧------------------------------------- */


.GYQC .container .scroll-container>ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.GYQC .container .scroll-container>ul>li {
    width: calc(25% - 20px);
    height: calc(25vw*0.5);
    overflow: hidden;
    box-sizing: border-box;
    background-color: black;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    transition: .2s;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 11px 33px 0 #00000011;
    position: relative;
    z-index: 1;

    /*渐变倒影*/
    -webkit-box-reflect: below 1px linear-gradient(transparent 90%, #ffffff66);


}

.GYQC .container .scroll-container>ul>li:after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*从上往下线性渐变背景*/
    background: linear-gradient(transparent 50%, #9c266e calc(100% - 10px));
    z-index: 0;
    pointer-events: none;
}

.GYQC .container .scroll-container>ul>li .cover {
    /* height: calc(100% - 60px); */
    width: 100%;
    flex-grow: 1;
}

.GYQC .container .scroll-container>ul>li .title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    font-weight: bold;
    z-index: 1;
    font-size: 16px;

}

.GYQC .container .scroll-container>ul>li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.GYQC .container .scroll-container>ul>li a:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background-color: #00000055;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .2s;

}

.GYQC .container .scroll-container>ul>li img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.GYQC .container .scroll-container>ul>li i.play {
    width: 20%;
    height: 20%;
    /*背景图片*/
    background: transparent url("../images/SSFC/play.svg") no-repeat center / contain;
    z-index: 2;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transition: .2s;
    opacity: 0.618;
}

.GYQC .container .scroll-container>ul>li:hover {
    transform: scale(1.1);
    z-index: 1;
    /*变亮*/
    filter: brightness(1.3);
    /*渐变倒影*/
    -webkit-box-reflect: revert;
}

.GYQC .container .scroll-container>ul>li:hover a::after {
    opacity: 1;
}

/* 移动端------------------------------------- */
[isMobile] .GYQC {
    padding-bottom: 20px;
}

[isMobile] .GYQC .container {}

[isMobile] .GYQC .container .scroll-container>ul {
    width: 100%;
    flex-direction: column;
}

[isMobile] .GYQC .container .scroll-container>ul>li {
    width: 100%;
    height: calc(100vw * 0.5);
    margin-right: 0;
    margin-bottom: 20px;
    -webkit-box-reflect: revert;

}

[isMobile] .GYQC .container .scroll-container>ul>li .title * {
    font-family: AlimamaFangYuanTiVF-Thin;
}