/*imported styles*/
@import url("pagebar.css");

/* gengral style*/
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
body {
	background: #ffffff none repeat scroll 0 0;
	font-family:Microsoft YaHei;
	font-size: 16px;
}
h1,h2,h3,h4,h5,h6 {
	color: #222222;
	font-family: 'Poppins', sans-serif;
}

a {
	color: #292b2c;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	transition: all .5s ease;
}
a:hover {
	color: #047cc4;
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
}
ul,li,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0;
}
label {
	color: #222222;
	font-weight: 500;
}
input:focus,
textarea:focus,
button:focus{
	outline: none;
	box-shadow: none;
}
iframe {
	border: 0;
	display: block;
}
video {
	width: 100%;
}

.btn-radius {
	border-radius: 40px;
}

.btn-white {
	background-color: #fff;
	color: #047cc4!important;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.btn-white i{
	color:#047cc4;
}
.btn-white::before {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	top: 0;
	bottom: 0;
	opacity: 0;
	color: #047cc4 !important;
	background-color: rgba(255,255,255,1);
	z-index: -1;
	transition: all 0.5s ease-in-out;
}
.btn-white:hover::before {
	left: 0;
	opacity: 1;
	right: 0;
}
.btn-white:hover {
	background-color: transparent;
	color: #047cc4 !important;
}

.text-white * {
	color: #fff;
}
.text-dark * {
	color: #333;
}
.text-default {
	color: #047cc4 !important;
}

.scrollup {
	background-color: #171717;
	border-radius: 100%;
	bottom: 20px;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 40px;
	z-index: 99;
}
.scrollup:hover {
	background-color: #047cc4;
	color:#fff;
}
.scrollup:focus {
	color:#fff;
}

.scrollup.scrollup_style1:hover {
	background-color: #333;
}
.background-bg {
	background-position: center center;
	background-size: cover;
}

.bg-size-auto {
	background-size: auto !important;
}
.bg-size-contain {
	background-size: contain !important;
}
.bg-norepeat {
	background-repeat: no-repeat !important;
}
.position-top-center {
	background-position: top center !important;
}
.position-center-bottom {
	background-position: center bottom !important;
}
.position-right-center {
	background-position: right center !important;
}
.position-right-bottom {
	background-position: right bottom !important;
}
.fixed-bg {
	background-attachment: fixed !important;
}

