html, body {
    background: #345aec;
}
.section-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url("../images/bg.jpg") center 0 no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.section-content {
    width: 100%;
}
.net-wrapper {
    width: 60%;
    /*max-width: 670px;*/
    max-width: 520px;
    margin: 28% auto 0;
}
.net-wrapper ul {
    width: 100%;
    gap: .14rem .2rem;
}
.net-wrapper ul li {
    display: flex;
    align-items: center;
    background: #fff;
    height: .5rem;
    text-align: center;
    font-size: .14rem;
    color: #333;
    border-radius: 50px;
}
.net-wrapper ul li p {
    width: 30%;
    height: 100%;
    border-right: 1px solid #eee;
}
.net-wrapper .sign-box {
    width: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #78D345;
}
.net-wrapper .sign {
    display: flex;
    align-items: flex-end;
}
.net-wrapper .sign span {
    background: #78D345;
    border-radius: 30px;
    margin-right: .016rem;
    width: .05rem;
}
.net-wrapper .sign span:nth-child(1) {
    height: .08rem;
}
.net-wrapper .sign span:nth-child(2){
    height: .13rem;
}
.net-wrapper .sign span:nth-child(3) {
    height: .176rem;
}
.net-wrapper .sign span:nth-child(4) {
    height: .224rem;
    margin-right: 0.02rem;
}
.net-wrapper a {
    width: 32%;
    display: block;
    background: linear-gradient(235.04deg, #16CEE6 0%, #0879FA 100%);
    height: .5rem;
    line-height: .5rem;
    text-align: center;
    font-size: .15rem;
    color: #fff;
    border-radius: 0 50px 50px 0;
}

@media (max-width: 1024px){
    .section-wrap {
        display: block;
        background: url("../images/h5-bg.jpg") center 0 no-repeat;
        background-size: 100%;
        height: auto;
    }
    .net-wrapper {
        width: 100%;
        max-width: 92%;
        margin-top: 0;
        padding-top: 62%;
    }
    .net-wrapper ul {
        gap: 0.15rem 0.15rem;
    }
    .net-wrapper ul li p {
        /*font-size: .12rem;*/
    }
}