.header .onebar .funlink .grids {
    width: 36px;
    margin-left: 20px;
    background-position: center;
}

.header .onebar .gbox .keyword .words {
	font-size: 1rem;
	text-decoration: underline;
}

.header .onebar .gbox .searchbox {
	width: auto;
}

.header .onebar .gbox .searchbox .redinput {
	border: 0;
    margin-right: 0;
}

.header .onebar .gbox .searchbox .redinput .inputs {
    border: 1px solid #003A40;
    border-radius: 25px;
    height: 54px;
    line-height: 54px;
    background-color: #FFF;
}

.header .onebar .gbox .searchbox .redinput .btns {
	top: 1px;
    right: -1px;
    background-image: url(../img/layout/__hader_icon_seach.svg);
    background-color: #003A40;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
}

@media screen and (max-width: 768px) {
    .header .onebar .gbox .searchbox .redinput .inputs {
	    height: 36px;
    	line-height: 36px;
    }

    .header .onebar .gbox .searchbox .redinput .btns {
	    background-size: 18px;
        width: 34px;
        height: 34px;
    }
}


.header .twobar {
	background-color: #003A40;
}

.header .twobar .mar .grids .alink {
	font-size: 1.125rem;
	color: #FFF;
}

.header .twobar .mar .grids .alink.active {
	background: linear-gradient(
		to bottom,
		transparent calc(100% - 8px),
		#00D382 8px
	);
}

@media screen and (min-width: 1391px) {
    .header .twobar .mar .grids .alink:hover {
		background: linear-gradient(
			to bottom,
			transparent calc(100% - 8px),
			#00D382 8px
		);
		color: #FFF;
        text-decoration: none;
    }
}


.header .twobar .mar .grids .sub-menu {
	background-color: #FFF;
	width: 100%;
	position: absolute;
	left: 0;

	display: none;

}



.header .twobar .mar .grids:hover .sub-menu, .header .twobar .mar .grids.active .sub-menu {
	display: block;
}

.header .twobar .mar .grids .sub-menu ul {
	display: flex;
	align-items: center;
}

.header .twobar .mar .grids .sub-menu ul li {
	display: block;
	padding: 15px 25px;
	position: relative;
}

.header .twobar .mar .grids .sub-menu ul li:after {
	content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #4D4D4D;
    position: absolute;
    right: 0;
    top: 25px;
}

.header .twobar .mar .grids .sub-menu ul li:last-child:after {
	display: none;
}

.header .twobar .mar .grids .sub-menu ul li a {
	text-decoration: none;
	font-size: 1rem;
	color: #4D4D4D;
}

@media screen and (max-width: 1390px) {
    .header .twobar .mar .grids .sub-menu {
    	display: none !important;
    }
}

.marquee-block {
	display: flex;
	align-items: center;

	margin-bottom: 25px;
}

.marquee-block .news_Marquee {
	width: calc( 100% - 125px );
	margin-bottom: 0px;
}

.marquee-block .news-tabs-block {
	width: 125px;
}


@media screen and (max-width: 768px) {
    .marquee-block {
		margin-top: 30px;

	}

	.marquee-block .news_Marquee {
		width: 100%;
	}
}


.news-tabs-block {
	display: flex;
	align-items: center;
	justify-content: end;
}
.news-tabs-block a.tabs-item {
	margin-left: 5px;
}
.news-tabs-block a.tabs-item > img {
	width: 32px;
}
.news-tabs-block a.tabs-item > img:first-child {
	display: inline-block;
}
.news-tabs-block a.tabs-item > img:last-child {
	display: none;
}

.news-tabs-block a.tabs-item.active > img:first-child, .news-tabs-block a.tabs-item:hover > img:first-child {
	display: none;
}
.news-tabs-block a.tabs-item.active > img:last-child, .news-tabs-block a.tabs-item:hover > img:last-child {
	display: inline-block;
}


.news-tabs-content-block .news-tabs-content {
	display: none;
}

.news-tabs-content-block .news-tabs-content.active {
	display: block;
}

.index-news-grid-block {
	position: relative;
}

