.webNav{
    width: 100%;
    margin-top: 1rem;
}
.webNav a{
    width: 25%;
    font-size: 0.7rem;
    display: block;
    text-align: center;
    color: #fff;
    background: #007aff;
    float: left;
    padding: 0.4rem 0;
    box-sizing: border-box;
    border-left: 1px solid #fff;

}
.webNav a:nth-child(1){
    border: none;
}
.webNav .active{
    background: coral;
}



.content{
    width: 100%;
    margin-top: 1.5%;
}

.content  .title{
    width: 100%;
}
.content  .title a{
    width: 25%;
    display: block;
    box-sizing: border-box;
    padding: 1% 0;
    text-align: center;
    color: #fff;
    background: #2f8af5;
    float: left;
    font-size: 14px;
    border-left: 1px solid #fff;
    transition: 0.2s;
}
.content  .title a:nth-child(1){
    border-left: 0;
}
.content  .title a:hover{
    background: coral;
}
.content  .title .active{
    background: coral;
}
.content  ul{
    width: 100%;
}
.content  ul li{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 2% 0;
    margin-top: 2%;
    border-top: 2px solid #2f8af5;
}

.content  ul li .info{
    width: 100%;
    box-sizing: border-box;
    padding: 0 3% 5%;
    border-bottom: 1px solid #ccc;
}
.content  ul li .info i{
    width: 20%;
    float: left;
    content: url("../img/problem.png");
    border-radius: 50%;
    border: 1px solid #ccc;
}
.content  ul li .info .min{
    width: 76%;
    float: right;
}
.content  ul li .info .min .name{
    font-size: 0.7rem;
    color: #333333;
    margin-top: 0.6rem;
    display: block;
    transition: 0.2s;
}
.content  ul li .info .min a:hover{
    color: coral;
}
.content  ul li .info .min p{
    width: 100%;
    margin-top: 1.5%;
    font-size: 14px;
    color: #555555;
}
.content  ul li .info .min p span{
    display: inline-block;
    margin-right: 30px;
    font-size: 0.6rem;
    color: #8a8a8a;
}
.content  ul li .division{
    z-index: 1;
    /*position: absolute;*/
    width: 20px;
    height: 20px;
    margin: -16px auto 0 1.7rem;
    background: #fff url(../img/icon_9.png) no-repeat;
    background-size: 20px 20px;
}


.content  ul li .questionsMin{
    width: 100%;
    box-sizing: border-box;
    padding: 0 3% 3%;
}
.content  ul li .questionsMin div{
    width: 100%;
    margin-top: 1%;
}
.content  ul li .questionsMin .item span:nth-child(1){
    display: block;
    width: 22%;
    text-align: right;
    font-size: 0.7rem;
    color: #2f8af5;
    float: left;
}
.content  ul li .questionsMin .item span:nth-child(2){
    display: block;
    width: 75%;
    text-align: left;
    font-size: 0.7rem;
    color: #6b6b6b;
    float: right;
}
.content  ul li .questionsMin .item:nth-child(2) span:nth-child(2){
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.6rem;
    color: #999999;
}