@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100%;
	font-size: 14px;
	line-height: 1.5;
	color: #222;
	background: #F7F9FB;
	font-family: 'Arial';
}

@font-face {
	font-family: 'Amaranth';
	src: url('../fonts/Amaranth-Regular.ttf');
}

.text-primary {
	color: #4A7FF5;
}

img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
}

ul {
	margin: 0;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: none;
	color: #222;
}

input,
button {
	-webkit-appearance: none;
	border-radius: 0;
}

button {
	cursor: pointer;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

textarea {
	resize: none;
	overflow: auto;
}

input,
button,
textarea,
select {
	border: 0;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: transparent;
}

/* select {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
} */

table {
	border-collapse: collapse;
}

.scale {
	display: block;
	overflow: hidden;
}

.scale img {
	transition: 0.6s all;
}

.scale:hover img {
	transform: scale(1.06);
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clear {
	zoom: 1;
}

.clear:after {
	content: '';
	display: block;
	clear: both;
}

.flex-center {
	display: flex;
	align-items: center;
}

.flex {
	display: flex;
}

.flex_bd {
	flex: 1;
	min-width: 0;
}


.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 显示两行文字 */
.line-2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.line-3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}



.logo-icon {
	display: block;
	padding: 12px 0;
	font-size: 0;
}

.logo-icon img {
	height: 84px;
}

.head {
	/* position: fixed;
	top: 0;
	
	left: 0;
	width: 100%; */
	background-image: url('../images/top.jpg');
	background-size: 100% 100%;
	padding: 36px 0;
	position: sticky;
	top: 0;
	z-index: 99;
}


.head.c-style2 {
	background-color: #165CB1;
}


.head .navbar {
	padding: 0;
	display: flex;
	align-items: center;
}

.navbar-nav a {
	color: #fff;
}

.nav-item .nav-link {
	font-size: 16px;
	color: #000000;
	position: relative;
	padding: 18px 22px !important;
}

.nav-item.active .nav-link,
.nav-item:hover .nav-link {
	color: #0f7bba;
	font-weight: bold;
}

.nav-item.active .nav-link::before,
.nav-item:hover .nav-link::before {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 16px;
	height: 5px;
	border-radius: 3px;
	transform: translateX(-50%);
	background-color: #0071ad;
}

.nav-item {
	position: relative;
}

.search-bar {
	position: relative;
	width: 300px;
}

.search-bar .form-control {
	background-color: #f0f0f0;
	border-radius: 3px;
	font-size: 16px;
	border: 0;
	padding: 5px 45px 5px 10px;
	height: 36px;
	box-shadow: unset !important;
}

.icosearch {
	color: #165CB1;
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}

.icosearch .iconfont {
	font-size: 20px;
}

.navbar-toggler {
	padding: 0;
	border: 0;
}

.navbar-toggler-icon {
	background-image: url('../images/menu.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.navbar-toggler {
	margin-left: auto;
	margin-right: 30px;
}




.navbar-right {
	position: relative;
	margin-left: auto;
}

.c-switch {
	display: none;
	width: 24px;
	height: 23px;
	cursor: pointer;
	margin-left: 14px;
}

.c-switch i {
	position: relative;
	display: block;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.c-switch i:nth-child(1) {
	top: 0;
}

.c-switch i:nth-child(3) {
	bottom: 0;
}

.c-switch i:nth-child(2) {
	margin: 6px 0;
}

body.c-open {
	overflow: hidden;
}

body.c-open .c-switch i:nth-child(2) {
	opacity: 0;
}

body.c-open .c-switch i:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

body.c-open .c-switch i:nth-child(3) {
	bottom: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


.c-open .nav {
	position: fixed;
	right: 0;
	top: 120px;
	bottom: 0;
	background: #165CB1;
	width: 100%;
	display: block;
	transition: all 0.5s;
	z-index: 9;
}


.c-open .nav-list li {
	width: 100%;
}

.c-open .nav-list li a {
	color: #fff;
	text-align: center;
	padding: 10px 0;
}

.c-open .nav-list li.active a{
	color: #fff;
} 

.c-open .nav-list li.active a::after{
	background-color: #fff;
}


.navbar-group {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.modal-dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0;
}

.modal.fade .modal-dialog {
	transform: translate(-50%, -200%);
}

.modal.show .modal-dialog {
	transform: translate(-50%, -50%);
}

/* .c-open .navbar-nav {
	overflow-y: auto;
} */


::placeholder {
	color: #C4CCD6;
}


.nav {
	background-color: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
}

.nav-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.nav-list li {
	padding: 0 10px;
}

.nav-list li a {
	color: #444444;
	font-size: 16px;
	position: relative;
	padding: 18px 0;
	display: block;
}

.nav-list li.active a {
	color: #165CB1;
}

.nav-list li.active a::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 50%;
	width: 40px;
	height: 2px;
	background-color: #165CB1;
	margin-left: -20px;
}

.index-navbar {
	background-color: #165CB1;
	position: sticky;
	top: 180px;
	z-index: 89;
}

.index-navbar .nav-list {
	margin: 0;
}

.index-navbar .nav-list li a {
	color: #fff;
	text-align: center;
}

.index-navbar .nav-list li.active a {
	background-color: rgba(11, 55, 116, .3);
}

.index-navbar .nav-list li.active a::after {
	display: none;
}

.index-navbar .nav-list li {
	flex: 1 1 auto;
	padding: 0;
}

.index-navbar .nav-list li:hover a {
	background-color: rgba(11, 55, 116, .3);
}


.foot {
	background-color: #145E9A;
	position: relative;
}

.foot-bottom {
	border-top: 1px solid rgba(8, 51, 102, 0.3);
}

.foot-item {
	margin: 0 5%;
}



.foot-main {
	padding: 20px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}


.foot-item p {
	font-size: 16px;
	color: #fff;
	margin-bottom: 0px;
}

.foot-item p img {
	vertical-align: middle;
	margin-right: 4px;
}

.foot-chat {
	display: inline-block;
	text-align: center;
}

.foot-chat p {
	margin: 8px 0 0;
	font-size: 14px;
	color: #fff;
}

.foot-logo img {
	height: 84px;
}


.foot-item-last {
	text-align: center;
}

.foot-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	padding: 15px 0;
}


.friendship {
	background-color: #145E9A;
	padding: 2px 0;
	border-bottom: 1px solid rgba(8, 51, 102, 0.3);
}



.friendship-cell {
	display: flex;
}

.friendship-cell__hd {
	font-size: 30px;
	color: #FFFFFF;
	font-weight: bold;
	width: 130px;
	line-height: 1.2;
	padding-top: 10px;
}

.friendship-cell__bd {
	display: flex;
	flex-wrap: wrap;
}

.friendship-links {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}


.friendship-links li {
	width: 33.33%;
	padding: 10px 0;
}


.friendship-links li a {
	display: flex;
	align-items: center;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
}

.friendship-links li a span {
	margin-left: 8px;
}



.main {
	min-height: 500px;
	position: relative;
	margin: 30px 0;
}


.aside {
	position: sticky;
	top: 270px;
	left: 0;
	background-color: #fff;
	width: 220px;
	float: left;
}


.aside-head {
	background-color: #165CB1;
	padding: 18px;
}

.aside-title {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.main-body {
	margin-left: 240px;
}

.tree>li {
	border-bottom: 1px solid #F0F0F0;
}

.tree>li:last-child {
	border-bottom: 0;
}

.tree>li>a {
	font-size: 16px;
	color: #222222;
	padding: 12px 15px 12px 25px;
	display: block;
	line-height: 24px;
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.tree>li>a .arrow {
	float: right;
}


.tree>li.active>a,
.tree>li>a:hover,
.tree>li>a.active {
	color: #165CB1;
}

.tree>li.active>a::before,
.tree>li>a.active::before {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	left: 10px;
	top: 50%;
	margin-top: -3px;
	background-color: #1B90D5;
}

.tree-second {
	background-color: #EDF3F9;
	padding-bottom: 10px;
	max-height: 300px;
	overflow-y: auto;
	/* 	display: none; */
}


.tree-second::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}


.tree-second::-webkit-scrollbar-thumb {
	background-color: #C4CCD6;
	border-radius: 6px;
}





.tree-second>li>a {
	font-size: 14px;
	color: #666666;
	padding: 12px 25px 12px 35px;
	display: block;
	line-height: 24px;
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.tree-second>li.active>a {
	color: #165CB1;
}


.breadcrumb {
	border-top: 4px solid #165CB1;
	padding: 18px 20px;
	border-bottom: 1px solid #F0F0F0;
	background-color: #fff;
	border-radius: 0;
	line-height: 1.2;
	margin-bottom: 0;
	flex-wrap: nowrap;
	white-space: nowrap;

}

.breadcrumb li a,
.breadcrumb li {
	color: #444444;
	font-size: 16px;
	position: relative;
}

.breadcrumb li.active {
	color: #165CB1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.breadcrumb-item+.breadcrumb-item::before {
	position: absolute;
	left: 0;
	float: none;
	padding-left: .5rem;
}

.breadcrumb-item+.breadcrumb-item {
	padding-left: 1.1rem;
}




.pagination-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination-box .total-page {
	font-size: 14px;
	color: #848E9C;
}

.pagination-box .jump-page {
	color: #0D0E0E;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.pagination-box .form-control {
	width: 50px;
	text-align: center;
	box-shadow: unset !important;
	height: 32px;
	font-size: 14px;
	padding: 6px;
	margin-left: 8px;
}

.pagination-box nav {
	margin: 0 16px;
}

.pagination .page-item {
	margin: 0 4px;

}

.page-link {
	color: #0D0E0E;
	font-size: 14px;
	padding: 6px;
	min-width: 32px;
	text-align: center;
	border: 1px solid #D9D9D9;
	border-radius: 2px !important;
}


.page-item.active .page-link {
	color: #165CB1;
	border-color: #165CB1;
	background-color: transparent;
}

/* 隐藏输入框上下箭头 */
.pagination-box .form-control::-webkit-inner-spin-button,
.pagination-box .form-control::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* 兼容Firefox */
.pagination-box .form-control[type=number] {
	-moz-appearance: textfield;
}

.pagination-btn {
	padding: 2px;
	line-height: 1;
	margin: 0 2px;
}

.pagination-flex .line {
	width: 1px;
	height: 20px;
	border-right: 1px solid #fff;
	border-left: 1px solid #d5d5d5;
}

.pagination-flex .record {
	margin-left: 25px;
}

.pagination-flex .jump {
	margin-left: 10px;
}

.pagination-flex select {
	border: 1px solid #d5d5d5;
	margin-right: 10px;
	background-color: #ffffff;
}

.pagination-flex .jump input {
	background-color: #fff;
	border: 1px solid #d5d5d5;
	width: 32px;
	line-height: 18px;
	text-align: center;
	margin: 0 5px;
}

.pagination-box {
	padding: 24px;
}

.pagination-flex .total {
	padding-right: 15px;
}

.banner-bg {
	height: 370px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.mobile {
	display: none;
}

.navbar-group .lang {
	border: 1px solid #FFFFFF;
	border-radius: 3px;
	font-size: 16px;
	color: #fff;
	line-height: 34px;
	width: 40px;
	text-align: center;
	margin-left: 10px;
}

.navbar-group .searchIcon {
	border: 1px solid #FFFFFF;
	border-radius: 3px;
	font-size: 16px;
	color: #fff;
	line-height: 34px;
	width: 40px;
	text-align: center;
	margin-left: 10px;
	display: none;
}


.layer {
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out 0s;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.layer.showdiv {
	opacity: 1;
	visibility: visible;
}

.layer .close {
	font-size: 24px;
	font-weight: normal;
	position: absolute;
	right: 10px;
	top: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	color: #ccc;
}

.layer .search_box {
	height: 45px;
	line-height: 45px;
	width: 550px;
	padding: 0 10px;
	display: -ms-flexbox;
	display: flex;
	transform: translateY(-50px);
	opacity: 0;
	margin-top: -100px;
}

.layer.showdiv .search_box {
	transform: none;
	transition: all 0.5s ease-out 0s;
	opacity: 1;
}

.layer .search_box .kw {
	background: #fff;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5) inset;
	-ms-flex: 1;
	flex: 1;
	padding: 0 12px;
	font-size: 16px;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}

.layer .search_box .ok {
	background: #154a9a;
	color: #fff;
	width: 60px;
	text-align: center;
	font-size: 18px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}

.layer .search_box .ok .iconfont {
	font-size: 18px;
}

@media (max-width: 1300px) {
	.nav-list {
		justify-content: flex-start;
	}

	.friendship-links li {
		width: 50%;
	}

	.banner-bg {
		height: 320px;
	}
}


@media (max-width: 992px) {
	.foot-flex {
		flex-direction: column;
	}
	
	
	.friendship-links li {
		width: 100%;
	}

	.foot-logo img {
		height: 64px;
	}
	
	.foot-item p {
		font-size: 14px;
	}
	
	.banner-bg {
		height: 280px;
	}
	
	.aside {
		top: 150px;
	}
	
	
	.logo-icon img {
		height: 64px;
	}
	
	.c-switch {
		display: block;
	}
	
	.nav {
		display: none;
	}
	
	.navbar-group .searchIcon {
		display: block;
	}
	
	.search-bar {
		display: none;
	}
	
	.head {
		padding: 16px 0;
	}
}


@media (max-width: 768px) {
	.aside {
		position: relative;
		width: 100%;
		top: unset;
		float: none;
	}
	
	.main-body {
		margin: 20px 0 0;
	}
	
	.logo-icon {
		padding: 0;
	}
	
	.logo-icon img {
		height: 36px;
	}
	
	
	.head {
		height: 56px;
		background-color: #165CB1;
	}
	
	
	.banner-bg {
		height: 120px;
	}
	
	.aside-head {
		padding: 15px;
	}
	
	.aside-title {
		font-size: 18px;
	}
	
	
	
	.foot-main {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.foot-flex {
		text-align: center;
		font-size: 12px;
	}
	
	.foot-item p {
		font-size: 14px;
	}
	
	.foot-item {
		margin: 10px 0;
	}
	
	.head {
		padding: 10px 0;
	}
	
	
	.c-open .nav {
		top: 56px;
	}
	
	
	.main{
		margin: 20px 0;
	}
}


@media (min-width: 768px) {
	.banner img {
		min-height: 300px;
	}

	.mobile {
		display: block;
	}

}