.index-news-grid-item {
	display: block;
	text-decoration: none !important;
}

.index-news-grid-item .img-b.cover-img {
	width: 100%;
/*	height: 700px;*/
	padding-top: 55%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.index-news-grid-item .img-b.cover-img.pb-persent {
	padding-bottom: 75%;
	height: auto;
}

.index-news-grid-item .img-b img {
	width: 100%;
}

.index-news-grid-item .title-b {
	width: 100%;
	background-color: #333333;
	padding: 20px 25px;
	color: #fff;
	display: flex;
	align-items: flex-start;
}

.index-news-grid-item .title-b .tag {
	color: #fff;
	padding-right: 12px;
	margin-right: 12px;
	line-height: 46px;
	font-size: 0.9375rem;
	position: relative;
/*	width: 95px;*/
/*	width: 170px;*/
}

.index-news-grid-item .title-b .tag:after {
	content: "";
	display: block;
	width: 1px;
	height: 20px;
	background-color: #fff;
	position: absolute;
	right: 0px;
	top: 13px;
}

.index-news-grid-item .title-b .title {
	color: #fff;
	font-weight: bold;
	font-size: 1.375rem;
	line-height: 46px;
/*	width: calc( 100% - 107px ); */
	width: calc( 100% - 182px ); 

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.index-news-list-block {
	position: relative;
}

.index-news-list-item {
	display: flex;
	text-decoration: none !important;
	align-items: center;
	margin-bottom: 15px;
}

.index-news-list-item .img-b {
	width: 250px;
	
}

.index-news-list-item .img-b.cover-img {
	height: 135px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.index-news-list-item .img-b.cover-img.pb-persent {
	padding-bottom: 75%;
	height: auto;
}

.index-news-list-item .img-b img {
	width: 100%;
}

.index-news-list-item .title-b {
	width: calc( 100% - 250px);
	padding: 5px 25px;
	display: block;
}

.index-news-list-item .title-b .title {
	width: 100%;
	color: #000;
	font-weight: bold;
	font-size: 1.125rem;
	line-height: 36px;
	margin-bottom: 10px;
}

.index-news-list-item .title-b .tag {
	width: 100%;
	color: #4d4d4d;
	line-height: 32px;
	font-size: 0.875rem;
	position: relative;
}

.index-news-list-item .title-b .tag .split-line {
    background-color: #4d4d4d;
    width: 1px;
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 12px;
    margin-left: 12px;

}



.index-news-list-word-block {
	position: relative;
	margin-bottom: 25px;
}

.index-news-list-word-item {
    display: block;
    text-decoration: none !important;
    border-left: 8px solid #003A40;
    margin-bottom: 25px;
    padding-left: 12px;
}

.index-news-list-word-item .img-b img {
	width: 100%;
}

.index-news-list-word-item .title-b {
	width: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	min-height: 100px;
	align-content: space-between;
}

.index-news-list-word-item .title-b .title {
	color: #000;
	font-weight: bold;
	font-size: 1.125rem;
	line-height: 32px;
	width: 100%;
	margin-bottom: 8px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.index-news-list-word-item .title-b .tag {
	color: #4D4D4D;
	width: 100%;
	padding-right: 12px;
	margin-right: 12px;
	line-height: 26px;
	font-size: 0.875rem;
	position: relative;
}

.index-news-list-word-item .title-b .tag .split-line {
    background-color: #4d4d4d;
    width: 1px;
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 12px;
    margin-left: 12px;

}

@media screen and (max-width: 991px) {
	.index-news-grid-item .title-b {
		flex-wrap: wrap;
	}
	.index-news-grid-item .title-b .tag {
		width: 100%;
	}
	.index-news-grid-item .title-b .tag:after {
		display: none;
	}

	.index-news-grid-item .title-b .title {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {

	.index-news-grid-item .title-b .title {
		font-size: 1.125rem;
		min-height: 92px;
	}

	.index-news-list-item {
		flex-wrap: wrap;
	}
	.index-news-list-item .img-b {
		width: 100%;
	}
	.index-news-list-item .title-b {
		width: 100%;
		padding: 15px 15px;
	}

	.index-news-list-word-item .title-b {
	}

	.index-news-list-word-item .title-b .title-b {
		width: 100%;
	}

	.index-news-list-word-item .title-b .tag {
		width: 100%;
	}

	.index-news-list-item .img-b.cover-img {
		height: auto;
		padding-top: 55%;
	}

}


.quick-link-fixed-block {
	position: fixed;
	bottom: 30px;
	right: 30px;
    z-index: 11;
}

.quick-link-fixed-block .link-item {
	display: block;
	width:65px;
	margin-top: 15px;
}

.quick-link-fixed-block .link-item img:last-child {
	display: none;
}

.quick-link-fixed-block .link-item:hover img:first-child, .quick-link-fixed-block .link-item.active img:first-child {
	display: none;
}

.quick-link-fixed-block .link-item:hover img:last-child, .quick-link-fixed-block .link-item.active img:last-child {
	display: inline-block;
}




footer {
	padding: 50px 0 20px;
	background-color: #003A40;
}

.footer-block {
	display: flex;
	flex-wrap: wrap;

	max-width: 1390px;
    margin: auto;
    padding: 0 15px;
}

.footer-block .info-block {
	width: calc( 100% - 300px );
	position: relative;
	padding-bottom: 45px;
	margin-bottom: 30px;
}

.footer-block .info-block .footer-logo {
	padding-right: 30px;
	margin-bottom: 40px;
}

.footer-block .info-block .footer-logo img {
	width: 650px;
	max-width: 100%;
}

.footer-block .info-block .list-info {

}

.footer-block .info-block .list-info .list-item {
	font-size: 0.875rem;
	color: #fff;
	font-weight: 100;
	margin-bottom: 8px;
}

.footer-block .info-block .list-info .list-item a {
	font-size: 0.875rem;
	color: #fff;
	font-weight: 100;
	text-decoration: none;
}

.footer-block .info-block .accessibility-icon {
	position: absolute;
	bottom: 0;
	left: 0;
}

.footer-block .info-block .list-info .list-item.large-word {
	font-size:1rem;
}

.footer-block .info-block .list-info .list-item.large-word a {
	font-size:1rem;
}

.footer-block .fb-block {
	width: 300px;
	margin-bottom: 30px;
}

.footer-block .copyright-block {
	width: 100%;
	color: #fff;
	display: flex;
	border-top: 1px solid #fff;
	padding-top: 30px;
}


.footer-block .copyright-block a {
	color: #fff;
	text-decoration: none;
}

.footer-block .copyright-block .word-l {
	font-size: 0.625rem;
	width: 200px;
}

.footer-block .copyright-block .word-r {
	font-size: 0.625rem;
	width: calc( 100% - 200px );
	text-align: right;
}

@media screen and (max-width: 1390px) {
    .footer-block .copyright-block {
    	flex-wrap: wrap;
    }
    .footer-block .copyright-block .word-l {
    	width: 100%;
    	text-align: center;
    }
    .footer-block .copyright-block .word-r {
    	width: 100%;
    	text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .footer-block .info-block {
    	width: 100%;
    }

    .footer-block .fb-block {
    	width: 100%;
    }
}

.news_Marquee .lists span.time {
	color: #003A40;
}

@media screen and (max-width: 767px) {
	.news_Marquee .lists span.time {
		color: #FFF;
	}
}

.newslistbox .newslist:before {
	background-color: #003A40;
}

.newslistbox .newslist .span {
	color: #003A40;
}

.newslbox .lgrids .limgs .sort {
	background-color: #003A40;
}

.newslbox .lgrids .ltext .date {
	color: #003A40;
}

.grayblock .graybox .grids .gs .date {
	color: #003A40;
}


@media screen and (min-width: 768px) and (max-width: 1390px) {
    .header .onebar .gbox .searchbox .search_btn {
        display: block;
        width: 52px;
        height: 52px;
        cursor: pointer;
        background-image: url(../img/layout/__hader_icon_seach.svg);
        background-color: #003A40;
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1390px) {
    body.mb_search .header .onebar .gbox .searchbox .search_btn {
        background-size: 105%;
    }
}