/* 中间层 */
.section .main {
    box-sizing: border-box;
    padding: 0 45px 66px 45px;
}

.section .main .title {
    padding: 40px 0 0px 0;
}

.section .main .title p {
    font-size: 24px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 33px;
}

/* 中间层情形选项 */
.section .main .situation_con .item {
    min-height: 60px;
    width: 100%;
}

.section .main .situation_con .item:nth-of-type(odd) {
    background-color: #F2F7FF;
}

.section .main .situation_con .item .left,
.section .main .situation_con .item .right {
    width: 50%;
    float: left;
}

.section .main .situation_con .item .right {
    width: calc(50% - 50px);
    float: left;
}

/* 左部 */
.section .main .situation_con .item .left {
    text-align: right;
    padding-top: 22px;
    padding-bottom: 22px;
}

.section .main .situation_con .item .left span {
    position: relative;
}

.section .main .situation_con .item .left span.tips::after {
    content: "*";
    position: absolute;
    left: -11px;
    top: -2px;
    font-size: 16px;
    color: red;
}

/* 右部 */
.section .main .situation_con .item .right {
    padding: 22px 25px 0 25px;
    display: flex;
    flex-wrap: wrap;
}

.section .main .situation_con .item label {
    cursor: pointer;
    min-width: 102px;
    margin-bottom: 10px;
}

.section .main .situation_con .item label:last-of-type {
    margin-bottom: 20px;
}

.section .main .situation_con .item label input {
    display: none;
}

.section .main .situation_con .item label .result {
    float: left;
}

/* 单选 */
.section .main .situation_con .item label.radio_style .result {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(213, 216, 222, 1);
    border-radius: 50%;
    margin-right: 16px;
    position: relative;
}

.section .main .situation_con .item label.radio_style input:checked+.result::after {
    content: url("../../images/selected.png");
    position: absolute;
    left: 0;
    top: 0;
}

/* 多选 */
.section .main .situation_con .item label.checkbox_style .result {
    width: 13px;
    height: 13px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(213, 216, 222, 1);
    border-radius: 2px;
    margin-right: 16px;
    margin-top: 4px;
    position: relative;
}

.section .main .situation_con .item label.checkbox_style input:checked+.result::after {
    content: url("../../images/chenkbox_1.png");
    position: absolute;
    left: 0;
    top: -2px;
    width: 14px;
    height: 14px;
}

.section .main .situation_con .item .right .warning {
    font-size: 12px;
    font-weight: 400;
    color: #ff3b3b;
    position: relative;
    margin-left: 50px;
}

.section .main .situation_con .item .right .warning::before {
    content: "!";
    display: block;
    width: 14px;
    height: 14px;
    background-color: rgba(255, 59, 59, 1);
    color: #fff;
    position: absolute;
    left: -16px;
    top: 2px;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;
}


/* 底部按钮 */
.footers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 66px 0 0 0;
}

.footers div:nth-of-type(1) {
    margin-right: 76px;
}


/* 遮罩层 */
.dialog_mask .situation_mask {
    width: 685px;
    height: 416px;
}

.dialog_mask .situation_mask .hd {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.dialog_mask .situation_mask .hd img {
    width: 60px;
    height: 60px;
}

.dialog_mask .situation_mask .hd .title {
    font-size: 24px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 33px;
    margin-top: 10px;
}

.dialog_mask .situation_mask .hd .content {
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    line-height: 22px;
    margin-top: 36px;
    box-sizing: border-box;
    padding: 0 20px;
    text-align: center;
}

.dialog_mask .situation_mask .hd .btn {
    margin-top: 87px;
}
/* 同意协议 */
.agree-content .agree-title {
    height: 48px;
    background: rgba(244, 246, 248, 1);
    box-shadow: 0px 1px 0px 0px rgba(235, 238, 245, 1);
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 48px;
}
.agree-content .agree-body p {
    padding: 36px 65px 0 36px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
}

.agree-content .agree-footer {
    margin-top: 22px;
}

.agree-content .agree-footer p:first-of-type {
    margin-right: 20px;
}

.needRead input {
    display: none;
}

.needRead label {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.needRead label img{
    height: 14px;
    width: 14px;
    margin-right: 5px;
}
.needRead .checkBoxhidden{
    display: none;
}
.needRead .on .checkBoxShow{
    display: none;
}
.needRead .on .checkBoxhidden{
    display: block;
}

/* 遮罩 */
.dialog_mask {
    display: none;
}

.mask {
    box-sizing: border-box;
    padding: 45px 50px;
}

.mask .top p {
    font-size: 24px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 33px;
}

.mask .top ul {
    margin-top: 20px;
}

.mask .top ul li {
    display: inline-block;
    margin-right: 32px;
    font-size: 16px;
    color: rgba(23, 112, 227, 1);
    line-height: 22px;
    position: relative;
    cursor: pointer;
}

.mask .top ul li:first-of-type {
    cursor: pointer;
    color: #333;
}

.mask .top ul li:first-of-type:hover {
    text-decoration: none;
}

.mask .top ul li:hover {
    text-decoration: underline;
}

.mask .top ul li::after {
    content: url('../../images/down_style_3.png');
    width: 14px;
    height: 14px;
    position: absolute;
    right: -20px;
    top: 5px;
    transform: rotate(270deg);
}


.mask .top ul li:last-of-type::after {
    display: none;
}

.mask .center {
    margin-top: 20px;
    /* min-height: 200px; */
}

.mask .center ul li {
    width: 120px;
    height: 40px;
    background: rgba(241, 242, 243, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    font-size: 16px;
    color: #1B172E;
    line-height: 22px;
    cursor: pointer;
    margin: 0 20px 20px 0;
    transition: all .3s;
    font-weight: 500;
    color: #333333;
    text-align: center;
    box-sizing: border-box;
    padding: 5px;
}

.mask .center ul li:nth-of-type(6n) {
    margin-right: 0;
}

.mask .center ul li:hover {
    background: rgba(23, 112, 227, 1);
    color: #fff;
}

.mask .footers {
    margin-top: 80px;
}

.mask .footers .first,
.mask .footers .second {
    text-align: center;
}

.mask .footers .cancel,
.mask .footers .prev {
    font-size: 16px;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);
    line-height: 22px;
    cursor: pointer;
    display: inline-block;
}

.mask .footers .second {
    display: none;
}

.mask .footers .next,
.mask .footers .submit {
    font-size: 16px;
    font-weight: 500;
    color: rgba(23, 112, 227, 1);
    line-height: 22px;
    margin-left: 45px;
    cursor: pointer;
    display: inline-block;
}



/* 同意协议 */
.agree-content .agree-title {
    height: 48px;
    background: rgba(244, 246, 248, 1);
    box-shadow: 0px 1px 0px 0px rgba(235, 238, 245, 1);
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 48px;
}

.agree-content .agree-body p {
    padding: 36px 65px 0 36px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
}

.agree-content .agree-footer {
    margin-top: 22px;
}

.agree-content .agree-footer p:first-of-type {
    margin-right: 20px;
}