.box_shadow{
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/*设置box宽高为指定比例*/
.aspect-box {
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.aspect-box > * /* This targets .aspect-box__content */ {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
}
.aspect-box:before /* This pseudo element uses the padding trick to set the height. */ {
	position: relative;
	display: block;
	content: "";

	box-sizing: border-box;
}
.square {
	aspect-ratio: '1:1';
}
.square:before {
	aspect-ratio: '1:1';
	padding-top: 100%;
}
.rectangle16-9{
	aspect-ratio: '16:9';
}
.rectangle16-9:before {
	padding-top: 56.25%;
}
.rectangle16-10{
	aspect-ratio: '16:10';
}
.rectangle16-10:before {
	padding-top: 62.5%;
}
.rectangle3-4{
	aspect-ratio: '3:4';
}
.rectangle3-4:before {
	padding-top: 120%;
}
/*ellipsis*/
.ellipsis-1row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.ellipsis-2row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.ellipsis-3row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/*header navbar*/
.navbar-brand {
	padding: 13px 0;
	vertical-align: top;
}
.navbar-brand img {

}
.navbar-nav a,
.navbar-toggler {
	color: #333333;
}
.navbar {
	padding: 0;
}
.header_wrap {
	transition: all 0.5s ease 0s;
	box-shadow: 0 0 20px rgba(0,0,0,0.4);
        position: relative;
	padding-right: 0 !important;
}
.navbar .navbar-nav li {
	position: relative;
	list-style: none;
	transition: all 0.3s ease 0s;
}
.navbar-nav .dropdown-menu {
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	min-width: 12rem;
}
.navbar-nav .dropdown-menu {
	background-color: rgba(255,255,255,1);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: rgba(255,255,255,1);
}

.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a{
	padding-left: 25px;
}

.dropdown-toggle::after {
	border: 0 none;
	content: "\e927";
	font-family: "feather";
	height: auto;
	line-height: normal;

	vertical-align: middle;
	width: auto;
	transition: all 0.3s ease-in-out;
	font-weight: 100;
}

.navbar .navbar-nav > li > .nav-link {
	font-weight: 600;
	padding: 15px ;
	font-size: 16px;


}
.navbar .navbar-nav > li > .nav-link.active {
	color:#047cc4;
}
.nav-fixed .navbar .navbar-nav > li > .nav-link {
	padding: 15px;
}
.navbar .navbar-nav > li > a.active,
.navbar .navbar-nav > li:hover > a{
	color:#047cc4;
}

.navbar .navbar-nav .dropdown-item {
	padding: 15px 20px 10px 20px;
	color: #333;
	font-size: 14px;
	text-transform: capitalize;
	border-bottom: 1px solid #d8d8d8;
}
.navbar .navbar-nav li:last-child .dropdown-item {
	border-bottom: 0;
}
.navbar .navbar-nav .dropdown-item.dropdown-toggler {
	padding-right: 30px;
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
	background-color: transparent;
}

.navbar .navbar-nav .dropdown-menu li a.active,
.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a {
	color: #047cc4;
}

.nav-fixed .navbar-nav li > a,
.nav-fixed .navbar-toggler{
	color: #333333;
}
.header_wrap{
	position: relative;
	padding-right: 0 !important;
}
.header_wrap.fixed-top {
	position: relative;
	padding-right: 0 !important;

}
.header_wrap.transparent_header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1030;
}
.header_wrap.nav-fixed {
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 999;
	-webkit-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-o-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-animation-fill-mode: none;
	-moz-animation-fill-mode: none;
	-o-animation-fill-mode: none;
	animation-fill-mode: none;
}

.header_wrap.fixed-top.nav-fixed.no-sticky,
.header_wrap.fixed-top.no-sticky {
	position: absolute;
}

.navbar-toggler {
	float: right;
	margin: 13px 0 0 5px;
	font-size: 28px;
	color: #333333;
	transition: all 0.5s ease 0s;
	border-radius: 0;
	height: 35px;
	width: 35px;
	padding: 0;
	line-height: 36px;
	transition: none;
}
.navbar-toggler[aria-expanded="true"] span::before {
	content: "\e9e6";
	font-size: 20px;
}
.navbar-toggler[aria-expanded="true"] {
	line-height: 32px;
	font-size: 20px;
}

.main_menu_uppercase .navbar-nav > li > .nav-link {
	text-transform: uppercase;
}

/*search*/
.search_wrap{
	position: relative;
	text-align: right;
	float:right;
	margin: 25px;
}
.search_wrap .form-control {
	border-radius: 20px;
	float:right;
}
.search_wrap .form-control:focus {

}
.search_icon {
	border-radius: 22px;
	position: absolute;
	right: 2px;
	top: 3px;
	width:32px;
	height:32px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	color: #666;
}




/*banner, slider style*/
.banner_section {
	position: relative;
        margin-top:10px;
}
.banner_section,
.banner_section .carousel-item,
.banner_section .banner_content_wrap,
.banner_section .banner_content_wrap .carousel-item {
	height: 800px;
}
.carousel-item img {
	width: 100%;
}
.carousel-control-next,
.carousel-control-prev{
	background-color: rgba(0,0,0,0.5);
	font-size: 18px;
	height: 50px;
	opacity: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	transition: all 0.3s ease-in-out;
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	opacity: 0;
}
.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right: 20px;
}
.carousel-control-prev {
	left: 20px;
}
.carousel-control-next:hover, .carousel-control-prev:hover{
	background-color: #047cc4;
	color: #fff;
}

.carousel-indicators li{
	width:20px;

}
.carousel-indicators li.active{
	background-color:#047cc4;
}

.news-slide .carousel-caption{
	bottom:0;
	left:0;
	background-color: rgba(0,0,0,0.5);
	width:100%;
	padding: 5px 20px;
	color:#ffffff;
}
.news-slide .carousel-indicators li{
	background-color:rgba(0,0,0,0.1);
}
.news-slide .carousel-indicators li.active{
	background-color:#047cc4;
}
.news-slide .carousel-indicators{
	bottom:-30px;
}



/*footer*/

.footer_dark {
	background-color: #047cc4;
	position: relative;
	color:#ffffff;
}
.footer_top {
	padding: 20px 0 10px;
}
.footer_logo {

	width:80%;
}
footer p {
	font-size: 14px;
}
footer .widget {
	margin-bottom: 10px;
}
footer .widget_title {
	margin-top: 10px;

	font-size: 20px;
	color:#ffffff;
}
footer .widget li{
	padding:5px 0;
}
.bottom_footer {
	padding: 15px 0;
	position: relative;
	background:#0064a0;
	color:rgba(225,225,225,0.6)
}
.bottom_footer a{
	color:rgba(225,225,225,0.9)
}


