.academy-box + .academy-box{
    margin-top: 80px;
}
.academy-box .row{
    display: flex;
    align-items: center;
}
.academy-box .col:nth-child(1){
    width: 350px;
    box-sizing: border-box;
}
.academy-box .col:nth-child(2){
    width: calc(100% - 350px);
    box-sizing: border-box;
    padding-left: 30px;
}
.academy-box .description{
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f3f3;
    padding: 15px 25px;
    box-sizing: border-box;
    border-radius: 5px;
}
.academy-box .pic-content{
    position: relative;
    display: flex;
    align-items: center;
}
.academy-box .text{
    position: absolute;
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-shadow: 0px 1px 20px #000000;
}
.academy-box .text:before{
    content: '';
    width: 50px;
    height: 1px;
    background: #FFF;
    position: absolute;
    left: calc(50% - 25px);
    bottom: 0;
    transition: all .3s ease;
}
.academy-box .pic-content:hover .text:before{
    width: 60px;
    left: calc(50% - 30px);
}
.academy-box .pic img{
    width: 100%;
}
.academy-box .pic{
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}
.academy-box .pic:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(252 146 22 / 20%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease;
}
.academy-box .pic-content:hover .pic:before{
    background: rgb(252 146 22 / 30%);
}
.academy-box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.sub-list .item{
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    width: 100%;
}
.sub-list .name{
    position: relative;
    padding-left: 20px;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px;
}
.sub-list .name:hover{
    color: #FA3939;
}
.sub-list .name:before{
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 6px;
    top: 13px;
    background: #00b3d4;
    border-radius: 50%;
}
@media(max-width:760px){
    .academy-box .row {
        flex-direction: column;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .academy-box .col:nth-child(1) {
        width: 100%;
        margin-bottom: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .academy-box .col:nth-child(2) {
        width: 100%;
        padding: 0;
    }
    .academy-box .text{
        font-size: 18px;
    }
    .academy-box .description {
        margin-bottom: 15px;
        padding-bottom: 30px;
        padding: 10px 20px;
        font-size: 15px;
        line-height: 1.6;
    }
    .sub-list .name{
        font-size: 15px;
    }
    .academy-box + .academy-box {
        margin-top: 50px;
    }
}
@media(max-width:400px){
}