.provice{
    display: flex;
    align-items: flex-start;
    border: 1px solid #ededed;
    margin: 20px 0;
    padding: 20px 20px 0 20px;
}
.provice .list{
    margin: 0 0 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    flex: 1;
    color: #666666;
}
.provice .list i{
    transition: all 0.3s;
    margin: 0 30px 20px 0;
}
.provice .list i:hover{
    cursor: pointer;
    color: var(--mainColor) !important;
}
/* 荣誉资质 */
.honoraryList{
    display: block;
    margin: 0 0 20px 0;
    border: 1px solid white;
    transition: all 0.3s;
}
.honoraryList.row{
    display: flex;
}
.honoraryList.row img{
    width: 100px;
    height: 100px;
}
.honoraryList:hover{
    border-color: var(--mainColor);
}
.honoraryList img{
    width: 100%;
    display: block;
}
.honoraryList .content{
    padding: 10px;
}
.honoraryList.row .content{
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.honoraryList .content p:nth-child(1){
    color: #383637;
    font-size: 16px;
    margin: 0 0 10px 0;
}
.honoraryList.row .content p:nth-child(1){
    margin: 0;
}
.honoraryList .content p:nth-child(2){
    color: #9a9a9a;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.honoraryList .content  p:nth-child(2) span{
    flex: 1;
}
.honoraryList .content  p:nth-child(2) span:nth-child(2){
    text-align: right;
}
/* 公共标题 */
.title {display:flex;align-items:center;text-transform:uppercase;border-bottom:1px solid var(--mainColor);padding-bottom:10px;margin-bottom: 10px;}
.title p {flex:1;display: flex;align-items: flex-end;}
.title p span {font-weight:bold;color: #383637;}
.title p span:nth-child(1) {font-size: 24px;}
.title p span:nth-child(2) {font-size: 20px;margin: 0 0 0 5px;}
.title a {font-size:14px;color:#606266;}