/* 主体 */
* {
    margin: 0;
    padding: 0;
}

.main {
    width: 1000px;
    margin: 0 auto;
    color: #080808;
    font-size: 18px;
    line-height: 1;
}

/* 头部 */
.head {
    height: 348px;
    color: #ffffff;
    text-align: center;
    background: url('../images/img_1.png');
    background-size: 100% 100%;
}

.head img {
    margin-top: 36px;
}

.head div {
    font-size: 32px;
    font-weight: bold;
    margin-top: 36px;
}

.head p {
    width: 864px;
    font-size: 30px;
    text-align: center;
    margin: 13px auto 0;
}

/* 导航 */
.nav-box {
    display: flex;
    justify-content: space-between;
    margin: 27px 25px 43px;
}

.nav-box div {
    position: relative;
    width: 200px;
    height: 200px;
    text-align: center;
}

.nav-box img {
    width: 200px;
    height: 200px;
}

.nav-box span {
    position: absolute;
    left: 0;
    bottom: 20px;
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 19px;
}

/* 问题页 */
.problem {
    background-color: #f8f8f8;
}

.problem-item {
    padding: 36px 0 36px 99px;
    margin: 32px 0;
    background-color: #ffffff;
    box-shadow: 0 -5px 5px -5px rgba(38, 3, 4, 0.34) inset,
        0 5px 5px -5px rgba(38, 3, 4, 0.34) inset;
}

.problem-item:nth-last-child(1) {
    box-shadow: 0 5px 5px -5px rgba(38, 3, 4, 0.34) inset;
}

.problem-title {
    font-weight: bold;
}

.problem-title span {
    color: #FF0000;
}

.problem-item .radio {
    display: flex;
    align-items: center;
    color: #0F0F0F;
    margin: 22px 0 22px 0;
    cursor: pointer;
}

.problem-item .radio input {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
}

.problem-button {
    text-align: center;
    margin: 100px 0 200px;
}

.problem-button button {
    width: 400px;
    height: 60px;
    color: #ffffff;
    font-size: 25px;
    background: #0094bb;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 4px 0px rgba(153, 153, 153, 0.27) inset;
    outline: none;
}

/* 填写个人信息 */
.user-info {
    margin: 58px 74px;
}

.user-info-item .input input {
    width: 600px;
    height: 60px;
    padding: 0 27px;
    font-size: inherit;
    box-sizing: border-box;
    border: 2px solid #e0e0e0;
    margin-top: 30px;
}

.user-info-item .residence input {
    width: 852px;
    height: 80px;
    padding: 0 27px;
    font-size: inherit;
    box-sizing: border-box;
    border: 2px solid #e0e0e0;
    border-radius: 13px;
    margin-top: 30px;
}

.user-info-item .user-info-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
    height: 60px;
    border: 2px solid #e0e0e0;
    margin-top: 30px;
}

.user-info-item .radio {
    display: flex;
    align-items: center;
    margin: 0 80px;
    cursor: pointer;
}

.user-info-item .radio input {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
}

.user-info-item {
    margin-top: 47px;
}

.red-label {
    color: #FF0000;
    line-height: 0;
}

.user-info-title {
    font-size: 18px;
}

.user-info-button {
    display: flex;
    justify-content: space-between;
    margin: 100px 74px 200px;
}

.user-info-button a,
.user-info-button button {
    display: block;
    width: 365px;
    height: 60px;
    line-height: 65px;
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: #0094bb;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 4px 0px rgba(153, 153, 153, 0.27) inset;
    outline: none;
}

.user-info-button a {
    background: #d4d4d4;
}

/* 确认页 */
.confirm-title {
    position: relative;
    font-size: 38px;
    font-weight: bold;
    margin: 90px 81px 40px;
    padding: 0 21px;
}

.confirm-title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 36px;
    border-radius: 8px;
    margin-top: -18px;
    background: #EC836A;
}

.confirm-item {
    border-top: 10px solid #F8F8F8;
    padding: 30px 82px 32px;
}

.ask {
    font-weight: bold;
    margin-bottom: 32px;
}

.ask span {
    color: #FF0000;
}

.value {
    font-size: 18px;
    color: #0F0F0F;
    padding: 0 29px 0;
}

.confirm-first {
    display: block;
    width: 400px;
    height: 60px;
    line-height: 63px;
    text-align: center;
    color: #ffffff;
    font-size: 25px;
    text-decoration: none;
    background: #0094bb;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 4px 0px rgba(153, 153, 153, 0.27) inset;
    outline: none;
    margin: 30px auto;
}

.confirm-tips {
    font-size: 25px;
    color: #A50000;
    font-weight: bold;
    text-align: center;
}

.confirm-button {
    display: flex;
    justify-content: space-between;
    margin: 100px 74px 200px;
}

.confirm-button a,
.confirm-button button {
    display: block;
    width: 280px;
    height: 60px;
    line-height: 64px;
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: #0094bb;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 4px 0px rgba(153, 153, 153, 0.27) inset;
    outline: none;
}

.confirm-button a {
    background: #d4d4d4;
}

/* 成功页 */
.success {
    width: 600px;
    margin: 60px auto 20px;
    font-size: 40px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    padding: 100px 0;
    background: url('../images/img_3.png') no-repeat;
    background-size: 100% 100%;
}

.success-tips {
    width: 600px;
    font-size: 25px;
    font-weight: bold;
    color: #D80000;
    margin: 0 auto;
}

.success-a {
    display: block;
    width: 600px;
    height: 60px;
    line-height: 59px;
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
    background: #0094bb;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 4px 0px rgba(153, 153, 153, 0.27) inset;
    outline: none;
    margin: 90px auto;
}