
.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:300px;
    flex-shrink: 0;
    top:90px;
}

.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{
    display: block;
    border: 1px solid #F2F3F4;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:8px 10px;
    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:hover{
    border-color:var(--theme2);
    box-shadow:0 0 8px rgba(0,0,0,0.05);
}
.block ul li a .clogo{
    width:32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.block ul li a .name{
    margin-right: auto;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    font-size:15px;
    font-weight: normal;
}



.flex-right{
    width:100%;
    overflow: hidden;
    padding-left: 40px;
}

.flex-right-top{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    overflow: hidden;
    margin-bottom: 30px;
}
.flex-right-top .slider{
   width:62%;
   overflow: hidden;
}
.flex-right-top .list{
    width:38%;
    padding-left:20px;
    box-sizing: border-box;
}
.flex-right-top .list ul li{
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
}
.flex-right-top .list ul li a .cover{
    width:85px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.flex-right-top .list ul li a .cover img{
    display: block;
    max-width:85px;
    max-height: 60px;
}
.flex-right-top .list ul li a{
    display: block;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding:9.5px 0;
    transition: .3s ease-in-out; -webkit-transition: .3s ease-in-out; -moz-transition: .3s ease-in-out; -o-transition: .3s ease-in-out;
}
.flex-right-top .list ul li:first-child a{
    padding-top:0px;
}
.flex-right-top .list ul li a:hover .text .name{
    color:var(--theme);
}
.flex-right-top .list ul li a .text .name{
    margin-right: auto;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    font-weight: 700;
    font-family: sans-serif;
    margin-bottom: 4px;
    line-height: 14px;
}
.flex-right-top .list ul li a .text .addtime{
    font-size:12px;
    color:#696969;
     word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}


/* 横幅 */
.adSlider{
    width: 100%;
	position: relative;
	overflow: hidden;
    background-color: #fafafa;
}
.adSlider a{
    display: block;
}
.adSlider .img{
	display:block;
	margin:0 auto;
    max-width: 100%;
    height: 390px;
}
.adSlider-pagination-center{
	text-align:center;
	position: absolute;
    bottom: 15px;
	width:100%;
	z-index:10;
}
.adSlider-pagination .swiper-pagination-bullet {
    border-radius: 0;
    opacity: 1;
    margin: 0 5px;
	border-radius:0;
	height: 6px;
    width:11px;
	border-radius:3px;
    background-color: #fff;
    opacity: 0.9;
	-webkit-transition: all .3s;-moz-transition: all .3s;-o-transition: all .3s;transition: all .3s;
}
.adSlider-pagination .swiper-pagination-bullet-active{
    opacity:1;
	background:#4eb92d;
    width:25px;
}

.flex-right-main{
    display: flex;
    flex-wrap: wrap;
    margin:-10px;
}
.flex-right-main .item{
    width:50%;
    box-sizing: border-box;
    padding:10px;
}
.block2{
    background-color: #fff;
    position: relative;
    border-radius: 15px;
}
.block2 .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;
}
.block2 .title::after{
    content: '';
    height: 2px;
    width:20%;
    display: block2;
    background-color: var(--theme2);
    position: absolute;
    bottom:0;
    left:0;
}
.block2 ul li{
    margin:10px 0;
}
.block2 ul li a{
    display: block2;
    border: 1px solid #F2F3F4;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding:8px 10px;
    transition: .3s ease-in-out; -webkit-transition: .3s ease-in-out; -moz-transition: .3s ease-in-out; -o-transition: .3s ease-in-out;
}
.block2 ul li a:hover{
    border-color:var(--theme2);
    box-shadow:0 0 8px rgba(0,0,0,0.05);
}
.block2 ul li a .clogo{
    width:32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.block2 ul li a .name{
    margin-right: auto;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    font-size:15px;
    font-weight: normal;
}

.block2 ul li.topOne .imgbox{
    width: 105px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}
.block2 ul li.topOne .imgbox img{
    display: block;
    width:100%;
    max-height: 100%;
}
.block2 ul li.topOne .des{
    color:#666;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.block2 ul li.topOne .name{
    margin-bottom: 5px;
    font-family: sans-serif;
    font-weight: bold;
}