.hardware {
    width: 1300px;
    margin: 0 auto;
    opacity: 0;
}
.hardware-box {
    width: 100%;
    position: relative;
    z-index: 2;
    height: 460px;
}
.hardware-box-item {
    position: relative;
    height: 100%;
    width: 204px;
	background-color: #ffffff;
	box-shadow: 0px 2px 25px 0px 
		rgba(0, 157, 74, 0.04);
	border-radius: 14px;
    margin-right: 24px;
    transition: width .5s ease-in;
}
.hardware-box-item-title {
    position: absolute;
    left: 50%;
    top: 56px;
    transform: translateX(-50%);
    font-size: 18px;
    color: #313332;
    transition: all .5s;
    text-align: center;
}
.hardware-box-item-img {
    position: absolute;
    right: calc(50% - 130px);
    top: 120px;
    width: 241px;
    height: 300px;
    transition: all .5s;
}
.hardware-box-item-img img {
    width: 100%;
    height: 100%;
}
.hardware-box-item-active {
    width: 573px;
    margin-right: 66px;
}
.hardware-box-item-prompt {
   /* display: none; */
   opacity: 0;
   position: absolute;
   width: 180px;
   left: 50px;
   top: 112px;
   font-size: 14px;
   line-height: 24px;
   color: #777777;
   transition: all .5s ;
   
   
}
.hardware-box-item .hardware-box-item-prompt-img-box img {
    width: 34px;
	height: 34px;
    margin-right: 16px;
}
.hardware-box-item .hardware-box-item-prompt-img-box{
    margin-bottom: 30px;
}
.hardware-box-item-active .hardware-box-item-img {
    
    top: -50px;
   right: -18px;
    /* transform: translateX(611px); */
    width: 373px;
	height: 466px;
  
}
.hardware-box-item-active .hardware-box-item-title {
    font-size: 26px;
    height: 37px;
    color: #313332;
    left: 51px;
    top: 47px;
    transform: translateX(0);
}
.hardware-box-item-active .hardware-box-item-prompt {
    opacity: 1;
}
.hardware-box .hardware-box-item-active:last-child {
    margin-right: 0;
}
.hardware-box .hardware-box-item:last-child {
    margin-right: 0;
}