/*breadcrumb*/
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
	color:#ebebeb;
}
.breadcrumb li.active{
	color:#999999;
}
.breadcrumb li a{
	color:#333333;
}
.breadcrumb li a:hover{
	color:#047cc4;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	color:#ebebeb;
}
.page-title + .breadcrumb {
	margin-top: 15px;
}
.page-title + span {
	margin-top: 15px;
	display: inline-block;
	width: 100%;
}
.breadcrumb-item a i {
	font-size: 26px;
	line-height: 1;
	vertical-align: middle;
	margin-right: 5px;
	margin-top: -5px;
	display: inline-block;
}


/*bootstrap thumbnail特效1207*/
.thumbnail{
	overflow: hidden;
	padding: 0;
	position: relative;
	cursor: pointer;
}
.thumbnail:hover{
	text-decoration: none;
}
.thumbnail img{
	cursor: pointer;
	transition: all 0.6s;
}
.thumbnail .img-fluid{
	width:100%;
}
.thumbnail:hover img{
	transform: scale(1.05);
}
.thumbnail .badge,
.thumbnail:hover .badge{
	position: absolute;
	top:0;
	right:0;
	z-index: 10;
	font-weight: 100;
	border-radius: 0 0 0 10px;
}

.thumbnail .caption{
	color:#333333;
}
.thumbnail .intro-2{
	color:#666666;
	height:50px;
}

/*
block-title styles
*/

.block-title {
	height:40px;
}


.block-title.border-bottom{
	border-bottom:2px solid #047cc4!important;
margin-bottom:2px;
}
.block-title-title {
	position: relative;
	padding-left:50px;
	color: #222222;
	font-weight:500;
	font-size: 24px;
	line-height: 24px;
	margin: 0;

}

.block-title-title .icon{
	position: absolute;
	top:-8px;
	left:0;
	display: block;
	width:40px;
	height:40px;
	background:#047cc4;
	border-radius: 20px;
	color:#ffffff;
	line-height: 42px;
	text-align: center;
}



.block-title.small{
	height:36px;
}
.block-title.small .block-title-title {
	position: relative;
	padding-left:48px;
	font-size: 18px;
	line-height: 18px;
}
.block-title.small .block-title-title .icon{
	top:-6px;
	width:36px;
	height:36px;
	line-height: 36px;
}
/*
xc styles
	border-bottom:2px solid #047cc4!important;
margin-bottom:2px;
*/

.xc{
	height:40px;
}


.xc.db{

}
.xc-bt {
	position: relative;
	padding-left:50px;
	color: #222222;
	font-weight:500;
	font-size: 20px;
	line-height: 24px;
	margin: 0;

}

.xc-bt .tb{
	position: absolute;
	
	left:0;
	display: block;
	width:350px;
	height:40px;
	background:#047cc4;
        padding-left: 10px;
	color:#ffffff;
	line-height: 42px;
	text-align: left;
}



.xc.small{
	height:36px;
}
.xc.small .xc-title {
	position: relative;
	padding-left:48px;
	font-size: 18px;
	line-height: 18px;
}
.xc.small .xc-title .icon{
	top:-6px;
	width:36px;
	height:36px;
	line-height: 36px;
}



/*list-text*/
.list-text li{
	line-height: 40px;
	padding-left:10px
}
.list-text li:hover{
	background:#f4fbff;
}
.list-text.hover-style2 li:hover{
	background:#ffffff;
}
.list-text li a{

}
.list-text li a:hover{
	color:#047cc4;
}
.list-text li .text{
	float:left;
	height:40px;
	font-size: 16px;
	width:calc( 100% - 100px );
}
.list-text li .time{
	float:right;
	text-align: right;
	font-size: 14px;
	color:#888888;
}
.list-text li .time2{
	display: block;
	font-size: 14px;
	color:#888888;
	margin-top:-10px;
}
.list-text li .num{
	background:#dae6f4;
	border-radius: 3px;
	padding:2px 8px;
	margin-right:10px;
	color:#047cc4;
}

