@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: #333333;
	background: #fff;
	font-family: "Microsoft YaHei","Arial";
}

.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;
}

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;
}

.content {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 1450px) {
	.content {
		width: 1430px;
	}
}



.logo-icon {
	display: block;
}

.head {
	position: fixed;
	top: 0;
	z-index: 99;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}



.head .content {
	display: flex;
	align-items: center;
}


.head .navbar {
	padding: 0;
	display: flex;
	align-items: center;
}

.head-right {
	border: 1px solid rgba(0, 0, 0, 1);
	font-size: 20px;
	color: #333333;
	padding: 4px 12px;
	margin-left: 30px;
}


.head-right a:hover {
	color: #C85A00;
}

.head-left {
	padding: 16px 0;
}



.nav-item {
	margin-right: 40px;
	position: relative;
}

.nav-item .nav-link {
	font-size: 20px;
	font-weight: bold;
	min-width: 100px;
	position: relative;
	padding: 5px 0 !important;
	display: block;
	text-align: center;
}


.nav-item.active .nav-link,
.nav-item:hover .nav-link {
	color: #C85A00;
}

.nav-item.active::after,
.nav-item:hover::after {
	position: absolute;
	content: '';
	width: 16px;
	height: 3px;
	border-radius: 3px;
	background-color: #C85A00;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}


.c-switch {
	display: none;
	width: 24px;
	height: 23px;
	cursor: pointer;
	margin-right: 14px;
}

.c-switch i {
	position: relative;
	display: block;
	height: 2px;
	background: #000;
	-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 .navbar-collapse {
	position: fixed;
	right: 0;
	top: 72px;
	bottom: 0;
	background: #fff;
	width: 100%;
	display: block;
	transition: all 0.5s;
	padding-top: 20px;
	z-index: 99;
}




.c-open .nav-item {
	width: 100%;
	margin-bottom: 10px;
}



.navbar-group {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 18px 0 0;
}


.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%);
}


::placeholder {
	color: #999999;
}


.foot {
	background-color: rgba(241, 241, 241, 0.75);
	position: relative;
}

.foot-bottom {
	background: #C85A00;
	padding: 14px 0;
}

.foot-copyright,
.foot-copyright a {
	text-align: center;
	color: #FFFFFF;
}

.foot-copyright a:hover {
	text-decoration: underline;
}

.foot-main {
	display: flex;
	padding: 55px 0;
}


.foot-item {
	margin-right: 80px;
	white-space: nowrap;
}

.foot-item-title a {
	color: #C85A00;
	font-weight: bold;
	font-size: 20px;
}

.foot-item-title {
	margin-bottom: 14px;
}

.foot-item ul li {
	line-height: 2;
}

.foot-item ul li a {
	font-size: 16px;
	color: #666666;
}

.foot-item ul li a:hover {
	color: #C85A00;
	text-decoration: underline;
}

