body{
    background: url('../image/smallBg2.png') repeat;
}
.columnTitle{
    width: 1230px;
    display: flex;
    align-items: center;
    margin:0 auto;
    margin-top: 32px;
    
}
.columnTitle img{
    width: 30px;
}
.columnTitle .columnName{
    font-weight: bold;
    font-size: 28px;
    color: #333333;
    margin: 0 8px;
    
}
.content{
    padding: 30px 0;
    min-height: calc(100vh - 512px);
}
.characters{
    width: 1230px;
    margin:0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
}
.characterItem{
    display: flex;
    flex-direction: column;
    width: 220px;
    height: 450px;
    padding:10px 10px 20px;
    margin-bottom: 30px;
    margin-right: 94px;
    position: relative;
    box-sizing: border-box;
}
.characterItem:nth-child(4n){
    margin-right: 0;
}
.characterItem:hover{
    box-shadow: 0px 6px 18px 0px rgba(0,0,0,0.2);
    border-radius: 6px 6px 0 0;
}
.characterItem:hover::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #A42227;
}
.avator{
    width: 200px;
    height: 278px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}
.name{
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    line-height: 26px;
    margin-top:12px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    flex-shrink: 0;
}
.des{
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 12px;
    text-indent: 2em;
    flex: 1;
}
.viewMore{
    font-size: 14px;
    color: #015293;
    line-height: 20px;
    display: block;
    flex-shrink: 0;
}