.report_popup {
    width: 100%;
    background: #fff;
    padding: 16px;
    box-sizing: border-box;
}
.report_popup .report_slide {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
    padding-bottom: 8px;
}
.report_popup .report_slide:last-child {
    border: none;
}
.report_popup .report_slide .tit {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #262626;
}

.report_popup .report_slide .tit small {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    margin-left: 6px;
}
.report_popup .report_slide .info {
    box-sizing: border-box;
    background: #fff8f3;
    padding: 20px;
    font-size: 12px;
}
.report_popup .report_slide .info .info_left {
    width: 100px;
    height: 100px;
}
.report_popup .report_slide .info .info_detail {
    padding-left: 20px;
    line-height: 22px;
}
.report_popup .report_slide .hint {
    height: 40px;
    background: #fff3f3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 40px;
    padding-left: 16px;
    margin-bottom: 20px;
}
.report_popup .report_slide .hint .iconfont {
    font-size: 17px;
    line-height: 40px;
    margin-right: 6px;
}

.radio {
    margin-right: 8px;
    margin-bottom: 8px;
}
.radio i {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.radio i::before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 2px solid transparent;
    box-sizing: border-box;
}
.radio i img {
    width: 45px;
    height: 45px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.radio input[type="radio"]:checked + i::before {
    border-color: #FF414D;
}
.radio .text {
    padding: 0 17px;
    height: 30px;
    border: 1px solid #D9D9D9;
    line-height: 28px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    display: block;
    font-size: 12px;
    color: #666666;
    box-sizing: border-box;
}
.radio input[type="radio"]:checked + i .text {
    color: #FF414D;
}