.content {
    width: 80%;
    padding: 0 10% 5%;
    background-color: #f5f5f5;
    position: relative;
    min-height: 600px;
}
.content .title {
    width: 80%;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: -72px;
}
.content .title h3 {
    width: 50%;
    float: left;
    background-color: #30DEEA;
    color: #fff;
    padding: 20px 0;
}
.content .title h3.selected {
    background-color: #fff;
    color: #676767;
}
.content .content-box {
    width: 80%;
    min-height: 500px;
    padding: 3% 10%;
    color: #676767;
    background-color: #fff;
}
.content .information li {
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #DADADA;
    padding-top: 15px;
}
.content .information li:hover {
    background-color: #f5f5f5;
}
.content .information li p {
    color: #676767;
}
.content .information li p span:first-child {
    display: inline-block;
    width: 100px;
    line-height: 20px;
    padding: 3px 0;
    border-radius: 15px;
    text-align: center;
    background-color: #30DEEA;
    margin-right: 30px;
    color: #fff;
}
.content .information #pager {
    /* float: right; */
    margin-top: 3%;
}

.content .question-box {
    display: none;
}
.content .question {
    display: flex;
    margin-top: 30px;
}
.content .question .left {
    width: 25%;
    padding-right: 5%;
    border-right: 1px solid #DADADA;
}
.content .question .left .desc {
    border-bottom: 1px solid #DADADA;
    padding-bottom: 20px;
}
.content .question .left .desc h4 {
    line-height: 30px;
}
.content .question .left ul {
    margin-top: 30px;
}
.content .question .left li {
    line-height: 35px;
    margin: 10px 0;
    padding-left: 10px;
}
.content .question .left li.active {
    background-color: #f5f5f5;
}
.content .question .left li .active a::after {
    content: '>';
    float: right;
    width: 20px;
    height: 20px;
}
.content .question .right {
    width: 65%;
    padding-left: 5%;
}
.question .right .detail {
    margin-top: 20px;
    border-bottom: 1px solid #E0E0E0;
}
.question .right .detail > p {
    padding: 10px 0;
}
.question .right .detail > p span:first-child {
    padding-right: 10px;
}
.question .right .detail > p span:last-child {
    float: right;
    font-size: 12px;
}
.question .right .detail-text {
    display: none;
    padding: 10px 40px 20px;
    font-size: 12px;
}
.question .right .detail-text p {
    line-height: 26px;
}


@media (min-width: 1600px){
    .question .right .detail {
        font-size: 16px;
    }
    .question .right .detail-text, .question .right .detail > p span:last-child {
        font-size: 14px;
    }
}