.list-media .img{
	width:145px;
}
.list-media .title{
	font-size: 18px;
	line-height: 24px;
}
.list-media .summary{
	font-size:14px;
	color:#999999;
}
.list-media .time{
	font-size:14px;


}
.list_style1 li::before {
	content: "\f121";
	font-family: ionicons;
	left: 0;
	position: absolute;
	top: 7px;
	color: #FEBC34;
	text-align: center;
	font-size: 16px;
}
.list_style1 li {
	list-style: outside none none;
	padding: 5px 0px 5px 25px;
	position: relative;
}
.list_style2 li::before {
	content: "";
	left: 0;
	position: absolute;
	top: 12px;
	background-color: #707070;
	text-align: center;
	height: 1px;
	width: 12px;
}
.list_style2 li {
	list-style: outside none none;
	padding: 0px 0px 15px 25px;
	position: relative;
}
.list_style3 li::before {
	content: "\f121";
	font-family: ionicons;
	left: 0;
	position: absolute;
	top: 0px;
	color: #FEBC34;
	text-align: center;
	font-size: 14px;
	background-color: #DFFFED;
	height: 28px;
	width: 28px;
	line-height: 28px;
	border-radius: 100%;
}
.list_style3 li {
	list-style: outside none none;
	padding: 0px 0px 15px 37px;
	position: relative;
}
.list_style4 li {
	list-style: outside none none;
	padding: 0px 0px 15px 37px;
	position: relative;
}
.list_style4 li i {
	color: #FEBC34;
	position: absolute;
	left: 0;
	top: 0px;
	font-size: 26px;
}



/*column-title*/
.column-title{
	padding-bottom:10px;
	border-bottom:1px solid #047cc4;
}
.column-title .title{
	color:#047cc4;
	border-bottom:2px solid #047cc4;
	font-size: 24px;
	padding-bottom:10px;
}
.column-title  .title-2{
	color:#047cc4;
	font-size: 20px;
}
/*side-nav*/
.side-nav a{
	display: block;
	width:100%;
}
.side-nav .nav-item{
	width:100%;
	padding: 5px 0;
	margin:5px 0;
	border:1px solid #ebebeb;
}
.side-nav .nav-item.active {
	width:100%;
	background:#047cc4;
	color:#ffffff;
	position: relative;
}
.side-nav .nav-item.active:after,
.side-nav .nav-item:hover::after{
	content: "\e929";
	font-family: 'feather';
	position: absolute;
	right: 5px;
	top:12px;
}
.side-nav .nav-item:hover{
	width:100%;
	position: relative;
}
.side-nav .nav-item.active .nav-link{
	color:#ffffff;
}
/*
.sub-bg{
	background-image:url("../images/bg-sub-main.jpg");
	background-repeat: repeat-x;
	background-position: top;
}
*/
/*timeline*/
.timeline-track {
	margin-left: 18px;
	border-left: 1px solid #e5e5e5;
	padding-top:20px;
}
.timeline-track ul{
	padding:0;
}
.timeline-track ul>li {
	list-style: none;
	margin-left: -6px;
}
.timeline-track .levellist li {
	padding-top:10px;
	padding-bottom:10px;
	line-height: 20px;
	padding-left: 20px;
	background: url(../images/time-line-dot2.png) 0 top no-repeat;
	color: grey;
}
.timeline-track .levellist li div{
	margin-top:-15px;
}
.timeline-track .time{
	display: block;
	width:88px;
	height:26px;
	padding:0 0 0 12px;
	line-height: 26px;
	font-size: 12px;
	color:#047cc4;
	background:url(../images/date-border.png);
}
.timeline-track p{
	color:#333333;
	font-size: 14px;
	line-height: 20px;
}


.image_gallery_item {
	position: relative;
}
.gallary_hover_box {
	background-color: rgba(0,0,0,0.80);
	bottom: 0px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	position: absolute;
	top: 0px;
	opacity: 0;
	visibility: hidden;
	right: 0px;
	left: 0px;
	text-align: center;
	transition: all 0.5s ease-in-out;
}
.gallary_hover_box i {
	color: #fff;
	font-size: 24px;
}
.image_gallery_item:hover .gallary_hover_box {
	opacity: 1;
	visibility: visible;
}
.gallery_img img {
	transition: all 0.5s ease;
}
.gallery_hover_style1 .image_gallery_item,
.gallery_hover_style2 .image_gallery_item {
	overflow: hidden;
}
.gallery_hover_style1 .image_gallery_item:hover .gallery_img img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.gallery_hover_style2 .gallary_hover_box {
	top: 15px;
	left: 15px;
	bottom: 15px;
	right: 15px;
}
.gallery_hover_style2 .image_gallery_item:hover .gallery_img img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-ms-filter: blur(5px);
	-o-filter: blur(5px);
	filter: blur(5px);
}
.gallery_hover_style3 .gallary_hover_box::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0px;
	bottom: 0px;
	border: 2px solid rgba(255,255,255,0.5);
	margin: 10px;
}