/**
 * Description: 首页子公司入口样式
 * Created by wxy on 2018/6/12 11:56
 */

/*子公司入口——begin*/
.company-unit-lists {
    position: relative;
    margin-top: 60px;
    height: 78px;
}
.company-unit-images-lists li:last-child {
    margin-right: 0px;
}
.company-unit-images-lists li {
    position: relative;
    float: left;
    width: 229px;
    height: 320px;
    overflow: hidden;
    margin-right: 13.3px;
    background: #fff;
}

.company-unit-images-lists li img {
    opacity: 0.9;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index:1;
}
.company-unit-images-lists li .title{
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 100%;
    height: 50px;
    z-index: 2;
}
.company-unit-images-lists li .word{
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
}
.company-unit-images-lists-english li .word{
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
    letter-spacing: normal;
}

.company-unit-images-lists li .title .back{
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #999;
    opacity: 0.7;
}
.company-unit-images-lists li:hover{
    background: #000;
    cursor: pointer;
    transition: all 500ms linear;
}
.company-unit-images-lists li:hover img{
    opacity: 0.5;
}
.company-unit-images-lists li:hover .title .word{
    color: #fff;
    /*transition: all 500ms linear;*/
}
.company-unit-images-lists li:hover .title .back{
    opacity: 0.7;
    background: #000;
    transition: all 500ms linear;
}
/*子公司入口——end*/
