/* 游戏类型支持 */
.game-type-support {
    display: flex;
    justify-content: space-evenly;

    max-width: 1230px;
    padding: 60px 0;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    overflow: hidden;
}

.game-type-support .img {
    position: relative;
    overflow: hidden;
    width: 30%;
}

.game-type-support .img img {
    width: 100%;
    object-fit: contain;
}

.game-type-support .img:hover .shade {
    transform: translateY(0);
    transition: transform .5s;
}

.game-type-support .img .shade {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;
    color: #FFF;
    padding-top: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: linear-gradient( 180deg, rgba(0,22,50,0) 0%, rgba(0,22,50,0.5) 20%, #000000 100%);
    transform: translateY(50%);
    transition: transform .5s;
}

.game-type-support .img .shade p.title-EN {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
    font-family: Poppins, Poppins;
}

.game-type-support .img .shade p.title-CH {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    margin: 0;
    font-family: Source Han Sans, Source Han Sans;
}

.game-type-support .img .shade .title-line {
    width: 94px;
    height: 5px;
    margin: 15px 0 60px;
    background: #0072FF;
}

.game-type-support .img .shade >span {
    font-family: 思源黑体;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 1px;
}

/* 视频 */
.jy-video {
    width: 100%;
    height: 400px;
    position: relative;
}

.jy-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jy-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* module */
.default-module {
    padding: 240px 15%;
    margin: 0;
    color: #FFF;
    display: flex;
    flex-direction: column;
}

.jy-module-bg {
    background-size: cover;
    background-position: center 20%;
}

/* case */
.jy-case-more-btn:hover {
    filter: drop-shadow(3px 3px 20px rgba(0, 114, 255, 0.5)) !important;
}
