.brochure-wrap .page-tab{
    margin-bottom: 33px;
    margin-top: 23px;
}
.brochure-wrap .brochure-list{
    flex-wrap: wrap;
    gap: 30px 20px;;
    display: flex;
    align-items: stretch;
}
.brochure-wrap .brochure-list .brochure-item{
    border-radius: 20px;
    overflow: hidden;
    width: calc((100% - 60px) / 4);
    box-sizing: border-box;
    border:1px solid #E0E0E0;
    transition: box-shadow 0.3s;
}
.brochure-wrap .brochure-list .brochure-item:hover{
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.brochure-wrap .brochure-list .brochure-item a{
    display: block;
}
.brochure-wrap .brochure-list .brochure-item a .img{
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
}
.brochure-wrap .brochure-list.video .brochure-item a .img{
    aspect-ratio: 25 / 14;
}
.brochure-wrap .brochure-list .brochure-item a .img .bg{
    background-color: #efefef;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    display: block;
    width: 100%;
    transition: transform 0.3s;
}
.brochure-wrap .brochure-list .brochure-item:hover a .img .bg{
    transform: scale(1.16);
}
.brochure-wrap .brochure-list .brochure-item .text{
    padding:16px;
}
.brochure-wrap .brochure-list .brochure-item .text span{
    display: block;
    font-weight: 500;
    font-size: 15px;
    color:#93A0A5;
    margin-bottom: 4px;
}
.brochure-wrap .brochure-list .brochure-item .text strong{
    display: block;
    font-size: 18px;
    line-height: 1.3em;
    color:#333;
    font-weight: 500;
    word-break: keep-all;
}
.brochure-wrap .brochure-view h4{
    display: block;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.45em;
}
.brochure-wrap .brochure-view .video{
    margin:70px 0;
}
.brochure-wrap .brochure-view .video iframe{
    aspect-ratio: 16 / 9;
    display: block;
    margin:0 auto;
}

.media-wrap .page-tab{
    margin-bottom: 107px;
    margin-top: 23px;
}
.media-wrap .media-box{
    width: 1016px;
    max-width: 100%;
    margin:0 auto;
}
.media-wrap .media-box .subject{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 53px;
}
.media-wrap .media-box .subject p{
    font-size: 35px;
    font-weight: 600;
    color:#333;
    line-height: 1.2em;
    width: calc(100% - 120px);
}
.media-wrap .media-box .subject span{
    font-size: 20px;
    color:#333;
    line-height: 1.2em;
    width: 120px;
    text-align: right;
}
.media-wrap .media-box .cur-media{
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}
.media-wrap .media-box .cur-media iframe{
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    width: 100%;
    height: 100%;
}
.media-wrap .media-btm{
    position: relative;
    margin-top: 69px;
    background-color: #f2f4f5;
    border-radius: 5px;
    padding:45px 103px;
}
.media-wrap .media-btm .media-prev{
    position: absolute;
    top:50%;
    left:34px;
    border:0;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(/assets/images/data/icon_prev.svg);
    transform:translate(0,-50%);
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-indent: -9999px;
}
.media-wrap .media-btm .media-next{
    position: absolute;
    top:50%;
    right:34px;
    border:0;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(/assets/images/data/icon_next.svg);
    transform:translate(0,-50%);
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-indent: -9999px;
}
.media-wrap .media-btm .swiper-slide button{
    border:0;
    cursor: pointer;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    width: 100%;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.media-wrap .media-btm .swiper-slide button .thumb{
    background-repeat: no-repeat;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-position: center center;
    background-size: cover;
}
.media-wrap .media-btm .swiper-slide button.cur{
    opacity: 1;
}

.video-modal{
    position: fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 100;
    background: rgba(0,0,0,0.19);
    height: 100vh;
    display: none;
}
.video-modal .inner{
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding:30px 0;
    justify-content: center;
    box-sizing: border-box;
}
.video-modal .modal-box{
    width: 800px;
    max-width: 94vw;
    margin:0 auto;
    position: relative;
}
.video-modal #video{
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #fff;
}
.video-modal #video iframe{
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    width: 100%;
    height: 100%;
}
.video-modal .btn-close{
    position: absolute;
    right:0;
    top:0;
    border:0;
    cursor: pointer;
    overflow: hidden;
    text-indent: -9999px;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border:1px solid #333;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px auto;
    background-image: url(/assets/images/common/icon_close.png);
    border-radius: 100%;
    transform: translate(50%,-50%);
}


@media (max-width:1200px){
    .media-wrap .page-tab{
        margin-bottom: 80px;
        margin-top: 15px;
    }
    .media-wrap .media-box .subject{
        margin-bottom: 30px;
    }
    .media-wrap .media-box .subject p{
        font-size: 25px;
    }
    .media-wrap .media-box .subject span{
        font-size: 17px;
    }
    .media-wrap .media-btm{
        margin-top: 45px;
        padding:30px 80px;
    }

    .brochure-wrap .brochure-list{}
    .brochure-wrap .brochure-list .brochure-item{
        width: calc((100% - 40px) / 3);
    }
    .brochure-wrap .brochure-list .brochure-item .text span{
        font-size: 13px;
    }
    .brochure-wrap .brochure-list .brochure-item .text strong{
        font-size: 16px;
    }
}
@media (max-width:768px){
    .media-wrap .page-tab{
        margin:23px 0 40px;
    }
    .media-wrap .media-box .subject p{
        font-size: 20px;
        width: calc(100% - 80px);
    }
    .media-wrap .media-box .subject span{
        font-size: 13px;
        width: 80px;
    }
    .media-wrap .media-box .subject{
        margin-bottom: 19px;
    }
    .media-wrap .media-btm{
        margin-top: 30px;
        padding:20px 48px;
    }
    .media-wrap .media-btm .media-prev{
        left:9px;
    }
    .media-wrap .media-btm .media-next{
        right:9px;
    }

    .brochure-wrap .brochure-list{
        gap: 20px;
    }
    .brochure-wrap .brochure-list .brochure-item{
        width: 100%;
        border-radius: 10px;
    }
    .brochure-wrap .brochure-list .brochure-item .text{
        padding:12px;
    }
    .brochure-wrap .brochure-list .brochure-item .text span{
        font-size: 12px;
    }
    .brochure-wrap .brochure-list .brochure-item .text strong{
        font-size: 15px;
        line-height: 1.45em;
    }

    .brochure-wrap .brochure-view h4{
        font-size: 22px;
    }
    .brochure-wrap .brochure-view .video{
        margin:30px auto 60px;
    }
}