.main-container-top {
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid #000;
    color: #d25e50;
}

.main-container-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 20px;
}

/*进度条部分*/

.step-cont {
    width: 880px;
    height: 72px;
    margin: 70px auto 0 auto;
    position: relative;
}

.line {
    position: absolute;
    top: 17px;
    left: 107px;
    width: 666px;
    height: 2px;
    background-color: #f4f4f4;
    z-index: 1;
}

.line2 {
    height: 2px;
    background-color: #d25e50;
    width: 0;
}

.step {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
}

.step li {
    width: 70px;
    float: left;
    margin: 0 75px;
    text-align: center;
    font-size: 16px;
    line-height: 18px;
}

.step li i {
    display: block;
    text-align: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 18px auto;
    font-size: 18px;
    line-height: 36px;
    border-radius: 50%;
    color: #fff;
    background-color: #e5e5e5;
}

.step li span {
    color: #333;
    font-weight: bold;
}

.step li.done i{
    background-color: #d25e50;
}

/* 表单部分 */
.major {
    width: 340px;
}

.major p {
    margin-bottom: 20px;
    color: #d25e50;
    text-align: center;
}

.p-detail {
    border-radius: 3px;
    border: 1px solid #f2f2f2;
}

.p-detail li {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    height: 50px;
    border-bottom: 1px solid #f2f2f2;
}

.p-detail li.disabled {
    background: #eee;
}

.p-detail li input {
    width: 100%;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #f2f2f2;
}

.major button {
    width: 100%;
    height: 50px;
    margin-top: 30px;
    background: #d25e50;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
}

.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 125px;
}

.success h1 {
    margin-bottom: 20px;
    display: flex;
}

.success h1::before {
    content: "";
    display: block;
    height: 35px;
    width: 35px;
    margin-right: 10px;
    background: url("../../images/icon.png") no-repeat -130px -70px;
}

.success p {
    color: #bfbfbf;
    margin-bottom: 0;
}

.success p span, .success p a {
    color: #d25e50;
}

/*媒体查询相关*/
@media screen and (max-width: 415px) {
    .line {
        width: 80%;
        left: 50%;
        top: 14px;
        transform: translateX(-50%);
    }

    .step-cont {
        width: 100vw;
        margin: 30px auto 0 auto;
    }

    .step {
        width: 100%;
    }

    .step li {
        width: 25%;
        margin: 0;
    }
}
