/* 
*
* 从软件到硬件
*
*/

.software-hardware {
    width: 100%;
    background: linear-gradient(to right, #edeaef, #ebe8fb);
    position: relative;
    overflow: hidden;
    padding-top: 62px;
    margin-top: -62px;
}

.software-hardware-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
}

.software-hardware-container h2 {
    letter-spacing: 1px;
    font-size: var(--h3-font-size);
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #222529;
    z-index: 1;
    position: relative;
}

.software-hardware-container h2 span {
    color: #0056ff;
    font-size: var(--h2-font-size);
}

.software-hardware-content {
    margin-top: 50px;
    z-index: 1;
    position: relative;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.software-hardware-content-top,
.software-hardware-content-bottom {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.software-hardware-content-item {
    flex: 1;
    height: 250px;
    background: #f9fbff;
    border-radius: 6px;
    border: 3px solid #ffffff;
}

.software-hardware-content-top .software-hardware-content-item {
    padding: 26px 21px;
}

.software-hardware-content-top .software-hardware-content-item:nth-child(3) {
    flex: 2;
}

.software-hardware-content-top .software-hardware-content-item:nth-child(3)>h5 {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 26px;
    color: #3c3d43;
}

.software-hardware-content-top .software-hardware-content-item:nth-child(3)>p {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #666666;
}

.software-hardware-content-item-footer {
    display: flex;
    margin-top: 50px;
}

.software-hardware-content-item-footer>div {
    flex: 1;
    text-align: center;
}

.software-hardware-content-item-footer>div>img {
    height: 30px;
    object-fit: contain;
    margin: 0 auto;
}

.software-hardware-content-item-footer>div>h6 {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    color: #000000;
}

.software-hardware-content-item-footer>div>p {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #7F8792;
    text-wrap: nowrap;
}

.software-hardware-content-bottom .software-hardware-content-item {
    padding: 26px;
}

.software-hardware-content-item-num {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 41px;
    line-height: 1;
    color: #00000033;
}

.software-hardware-content-item-title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 18px;
    color: #0a65e8;
    margin-top: 22px;
    margin-bottom: 30px;
    line-height: 1;
}

.software-hardware-content-item-text {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 24px;
    color: #44454d;
    line-height: 36px;
    line-height: 1;
    line-height: 35px;
}

.software-hardware-container .try-button-container {
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.software-hardware-bg1 {
    width: 490px;
    height: 490px;
    border-radius: 50%;
    background: linear-gradient(to right, #D7E5FA, #F4F0FB);
    position: absolute;
    top: 35px;
    right: -20px;
}

.software-hardware-bg2 {
    width: 490px;
    height: 490px;
    border-radius: 50%;
    background: linear-gradient(315deg, #D7E5FA, #F4F0FB);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
}

@media screen and (max-width: 768px) {
    .software-hardware-content-item-footer {
        flex-wrap: wrap;
    }

    .software-hardware-content-item-footer>div {
        padding-top: 10px;
    }

    .software-hardware-content-top,
    .software-hardware-content-bottom {
        flex-direction: column;
    }

    .software-hardware-bg1 {
        transform: translateX(30%);
    }
}