@charset "utf-8";

#atc_shorts{
    position:relative;
    margin:0 auto;
    padding:110px 0 90px;
    width:100%;
    min-width:var(--main-size);
    background:radial-gradient(ellipse at 50% 0%, rgb(235, 247, 249, 0.85) 0%, #f6f8f9 50%, #eef1f3 100%);
}

#atc_shorts .shorts_tit{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

#atc_shorts .shorts_icon{
    display:flex;
    justify-content:center;
    align-items:center;
    width:46px;
    height:46px;
}

#atc_shorts .shorts_icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

#atc_shorts .shorts_tit h2{
    margin-top:22px;
    font-size:58px;
    font-weight:800;
    line-height:1.12;
    letter-spacing:-0.025em;
    color:var(--black);
}

#atc_shorts .shorts_tit h2 span{
    font-weight:800;
    color:var(--primary);
}

#atc_shorts .shorts_tit p{
    margin-top:14px;
    font-size:22px;
    font-weight:400;
    letter-spacing:-0.01em;
    color:#777;
}

#atc_shorts .shorts_slide_wrap{
    position:relative;
    margin:56px auto 0;
    width:1600px;
    max-width:calc(100% - 80px);
    padding:0 56px;
}

#atc_shorts .shorts_slide{
    overflow:hidden !important;
    position:relative;
    padding:36px 0 12px;
    width:100%;
}

#atc_shorts .shorts_slide .swiper-wrapper{
    align-items:center;
}

#atc_shorts .shorts_slide .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
    height:440px;
    opacity:0.72;
    transition:opacity .45s ease;
}

#atc_shorts .shorts_slide .swiper-slide-prev,
#atc_shorts .shorts_slide .swiper-slide-next{
    opacity:0.88;
}

#atc_shorts .shorts_slide .swiper-slide-active{
    opacity:1;
}

#atc_shorts .shorts_card{
    overflow:hidden;
    position:relative;
    width:84%;
    height:86%;
    border-radius:20px;
    box-shadow:0 6px 20px rgb(0, 0, 0, 0.08);
    transition:width .45s ease, height .45s ease, box-shadow .45s ease;
}

#atc_shorts .shorts_slide .swiper-slide-prev .shorts_card,
#atc_shorts .shorts_slide .swiper-slide-next .shorts_card{
    width:92%;
    height:93%;
}

#atc_shorts .shorts_slide .swiper-slide-active .shorts_card{
    width:100%;
    height:100%;
    box-shadow:0 16px 40px rgb(0, 0, 0, 0.16);
}

#atc_shorts .shorts_card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

#atc_shorts .shorts_card_overlay{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:absolute;
    inset:0;
    padding:16px 14px 20px;
    background:linear-gradient(180deg, rgb(0, 0, 0, 0.06) 0%, transparent 25%, transparent 52%, rgb(0, 0, 0, 0.8) 100%);
}

#atc_shorts .shorts_card .brand{
    font-size:10px;
    font-weight:700;
    letter-spacing:0.14em;
    color:#fff;
}

#atc_shorts .shorts_card .play_btn{
    display:flex;
    justify-content:center;
    align-items:center;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:rgb(255, 255, 255, 0.32);
    backdrop-filter:blur(2px);
    cursor:pointer;
    transition:background .3s;
}

#atc_shorts .shorts_card .play_btn svg{
    width:20px;
    height:20px;
    margin-left:3px;
    fill:#fff;
}

#atc_shorts .shorts_card .play_btn:hover{
    background:rgb(255, 255, 255, 0.45);
}

#atc_shorts .shorts_card_info{
    position:relative;
    z-index:2;
}

#atc_shorts .shorts_card_info h3{
    font-size:16px;
    font-weight:700;
    line-height:1.35;
    color:#fff;
}

#atc_shorts .shorts_card_info p{
    margin-top:5px;
    font-size:12px;
    font-weight:400;
    line-height:1.45;
    color:rgb(255, 255, 255, 0.92);
}

#atc_shorts .shorts_card_info .tags{
    margin-top:8px;
    font-size:11px;
    font-weight:400;
    color:rgb(255, 255, 255, 0.6);
}

#atc_shorts .shorts_card.is-ba .brand{display:none}

#atc_shorts .shorts_card.is-ba .ba_labels{
    display:flex;
    justify-content:space-between;
    position:absolute;
    top:16px;
    left:14px;
    right:14px;
    z-index:3;
}

#atc_shorts .shorts_card.is-ba .ba_labels span{
    padding:3px 9px;
    border-radius:3px;
    font-size:10px;
    font-weight:600;
    color:#fff;
    background:rgb(0, 0, 0, 0.38);
}

#atc_shorts .shorts_nav{
    display:flex;
    justify-content:center;
    align-items:center;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    width:48px;
    height:48px;
    border:1px solid #e8e8e8;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 12px rgb(0, 0, 0, 0.06);
    cursor:pointer;
    transition:all .3s;
}

#atc_shorts .shorts_nav.prev{left:0}
#atc_shorts .shorts_nav.next{right:0}

#atc_shorts .shorts_nav svg{
    width:18px;
    height:18px;
    color:#bdbdbd;
    stroke-width:2.5px;
    transition:color .3s;
}

#atc_shorts .shorts_nav:hover svg{
    color:var(--primary);
}

#atc_shorts .shorts_nav:hover{
    border-color:var(--primary);
    box-shadow:0 4px 16px rgb(56, 176, 201, 0.15);
}

#atc_shorts .shorts_pager{
    display:flex;
    justify-content:center;
    gap:7px;
    margin-top:28px;
}

#atc_shorts .shorts_pager span{
    display:block;
    width:8px;
    height:8px;
    border-radius:50%;
    opacity:1;
    background:#d8d8d8;
    transition:all .3s;
    cursor:pointer;
}

#atc_shorts .shorts_pager span.on{
    width:26px;
    border-radius:4px;
    background:var(--primary);
}

#atc_shorts .shorts_more_btn{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:32px auto 0;
    width:max-content;
    min-width:300px;
    height:54px;
    padding:0 40px;
    border:2px solid var(--primary);
    border-radius:27px;
    font-size:16px;
    font-weight:600;
    color:var(--primary);
    background:transparent;
    transition:all .3s;
}

#atc_shorts .shorts_more_btn:hover{
    color:#fff;
    background:var(--primary);
}

@media (max-width:1980px){
#atc_shorts{padding:90px 0 70px}
#atc_shorts .shorts_icon{width:44px;height:44px}
#atc_shorts .shorts_tit h2{font-size:56px}
#atc_shorts .shorts_tit p{font-size:21px}
#atc_shorts .shorts_slide .swiper-slide{height:420px}
#atc_shorts .shorts_slide_wrap{width:1600px}
}
