.exclusive_board > .layout_max{
    transform: translateY(-45px);
}
.exclusive_board .bg_img{
    width: 100%;
    height: 270px;
    overflow: hidden;
}
.exclusive_board .bg_img img{
    width: 100%;
    position: relative;
    transform: translateY(-35%);
}
.exclusive_board .head-list{
    border-radius: 0px 0px 20px 20px;
    position: relative;
    border-radius: 20px;
}
.exclusive_board .head-list .title{
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #222222;
    padding: 20px 34px;
    cursor: pointer;
    z-index: 1;
    position: relative;
    box-shadow: 0px 10px 20px #0000001A;
    gap: 20px;
}
.exclusive_board .head-list .title .left{
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.exclusive_board .head-list .title .right{
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    min-width: 30px;
}
.exclusive_board .head-list .title .right .text{
    font-size: 18px;
    font-weight: 500;
    transform: translateX(150%);
    transition: 0.3s;
    opacity: 0;
}
.exclusive_board .head-list:hover .title .right .text{
    transform: translateX(0%);
    opacity: 1;
}
.exclusive_board .head-list:hover .title .right .arrow{
    background-color: #F54D03;
}
.exclusive_board .head-list .title .right .arrow{
    width: 35px;
    height: 35px;
    min-width: 35px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.exclusive_board .head-list ul{
    position: relative;
    background-color: #F8FAFF;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0px 10px 20px #0000001A;
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 25px;
    z-index: 0;
    border-left: 1px solid #222;
    border: 1px solid #222;
    max-height: 430px;
    overflow: auto;
}
.exclusive_board .head-list ul li{
    display: flex;
    align-items: center;
    position: relative;
    height: auto;
    font-size: 20px;
    border-top: 1px solid #D5DBE9;
    color: #56617B;
    font-weight: 400;
}
.exclusive_board .head-list ul li.active{
    font-weight: 600;
    color: #222;
    font-size: 22px;
}
.exclusive_board .head-list ul li.active::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/assets/bsd02/image/board/exclusive/icon_active_blue.svg) no-repeat center center;
    background-size: contain;
}
.exclusive_board .head-list ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 25px;
    padding: 20px 34px;
}
.exclusive_board .head-list ul li:first-of-type{
    border-top: 0px solid #222;
}
.exclusive_board .head-list ul li:not(.active) a:hover{
    background-color: #fff;
    color: #56617B;
    font-size: 20px;
    font-weight: 600;
}
.exclusive_board .head-list ul li:not(.active):hover::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/assets/bsd02/image/board/exclusive/icon_active_white.svg) no-repeat center center;
    background-size: contain;
}
.exclusive_board .body-view{
    padding-top: 70px;
    padding-bottom: 150px;
    font-size: 20px;
    line-height: 1.3;
}
.exclusive_board .body-view img{
    max-width: 100%;
}

@media (max-width: 1520px) {}
@media (max-width: 1300px) {
    .exclusive_board .head-list .title{
        height: 65px;
        min-height: auto;
    }
    .exclusive_board .head-list .title .left{
        font-size: 20px;
    }
    .exclusive_board .head-list ul{
        top: 50px;
        padding-top: 15px;
    }
    .exclusive_board .head-list ul li{
        font-size: 18px;
    }
    .exclusive_board .body-view{
        padding-top: 50px;
        padding-bottom: 100px;
        font-size: 18px;
    }
    .exclusive_board .head-list ul li a{
        font-size: 16px;
    }
}
@media (max-width: 1024px) {
    .exclusive_board .bg_img{
        height: 225px;
    }
    .exclusive_board .bg_img img{
        transform: translateY(-15%);
    }
    .exclusive_board > .layout_max{
        transform: translateY(-40px);
    }
}
@media (max-width: 767px) {
    .exclusive_board .bg_img{
        height: 150px;
    }
    .exclusive_board .head-list .title{
        padding: 15px 20px;
    }
    .exclusive_board .head-list .title .left{
        font-size: 17px;
    }
    .exclusive_board .head-list .title .right .arrow{
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    .exclusive_board .head-list .title .right .text{
        font-size: 14px;
    }
    .exclusive_board .body-view{
        padding-top: 30px;
        padding-bottom: 60px;
        font-size: 15px;
    }
    .exclusive_board .head-list ul li{
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
    }
    .exclusive_board .head-list ul li.active::after{
        right: 20px;
    }
    .exclusive_board .head-list ul li a{
        padding-left: 0;
        padding-right: 35px;
    }
    .exclusive_board .head-list.active .title .right .text{
        display: none;
    }
    .exclusive_board .head-list:hover .title .right .text{
        display: none;
    }
}
@media (max-width: 425px) {}