.foot-item-last ul {
	width: 176px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.foot-right {
	flex: 1;
	min-width: 0;
	display: flex;
	justify-content: space-between;
	padding-left: 80px;
	border-left: 1px solid #E5E5E5
}

.foot-info {
	color: #333333;
	font-size: 16px;
	line-height: 2;
	width: 292px;
}

.foot-contact {
	display: flex;
}

.foot-chat {
	width: 148px;
	text-align: center;
}

.foot-chat+.foot-chat {
	margin-left: 20px;
}

.foot-chat p {
	color: #666666;
	font-size: 16px;
	margin: 15px 0 0;
	line-height: 1;
}

.warpper {
	padding-top: 80px;
}


.breadcrumb-box {
	padding: 20px 0;
	border-bottom: 1px solid #E5E5E5
}



.breadcrumb-list {
	font-size: 18px;
	color: #999999;
	display: flex;
	align-items: center;
}

.breadcrumb {
	margin-bottom: 0;
	padding: 0 10px;
	background-color: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: ">";
}

.breadcrumb-list a,
.breadcrumb-list span {
	font-size: 18px;
	color: #999999;
}


.pagination-box{
	display: flex;
	padding: 50px 0;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination-total{
	font-size: 14px;
	line-height: 32px;
	color: #929AA0;
	margin-right: 8px;
}

.pagination-size{
	height: 32px;
	width: 96px;
	border: 1px solid #E5E5E5;
}

.pagination-pager{
	display: flex;
	align-items: center;
	padding: 0 5px;
	margin-bottom: 10px;
}

.page-link:hover,.page-item.active .page-link{
	background: #C85A00;
	border-color: #C85A00;
	color: #fff;;
}

.page-link{
	color: #929AA0;
	font-size: 14px;
	border: 1px solid #E5E5E5;
	padding: 0 6px;
	line-height: 30px;
	min-width: 32px;
	text-align: center;
	border-radius: 0!important;
}

.page-item{
	margin: 0 5px;
}

.page-item .iconfont{
	font-size: 14px;
}

.pagination-jump{
	font-size: 14px;
	line-height: 32px;
	color: #929AA0;
}

.pagination-input{
	width: 48px;
	text-align: center;
	border: 1px solid #E5E5E5;
	height: 32px;
	padding: 0 10px;
	color: #333;
}

.pagination-flex .total {
	padding-right: 15px;
}


.login-dialog{
	width: 465px;
	
}

.login-dialog .modal-content {
	border-radius: 0;
	border: 0;
}

.login-dialog .modal-header {
	background: #C85A00;
	border-radius: 0;
	border: 0;
}

.login-dialog .modal-title {
	color: #FFFFFF;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	width: 100%;
	line-height: 1.2;
}

.login-dialog .modal-header .close {
	font-weight: normal;
	font-size: 2rem;
	color: #FFFFFF;
	opacity: 1;
	text-shadow: unset;
	padding: 14px;
}

.login-dialog .modal-body {
	padding: 30px;
}

.login-tabs .hd {
	margin-bottom: 25px;
}

.login-tabs .hd ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-tabs .hd ul li {
	font-size: 18px;
	margin: 0 25px;
	position: relative;
	line-height: 50px;
	cursor: pointer;
}

.login-tabs .hd ul li.on {
	color: #C85A00;
}

.login-tabs .hd ul li.on::after {
	position: absolute;
	content: '';
	left: 0;
	width: 100%;
	bottom: 0;
	height: 3px;
	background: #C85A00;
}

.login-form .form-tip {
	color: #999999;
	font-size: 16px;
	margin-bottom: 15px;
}


.login-form .form-item {
	position: relative;
	border: 1px solid #E5E5E5;
	display: flex;
	min-width: 0;
	flex: 1;
	align-items: center;

}

.login-form .form-prefix {
	padding: 0 10px;
	width: 44px;
}

.login-form .form-prefix img {
	vertical-align: middle;
}

.login-form .form-label {
	font-size: 16px;
	margin-right: 10px;
}


.login-form .form-control {
	border-radius: 0;
	font-size: 16px;
	height: 48px;
	border: 0;
	padding: 0;
	box-shadow: unset;
	flex: 1;
}

.login-form .form-agree {
	font-size: 16px;
	color: #999999;
	line-height: 1.3;
	margin: 20px 0 30px;
}

.login-form .form-agree a {
	color: #C85A00;
}

.send-btn {
	border: 1px solid #333333;
	font-size: 16px;
	color: #333;
	height: 50px;
	width: 120px;
	margin-left: 10px;
}


.login-form .form-btns .btn {
	display: block;
	width: 100%;
	color: #C85A00;
	height: 50px;
	font-size: 16px;
	border-radius: 0;
	box-shadow: unset!important;
}

.login-form .form-btns .btn-primary {
	background: #C85A00!important;
	border-color: #C85A00!important;
	color: #ffffff;
	margin-bottom: 15px;
}

.login-form .form-btns .btn:hover {
	opacity: 0.9;
}

.login-form .form-btns .btn-primary:hover {
	background: #C85A00!important;
	border-color: #C85A00!important;
}

.login-form .form-between{
	display: flex;
	justify-content: space-between;
}

.login-form .form-between .btn{
	padding: 0;
	width: auto;
}

.form-eye{
	width: 44px;
	height: 48px;
	background-image: url('../images/eye.png');
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
 
 
 .form-eye.off{
	 background-image: url('../images/eye_off.png');
 }

@media (max-width: 1450px) {
	.foot-item {
		margin-right: 60px;
	}

	.foot-right {
		padding-left: 60px;
	}
}


@media (max-width: 1330px) {
	.foot-right {
		flex-direction: column;
	}

	.foot-info {
		width: 100%;
	}

	.foot-contact {
		margin-top: 20px;
	}

	.nav-item {
		margin-right: 20px;
	}
}


@media (max-width: 1200px) {
	.head-logo {
		height: 40px;
	}

	.warpper {
		padding-top: 72px;
	}

	.head-right {
		margin-left: 10px;
	}


	.nav-item .nav-link {
		min-width: 60px;
	}
}




@media (max-width: 992px) {
	.navbar-collapse {
		display: none;
	}


	.c-switch {
		display: block;
	}

	.foot-item ul {
		display: block;
		width: unset;
		white-space: normal;
	}
	
	
	

}

@media (max-width: 768px) {
	.c-open .navbar-collapse {
		top: 52px;
	}

	.warpper {
		padding-top: 52px;
	}


	.head-left {
		padding: 10px 0;
	}


	.head-logo {
		height: 32px;
	}

	.head-right {
		font-size: 16px;
	}

	.foot-main {
		flex-direction: column;
		width: 100%;
	}


	.foot-item ul li {
		display: inline-block;
		margin: 0 10px 10px 0;
	}


	.foot-right {
		padding-left: 0;
		border-left: 0;
	}

	.foot-item {
		margin-right: 0;
	}
	
	.login-dialog{
		width: 355px;
	}
	
	.breadcrumb-list a, .breadcrumb-list span{
		font-size: 16px;
	}
	
	.breadcrumb-list{
		font-size: 16px;
	}
	
	.pagination-size{
		display: none;
	}
}

.etip { position: fixed; left: 50%; top: 50%; width: 200px; margin-left: -110px; box-sizing: border-box; display: none; transform:translate(0,-50%); background: rgba(0,0,0,0.8); color: #fff; padding: 10px; text-align: center; font-size: 16px; line-height: 2; border-radius: 10px; z-index: 9999991; box-sizing: border-box;}

.eimg { cursor: pointer;}

#outerdiv {position:fixed;top:0;left:0;background:rgba(0,0,0,0.7);z-index:2;width:100%;height:100%;display:none; z-index: 9999999;}
#innerdiv {position:absolute;}
#innerdiv img{ border:5px solid #fff; }