.process {
    position: relative;
    top: 76px;
    width: 100%;
    background: url('../img/process.png') no-repeat;
    background-size: 100% 100%;
    min-height: 430px;
}
.process-text {
    position: absolute;
    top: 16%;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transform: translateX(-50%);
}
.process-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    color: #3d3d3d;
    font-size: 20px;
    font-family: 'douyuFont';
    text-align: center;
    margin-bottom: 10px;
}
.process-content {
    position: absolute;
    top: 86%;
    left: 50%;
    width: 52%;
    height: 45%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}
.process-content .next {
    background: url("../img/next.png") no-repeat;
    background-size: 100% 100%;
    width: 6%;
    height: 30%;
}
.process-item {
    position: relative;
    width: 21%;
    height: 100%;
    background-color: #fff;
}
.item-img {
    position: absolute;
    left: 50%;
    top: -14%;
    transform: translateX(-50%);
}
.item-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    color: #f98a13;
    font-family: 'douyuFont';
    font-size: 22px;
}
.item-name {
    position: absolute;
    left: 50%;
    top: 74%;
    transform: translateX(-50%);
    color: #383838;
    font-family: 'douyuFont';
    font-size: 16px;
}
.contactUs {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #0B4A8E;
    margin-top: 76px;
}
.contactUs-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.contactUs-title {
    font-family: 'douyuFont';
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}
.contactUs-leader {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 800px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: translateX(-50%);
}
.leader-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 200px;
    height: 78px;
    color: #B4BFD8;
    font-size: 16px;
    padding: 10px 0 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-image: linear-gradient(135deg, #11559E, #0E4E94);
}
@media screen and (max-width: 768px) {
    .process {
        top: 56px;
        height: 590px;
        background-color: #eff3fa;
        background-image: url('');
    }
    .process-text {
        top: 6%;
        width: 90%;
    }
    .process-title {
        width: 260px;
    }
    .process-content {
        top: 65%;
        width: 270px;
        height: 460px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-item {
        width: 100%;
        height: 80px;
    }
    .process-content .next {
        width: 30px;
        height: 30px;
        transform: rotate(90deg);
    }
    .item-img {
        width: 60px;
        left: 5%;
        top: -26%;
        transform: translateX(0);
    }
    .item-name {
        left: 64%;
        top: 50%;
        transform: translate(0,-50%);
        font-size: 16px;
    }
    .item-number {
        font-size: 20px;
        transform: translate(-66%,-50%);
    }
    .contactUs {
        height: 400px;
        margin-top: 40px;
    }
    .contactUs-text {
        top: 30%;
        width: 90%;
    }
    .contactUs-leader {
        top: 46%;
        width: 90%;
        flex-wrap: wrap;
    }
    .leader-item {
        width: 154px;
        height: 68px;
        padding: 10px;
        margin-bottom: 20px;
        font-size: 14px;
        padding-right: 0;
    }
}