.hardware-parent-container{
    width: 100%;
    /* height: 100%; */
    font-size: 20px;
    font-family: MicrosoftYaHei;
    font-weight: 300;
    color: #666666;
    line-height: 25px;
}
.hard-title{ 
    width: 100%;
    height: 380px;
    font-size: 20px;
    color: #F5F5F5;
    line-height: 25px;
    background-image: url(../image/hardware/move.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}
.hard-title .title-name{
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 46px;
}
.hard-title .title-desc{
    width: 536px;
}
.series-container,.hard-title>div{
    width: 1200px;
    margin: 0 auto;
}
.hard-title>div{
    padding-right: 552px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.series-container{
    margin: 60px auto 0;
}
.series-container .series-title{
    font-size: 34px;
    font-weight: 500;
    color: #333333;
    margin: 0px 0 41px 0;
}
.series-container ul{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 41px 0 0 0;
}
.series-container .series-item{
    width: 100%;
    height: 400px;
    background: #DDDDDD;
    font-size: 12px;
    font-weight: 300;
    color: #666666;
    text-align: center;
    position: relative;
    margin-right: 36px;
    margin-bottom: 30px;
    padding-top: 15px;
}
.series-container .series-item>div{
    position: absolute;
    bottom: 36px;
    width: 100%;
}
.series-container .series-item img{
    height: 190px;
    margin-bottom: 22px;
}
.series-container .series-item .title1{
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}
.series-container .series-item .title2{
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    margin: 16px 0 17px 0;
}
.series-container .series-desc{
    width:654px;
    line-height: 25px;
    font-size: 16px;
}
.series-container .el-row{
    margin-top: 30px;
}
.series-item .img-hover{
    height: 240px;
    width: 100%;
    display: none;
}
.series-item .img{
    height: 240px;
    width: 100%;
    display: block;
    transform: scale(1);
    animation:mymove1 .5s;
}
.hard-move-container.desktop-container .series-item .img,
.hard-move-container.desktop-container .series-item .img-hover{
    /* height: 150px;
    margin: 35px auto 0 !important; */
}
.series-item:hover .img{
    display: none;
}
.series-item:hover .img-hover{
    display: block;
    transform: scale(1.1);
    animation:mymove .5s;
}
.hard-move-container{
    padding-top: 113px;
}
@keyframes mymove
    {
        0%{
            transform: scale(1);  /*开始为原始大小*/
        }
        100%{
            transform: scale(1.1);
        }

    }
    
@-webkit-keyframes mymove /*Safari and Chrome*/
    {
        0%{
            transform: scale(1);  /*开始为原始大小*/
        }
        100%{
            transform: scale(1.1);
        }
    }
@keyframes mymove1
    {
        0%{
            transform: scale(1.1);  /*开始为原始大小*/
        }
        100%{
            transform: scale(1);
        }

    }
    
@-webkit-keyframes mymove1 /*Safari and Chrome*/
{
    0%{
        transform: scale(1.1);  /*开始为原始大小*/
    }
    100%{
        transform: scale(1);
    }
}
/* 顶部样式 */
body{
    padding-top: 0;
}
/* .role-header{
    position: relative;
    transition: all 0.5s ease-in-out;
} */
.hardware-nav{
    background: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    position: relative;
}
.hardware-nav ul{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hardware-nav ul li{
    margin-right: 40px;
    cursor: pointer;
}
.hardware-nav ul li:last-child{
    margin-right: 0;
}
.hardware-nav ul li.active{
    color: #ff5f18;
}
.hardware-nav.isfixed{
    position: fixed;
    top: 61px;
    width: 100%;
    background: #fff;
    z-index: 9;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    transition: top 0.5s ease-in-out;
}