
.topHead{
    background: #ececec;
    padding: 35px;
    border-radius: 20px;
    margin-top:30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topHead .left{
    flex-shrink: 0;
    margin-right: 15px;
}
.topHead .left h2{
    font-size:36px;
    color:#333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.topHead .left .map{
    display: flex;
    align-items: center;
}
.topHead .left .map li:first-child a{
    color:var(--theme);
}
.topHead .left .map li a{
    color:#666;
}
.topHead .left .map li a span{
    font-weight: 700;
    font-family: sans-serif;
}
.topHead .left .map .arrow{
    margin:0 10px;
    color:#666;
}
.topHead .left .map .arrow .iconfont{
    font-size:11px;
}

.topHead .nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.topHead .nav li{
    margin:5px 8px;
}
.topHead .nav li a{
    display: block;
    height: 42px;
    line-height: 40px;
    padding:0 18px;
    background-color: #fff;
    border-radius: 20px;
    font-size:16px;
    font-weight: 700;
    color:var(--theme);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    position: relative;
    top:0;
    font-family: sans-serif;
}
.topHead .nav li a.on{
    background-color: #fff;
    color:#253D4E;
}
.topHead .nav li a:hover{
    top:-5px;
}


.flex{
    display: flex;

    margin:30px 0;
}
.flex-left{
    width: 100%;
}
.flex-right{
    width:320px;
    flex-shrink: 0;
    top:90px;
    margin-left:20px;
}

.newsSearch{
    background-color: #F2F3F4;
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    margin-bottom: 15px;
}
.newsSearch.on{
    box-shadow: 0px 0px 0px 3px rgba(123, 48, 71, 0.3);
}
.newsSearch input{
    border:none;
    height: 42px;
    background-color: #F2F3F4;
    padding:0 10px;
    width:100%;
    font-size:15px;
    outline: none;
}
.newsSearch .icon{
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    cursor: pointer;
    border:none;
    outline: none;
}
.newsSearch .icon:hover{
    background-color: var(--theme);
    color:#fff;
}
.newsSearch .icon .iconfont{
    font-size:22px;
}


.block{
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    padding: 10px 15px 10px 15px;
    border: 1px solid #ececec;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}
.block .title{
    font-size:22px;
    font-weight: 700;
    border-bottom: 1px solid #ececec;
    height: 45px;
    line-height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.block .title::after{
    content: '';
    height: 2px;
    width:30%;
    display: block;
    background-color: var(--theme2);
    position: absolute;
    bottom:0;
    left:0;
}
.block ul li{
    margin:10px 0;
}
.block ul li a{
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    padding: 6px 0;
    justify-content: space-between;
    transition: .3s ease-in-out; -webkit-transition: .3s ease-in-out; -moz-transition: .3s ease-in-out; -o-transition: .3s ease-in-out;
}
.block ul li a .imgbox {
    flex-shrink: 0;
    width:80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.block ul li a .imgbox img{
    display: block;
    width:100%;
    max-height: 60px;
}
.block ul li a .des{
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    font-size:12px;
    opacity: 0.7;
}
.block ul li a .name{
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    font-size:15px;
    margin-bottom: 5px;
    font-weight: 500;
}
.block ul li a:hover .name{
    color:var(--theme);
}

.list .item{
    display: flex;
    margin-bottom: 10px;
}
.list .item .imgbox a{
    width:170px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.list .item .imgbox img{
    display: block;
    width: 100%;
    max-height: 120px;
    border-radius: 5px;
    transition: .3s ease-in-out; -webkit-transition: .3s ease-in-out; -moz-transition: .3s ease-in-out; -o-transition: .3s ease-in-out;
}
.list .item .text{
    margin:10px 15px;
    position: relative;
}
.list .item h3{
    font-size:17px;
    margin-bottom: 8px;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.list .item .des{
    color:#696969;
    line-height: 24px;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.list .item .time{
    color:#999;
    position: absolute;
    left:0px;
    bottom:0px;
}
.list .item:hover h3{
    color:var(--theme);
}
.list .item:hover img{
    transform: scale(1.1);
}
.list .item h3 b{
    color:red;
}
.list .item .des b{
    color:red;
    font-weight: normal;
}
.common_page{
    margin:30px -5px;
}