/* hardware */
.main {
    position: relative;
    padding-top: 80px;
    background-color: #edf0f3;
}
.main::after {    
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: '';
    width: 100%;
    max-width: 1920px;
    height: 260px;
    margin: 0 auto;
    background-image: url(../images/softbg.jpg);
    background-size: 100%;
    background-position: left bottom;
}
.main-wrap-box {
    position: relative;
    z-index: 1;
}
.main-wrap-tit {
    display: flex;
    padding: 40px 30px 15px 30px;
    font-size: 32px;
    text-align: left;
}
.main-wrap-tit-ch {
    font-weight: bold;
}
.main-wrap-tit-ch {
    color: var(--white-op8);
}
.main-wrap-tit-en {
    position: relative;
    top: 10px;
    left: -161px;
    font-size: 45px;
    color: var(--white-op3);
}
.main-wrap-con {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 10px;
    /* background-color: var(--white); */
    background-color: #edf0f3;
}

.hardware .main-wrap-con {
    display: flex;
    flex-direction: column;
}
.hard-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.hard-tab {
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
    width: 1260px;
    font-size: 26px;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
}
.hard-tab.active::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -5px;
    left: 30%;
    width: 40%;
    height: 0;
    border-bottom: 2px solid var(--primary-blue);
}

.hard-con {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e5e9;
}
.hard-con:nth-last-of-type(1){
    border: none;
}
.hard-box {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    width: 300px;
    /* border: 1px solid #f9f9f9; */
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}
.hard-box.row {
    display: flex;
    /* flex-direction: row; */
    width: 600px;
}
.hard-box.row .hard-img {
    flex: 0 0 390px;
}
.hard-box.row .hard-img img {
    width: 45%;
}
.hard-box.row .hard-info {
    padding: 20px;
}
.hard-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 380px;
    background-color: var(--white);
    overflow: hidden;
}
.hard-img img {
    width: 90%;
}
.hard-info {
    flex: 1;
    padding: 20px;
}
.hard-tit {
    flex: 1;
    text-align: center;
    /* margin-bottom: 20px; */
    font-size: 22px;
    line-height: 32px;
}
.hard-des {
    display: none;
    font-size: 14px;
    line-height: 24px;
    color: var(--black-9);
}