/* 企业文化 */
.culture-wrap{
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.culture-box{
    max-width: 1220px;
    width: 90%;
    margin: 80px auto 90px;
}
.culture-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.culture-item{
    width: 400px;
    height: 338px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}
.culture-item:nth-child(1),.culture-item:nth-child(2){
    width: 605px;
    height: 500px;
}
.culture-item .cultureImg{
    width: 100%;
    height: 100%;
}
.cultureImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.culture-item:hover img{
    transform: scale(1.2)
}
/* .culture-item:hover .cultureText{
    opacity: 1;
} */
.cultureText{
    /* opacity: 0; */
    transition: opacity 1s;
    width: 100%;
    height: 100%;
    color: white;
    /* background-color: rgba(255, 255, 255, 0.5); */
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
}
.cultureText-title{
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.cultureText-text{
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}
.culture-item .cultureIcon{
    display: inline-block;
    margin: 0 auto;
}
.culture-item:nth-child(1) .cultureIcon{
    width: 61px;
    height: 51px;
    background: url(../image/about/6culture/icon1.png) no-repeat;
    background-size: 100% 100%;
}
.culture-item:nth-child(2) .cultureIcon{
    width: 48px;
    height: 58px;
    background: url(../image/about/6culture/icon2.png) no-repeat;
    background-size: 100% 100%;
}
.culture-item:nth-child(3) .cultureIcon{
    width: 60px;
    height: 56px;
    background: url(../image/about/6culture/icon3.png) no-repeat;
    background-size: 100% 100%;
}
.culture-item:nth-child(4) .cultureIcon{
    width: 55px;
    height: 54px;
    background: url(../image/about/6culture/icon4.png) no-repeat;
    background-size: 100% 100%;
}
.culture-item:nth-child(5) .cultureIcon{
    width: 51px;
    height: 55px;
    background: url(../image/about/6culture/icon5.png) no-repeat;
    background-size: 100% 100%;
}
@media screen and (max-width:768px){
    .culture-list{
        justify-content: center;
    }
    .culture-item,.culture-item:nth-child(1), .culture-item:nth-child(2){
        width: 100%;
        height: auto;
    }
}