.content{
    background-image: url("../img/bg_gray.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom;
    background-color: #dfe5f2;

}
.list-container{
    width: 1200px;
    margin: 56px auto;
}
.item-info{
    width: 100%;
    height: 662px;
    position: relative;
    margin-bottom: 50px;
    /*cursor: pointer;*/
}
/*.item-info 可见*/

.item-info .image{
    width: 492px;
    height: 620px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}
.item-info .info-container{
    width: 1102px;
    height: 625px;
    background-color: #23252b;
    position: absolute;
    top: 35px;
    right: 0;
    padding: 70px 60px 90px 455px;
}
.item-info .en-title{
    font-size: 30px;
    font-weight: 600;
    color: #e4d6ba;
    text-align: justify;
}
.item-info .zh-title{
    font-size: 30px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: justify;
    cursor: pointer;
    /*margin-top: 24px;*/
}

.item-info .desc{
    font-size: 16px;
    line-height: 30px;
    color: #797d84;
    margin-top: 35px;
}

.item-info .date{
    font-size: 14px;
    color: #797d84;
    margin-top: 30px;
}
.item-info .date .icon{
    font-size: 20px;
    color: #797d84;
}
.item-info .avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.item-info .author{
    font-size: 18px;
    line-height: 30px;
    color: #999999;
    margin-left: 12px;
}

.item-info .author .name{
    font-size: 18px;
    font-weight: 600;
    color: #e4d6ba;
    position: relative;
}

.item-info .author .name::before{
    content: "";
    width: 0;
    height: 1px;
    background-color: #e4d6ba;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: width .3s;
}

.item-info .look{
    font-size: 14px;
    color: #797d84;
    transition: width .3s;
    cursor: pointer;
}
.item-info .look .icon{
    font-size: 20px;
}
.item-info .look:hover{
    transform: scale(1.1);
}


/*选中后.item-info .author .name::before width 到100%*/
.item-info .author-link:hover .author .name::before{
    width: 100%;
}
