.column_title{
    margin: 16px 0;
    font-size: 18px;
    font-weight: bold;
}
.column_title>img{
    width: 30px;
    height: 30px;
    margin-right: 6px;
}
.column_title>span{
    vertical-align: middle;
}
.column_movie{
    position: relative;
}
.column_list{
    margin-bottom: 20px;
    white-space: nowrap;
}
.column_item{
    width: 160px;
    height: 260px;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}
.column_item>img{
    width: 160px;
    height: 220px;
    border-radius: 5px;
}
.column_item_content{
    margin: 4px 0;
}
.column_movie_desc{
    font-size: 12px;
    color: #CCCCCC;
    width: 160px;
}
.column_movie_title{
    width: 120px;
    font-weight: bold;
    display: inline-block;
}
.column_movie_score{
    width: 40px;
    text-align: right;
    display: inline-block;
    color: #FF7155;
    font-weight: bold;
}
.left_arrows,.right_arrows{
    position: absolute;
    width: 40px;
    height: 52px;
    background-color: rgba(0,0,0,.5);
    top: 88px;
    cursor: pointer;
}
.left_arrows{
    left: 0;
    border-radius: 0 50px 50px 0;
}
.right_arrows{
    right: 0;
    border-radius: 50px 0 0 50px;
}
.left_arrows>img,.right_arrows>img{
    width: 30px;
    height: 30px;
    margin-top: 10px;
    opacity: .8;
}
.right_arrows>img{
    margin-left: 10px;
}
.left_arrows>img{
    margin-right: 10px;
    transform: rotateZ(180deg);
}
.left_arrows:hover,.right_arrows:hover{
    background-color: rgba(0,0,0,.6);
}
.left_arrows:hover img,.right_arrows:hover img{
    opacity: 1;
}
.no_data_text{
    text-align: center;
    color: #9c9c9c;
    font-size: 16px;
    font-weight: bold;
}