﻿/*Public css style*/

/*banner-css*/
.banner {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #333;
	overflow: hidden;
}

.banner ul.flicks {
	width: 10000%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	list-style: none;
}

.banner ul.flicks>li {
	float: left;
	width: 1%;
	height: 100%;
	background-position: center;
	background-size: cover;
	display: table;
}

.banner ul.flicks>li .flick-inner {
	height: 100%;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
}

.banner ul.flicks>li .flick-inner .flick-content {
	max-width: 1440px;
	width: 690px;
	margin-left: auto;
	margin-right: auto;
}

.banner ul.flicks>li .flick-inner .flick-content h1 {
	color: #fff;
	line-height: 44px;
	font-size: 46px;
	font-weight: bold;
}

.banner ul.flicks>li .flick-inner .flick-content p {
	color: #fff;
	line-height: 30px;
	font-size: 28px;
	text-align: left
}



.banner-page .btn {
	display: inline-block;
	padding: .8em 1.75em .8em 1.75em;
	clear: both;
	color: #fff;
	text-decoration: none;
	background-color: #006dda;
	min-width: 30%;
	text-align: center;
	border-radius: 2px;
	margin-top: 20px;

}

.banner-page .btn:hover {
	background: #0080ff;
	color: #fff;
	transition: background-color .3s;
}

.banner .arrow-navigation {
	position: absolute;
	height: 80%;
	width: 5%;
	top: 10%;
	z-index: 100;
	overflow: hidden;
}

.banner .arrow-navigation .arrow {
	display: block;
	height: 100%;
	width: 90%;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.banner .arrow-navigation:hover,
.banner .arrow-navigation .arrow:hover {
	cursor: pointer;
}

.banner .arrow-navigation.left {
	left: 0%;
}

.banner .arrow-navigation.left .arrow {
	opacity: 0;
	margin: 0px 0px 0px 50%;
	background-image: url("../images/arrow-left-light.png");
	background-repeat: no-repeat;
	background-position: left
}

.banner .arrow-navigation.right {
	right: 0%
}

.banner .arrow-navigation.right .arrow {
	opacity: 0;
	margin: 0px 0px 0px -50%;
	background-image: url("../images/arrow-right-light.png");
	background-repeat: no-repeat;
	background-position: right
}

.banner .arrow-navigation.left.hover .arrow {
	opacity: 1;
	margin: 0px 0px 0px 20%;
}

.banner .arrow-navigation.right.hover .arrow {
	opacity: 1;
	margin: 0px 0px 0px -20%;
}

.banner .dot-navigation {
	position: absolute;
	bottom: 15px;
	width: 100%;
	text-align: center;
	z-index: 100;
}

.banner .dot-navigation ul {
	text-align: center;
	list-style: none;
	padding: 0px 15px;
}

.banner .dot-navigation ul li {
	display: inline-block;
	float: none
}

.banner .dot-navigation .dot {
	width: 14px;
	height: 14px;
	margin: 0px 6px;
	background-color: rgba(75, 75, 75, 0.5);
	border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-webkit-transition: background-color 0.2s ease-out;
	-moz-transition: background-color 0.2s ease-out;
	-o-transition: background-color 0.2s ease-out;
	-ms-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out
}

.banner .dot-navigation .dot:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.9);
	border: #000 4.5px solid;
	width: 16px;
	height: 16px;
}

.banner .dot-navigation .dot.active {
	background-color: rgba(255, 255, 255, 0.9);
	border: #000 4.5px solid;
	width: 16px;
	height: 16px;
}

.banner.animate-transform-slide ul.flicks {
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0%, 0px, 0px);
	-webkit-transform: translate3d(0%, 0px, 0px);
	-webkit-transition: -webkit-transform 0.6s;
	-o-transition: -o-transform 0.6s;
	-moz-transition: -moz-transform 0.6s;
	transition: transform 0.6s
}

.banner.animate-transition-slide ul.flicks {
	position: relative;
	left: 0%;
	-webkit-transition: left 0.4s ease-out;
	-moz-transition: left 0.4s ease-out;
	-o-transition: left 0.4s ease-out;
	-ms-transition: left 0.4s ease-out;
	transition: left 0.4s ease-out
}

/*BeAlert css style*/

.BeAlert_overlay {
	overflow: hidden;
	position: fixed;
	margin: 0;
	padding: 0;
	z-index: 9999;
	background-color: rgba(50, 50, 50, 0.8);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: auto;
	height: auto;
}

.BeAlert_box {
	position: fixed;
	top: 50%;
	left: 50%;
	background-color: #fff;
	border-radius: 2px;
	padding: 20px;
	z-index: 10000;
	font-size: 12px;
	text-align: center;
}

.BeAlert_box .BeAlert_image {
	background: #fff;
	width: 60px;
	height: 60px;
	margin: 10px auto;
}

.BeAlert_box .BeAlert_image.warning {
	background: url("../images/warning.png");
	background-size: 60px;
}

.BeAlert_box .BeAlert_image.error {
	background: url("../images/error.png");
	background-size: 60px;
}

.BeAlert_box .BeAlert_image.info {
	background: url("../images/info.png");
	background-size: 60px;
}

.BeAlert_box .BeAlert_image.question {
	background: url("../images/question.png");
	background-size: 60px;
}

.BeAlert_box .BeAlert_image.success {
	background: url("../images/success.png");
	background-size: 60px;
}

.BeAlert_box .BeAlert_title {
	font-size: 16px;
	margin: 5px auto;
	font-weight: bold;
}

.BeAlert_box .BeAlert_message {
	font-size: 14px;
	margin: 5px auto;

}

.BeAlert_box .BeAlert_button {
	margin-top: 20px;
}

.BeAlert_box .BeAlert_button button {
	display: none;
	background-color: #333;
	color: #fff;
	border: none;
	box-shadow: none;
	font-size: 17px;
	font-weight: 500;
	-webkit-border-radius: 4px;
	border-radius: 2px;
	padding: 10px 30px;
	cursor: pointer;
	margin: 0 10px;
	outline: none;
	width: 90%;
}

.BeAlert_box .BeAlert_button button.BeAlert_cancel {
	background-color: #c1c1c1;
}

.BeAlert_box .BeAlert_button button.BeAlert_cancel:hover {
	background-color: #b9b9b9;
}

.BeAlert_box .BeAlert_button button.BeAlert_confirm:hover {
	background-color: #000;
}

/*Inquiry-css*/
@media (min-width: 768px) {
	.Inquiry_form_roll {
		width: 100%;
		margin: 0 auto;
	}

	.Inquiry_form ul {
		list-style-type: none;
		list-style-position: outside;
		margin: 0px;
		padding: 0px;
	}

	.Inquiry_form li {
		position: relative;
		width: 48%;
		margin-right: 2%;
		float: left;
		display: inline-block;
	}

	.Inquiry_form label {
		width: 100%;
		display: inline-block;
		text-align: left;
		padding: 15px 0;
	}

	.Inquiry_form input {
		height: 38px;
		width: 100%;
		border-radius: 2px;
		border: 1px #c8c8c8 solid;
		background: #ffffff;
		padding-left: 10px;
	}

	.Inquiry_form textarea {
		padding-left: 10px;
		width: 100%;
		border-radius: 2px;
		border: 1px #c8c8c8 solid;
		background: #ffffff;
	}

	.Inquiry_form .submit {
		display: inline-block;
		text-align: center;
		padding: 1em 3em;
		clear: both;
		font-weight: bold;
		color: #fff;
		text-decoration: none;
		background: #006dda;
		border: 0px;
		cursor: pointer;
		border-radius: 2px;
		width: 100%;
	}

	.Inquiry_form .submit:hover {
		background: #0080ff;
		color: #fff;
		transition: background-color .3s;
	}

	.Inquiry_form .Code {
		width: 100%;
	}

	.Inquiry_form textarea {
		padding-top: 10px;
		resize: none
	}

	/*reveal css*/

	.reveal-modal-bg {
		position: fixed;
		height: 100%;
		width: 100%;
		background: #000;
		background: rgba(0, 0, 0, .8);
		z-index: 99998;
		display: none;
		top: 0;
		left: 0;
	}

	.reveal-modal {
		visibility: hidden;
		top: 100px;
		left: 50%;
		margin-left: -350px;
		width: 700px;
		position: absolute;
		z-index: 99999;
		background: #f2f2f2;
		padding: 30px;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
		-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
	}

	.reveal-modal h1 {
		font-size: 18px;
		font-weight: normal;
		text-align: center;
	}

	.reveal-modal .close-reveal-modal {
		font-size: 30px;
		line-height: .5;
		position: absolute;
		top: 15px;
		right: 11px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0, 0, 0, .6);
		cursor: pointer;
	}

}

@media (min-width: 769px) and (max-width: 1279px) {
	.Inquiry_form {
		width: 100%;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {

	.Inquiry_form {
		width: 90%;
		margin: 0 auto;
	}

	.Inquiry_form ul {
		list-style-type: none;
		list-style-position: outside;
		margin: 0px;
		padding: 0px;
	}

	.Inquiry_form li {
		padding: 0 8px 8px 0;
		position: relative;
		width: 100%;
		display: inline-block;
	}

	.Inquiry_form label {
		width: 100%;
		margin: 10px 0;
		display: inline-block;
		text-align: left;
	}

	.Inquiry_form input {
		height: 34px;
		width: 100%;
		padding: 5px 8px;
		border-radius: 2px;
		border: 1px #c8c8c8 solid;
		background: #ffffff;
	}

	.banner ul.flicks>li .flick-inner .flick-content h1 {
		font-size: 30px;
	}

	.Inquiry_form textarea {
		padding: 10px;
		width: 95.8%;
		border-radius: 2px;
		border: 1px #c8c8c8 solid;
		background: #ffffff;
	}

	.Inquiry_form .submit {
		display: inline-block;
		text-align: center;
		padding: 1em 3em;
		clear: both;
		font-weight: bold;
		color: #FFF;
		text-decoration: none;
		background: #006dda;
		border: 0px;
		cursor: pointer;
		border-radius: 2px;
		width: 100%;
	}

	.Inquiry_form .submit:hover {
		background: #0080ff;
		color: #fff;
		transition: background-color .3s;
	}

	.Inquiry_form textarea {
		font-family: 'Arial';
		padding-top: 10px;
	}

	/*reveal css*/

	.reveal-modal-bg {
		position: fixed;
		height: 100%;
		width: 100%;
		background: #000;
		background: rgba(0, 0, 0, .8);
		z-index: 99998;
		display: none;
		top: 0;
		left: 0;
	}

	.reveal-modal {
		visibility: hidden;
		top: 100px;
		left: 50%;
		margin-left: -45%;
		width: 90%;
		position: absolute;
		z-index: 99999;
		background: #f2f2f2;
		padding: 20px 0;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
		-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
	}

	.reveal-modal h1 {
		font-size: 18px;
		font-weight: normal;
		text-align: center;
	}

	.reveal-modal .close-reveal-modal {
		font-size: 30px;
		line-height: .5;
		position: absolute;
		top: 15px;
		right: 11px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0, 0, 0, .6);
		cursor: pointer;
	}
}

.Inquiry_form input,
.Inquiry_form textarea {
	outline-color: #006dda
}

#AspNetPager1 {
	margin-top: 20px;
}

#UpdatePanel1 .TableList {
	text-align: center !important;
	line-height: 28px;
}

#UpdatePanel1 .TableHeader {
	color: #ffffff;
	background-color: #007bff;
	text-align: center;
	height: 30px;
}

#UpdatePanel1 .TableHeader th {
	color: #fff;
	padding: 15px 0;
}

#UpdatePanel1 .TableList td {
	padding: 5px 0
}

.TableHeader span {
	padding: 0;
	margin: 0
}

#UpdatePanel1 {
	margin-top: 20px;
}

#UpdatePanel1 .TableList {
	border: #007bff
}

.orderform td {
	padding: 5px 0
}

.orderFormtit {
	border-top: #eee solid 2px;
	padding-top: 15pxx;
	display: block;
	font-weight: bold
}

.orderTitlink a {
	color: #fff !important;
	background: #f44336;
	color: #fff;
	text-align: center;
	height: 36px;
	line-height: 36px;
	padding: 12px 50px;
	border-radius: 2px;
	cursor: pointer;
}

.xunjia {
	color: #0046ce !important
}

/*banner功能css yqq*/
body {
	background: url(../images/bg.png) no-repeat center fixed;
	background-size: cover;
}

.banner-top {
	position: relative;
	width: 100%;
	height: 700px;
	background: url(../images/bgbanner.png) no-repeat left;
	background-size: auto;
}

.banner-top-flex {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
}

.banner-top-cont {
	width: 800px;
	margin-top: 100px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
}

.banner-top-cont-search {
	background-color: rgba(0, 69, 31, 0.7);
	width: 100%;
	height: 300px;
	/*margin-right: 20px;*/
}

.banner-top-cont-menu {
	background-color: #fff;
	width: 400px;
	height: 300px;
}

.banner-top-cont-search .search-nav {
	background-color: #019141;
	overflow: hidden;
}

.banner-top-cont-search .search-nav span {
	float: left;
	padding: 10px 20px;
	color: #ffffff;
	cursor: default;
}

.banner-top-cont-search .search-nav span.active {
	background: #00b550;
}

.banner-top-cont-search .search-input {
	width: 600px;
	margin: 60px auto 0;
	position: relative;
}

.banner-top-cont-search .search-input li {
	display: none;
	position: relative;
}

.banner-top-cont-search .search-input li.show {
	display: block;
}

.banner-top-cont-search .search-input .search-input-box  {
	display: flex;
	height: 48px;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 3px;
}

.search-box {
	display: flex;
	height: 48px;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 3px;
}
.banner-top-cont-search .search-input .search-input-box dl {
	background-color: #ffffff;
	border-radius: 3px;
}

.banner-top-cont-search .search-input .search-input-box dl dt {
	width: 100px;
	height: 48px;
	line-height: 48px;
	color: #555555;
	font-weight: normal;
	padding-left: 10px;
	border-radius: 3px 0 0 3px;
	background-color: #f5f5f5;
	cursor: default;
	position: relative;
}

.banner-top-cont-search .search-input .search-input-box select {
	width: 100px;
	height: 48px;
	line-height: 48px;
	color: #555555;
	font-weight: normal;
	padding-left: 10px;
	border-radius: 3px 0 0 3px;
	background-color: #f5f5f5;
	cursor: default;
	position: relative;
	background-color: #ffffff;
	border-radius: 3px;
	border-color: #ffffff;
	outline: none;
}

.banner-top-cont-search .search-input .search-input-box select option {
	line-height: 34px;
	padding-left: 10px;
	margin: 0;
	background-color: #ffffff;
	position: relative;
	cursor: default;
	
}
.banner-top-cont-search .search-input .search-input-box dl dt.hidden::after {
	content: '';
	display: block;
	width: 5px;
	border-top: 5px solid #666666;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	position: absolute;
	top: 20px;
	right: 10px;
}

.banner-top-cont-search .search-input .search-input-box dl dt.show::after {
	content: '';
	display: block;
	width: 5px;
	border-bottom: 5px solid #666666;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	position: absolute;
	top: 20px;
	right: 10px;
}

.banner-top-cont-search .search-input .search-input-box dl dd {
	line-height: 34px;
	padding-left: 10px;
	margin: 0;
	background-color: #ffffff;
	position: relative;
	cursor: default;
	display: none;
}

.banner-top-cont-search .search-input .search-input-box dl dd:hover {
	background-color: #eee;
	color: #000000
}

.banner-top-cont-search .search-input .search-input-box dl dd:last-child {
	border-radius: 0 0 3px 3px;
}

.banner-top-cont-search .search-input .search-input-box input {
	height: 48px;
	width: 600px;
	padding-left: 20px;
	border-radius: 3px 0 0 3px;
	border: none;
	flex: auto;
}

.banner-top-cont-search .search-input .search-input-box input {
	outline: none;
}

.banner-top-cont-search .search-input .search-input-box button {
	width: 60px;
	height: 48px;
	background-color: #ffffff;
	border: none;
	color: #019141;
	border-radius: 0 3px 3px 0;
}

.banner-top-cont-search .search-input .search-input-box button {
	outline: none;
}

.banner-top-cont-search .search-input .search-input-box button:hover {
	outline: none;
	background-color: #f5f5f5;
}

.search-input-box button i {
	font-size: 20px;
	color: #019141;
	opacity: 1;
}

.banner-top-cont-search .search-input .search-input-text {
	width: 94%;
	color: #ffffff;
	font-size: 14px;
	margin-top: 10px;
	padding-left: 10px;
}

.banner-top-cont-search .search-input .shujuku {
	position: absolute;
	top: 49px;
	left: 0;
	width: 100%;
	display: none;
	padding: 20px 20px 0 20px;
	background: #ffffff;
	border-radius: 3px;
}

.shujuku .shujuku-item {
	padding-bottom: 20px;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-items: self-start;
	cursor: default;
}

.shujuku-item-tit {
	width: 86px;
	font-size: 14px;
	font-weight: bold;
	color: #888;
	display: inline-table;
}

.shujuku-item-txt {
	font-size: 12px;
	color: #019141;
}

.shujuku-item-txt a {
	font-size: 14px;
	color: #383838 !important;
	cursor: default;
}

.shujuku-item-txt a:hover {
	color: #019141 !important;
}

.banner-top-cont-menu {
	overflow: hidden;
	display: none
}

.banner-top-cont-menu-item {
	float: left;
	width: 33.333333333333%;
	height: 150px;
	padding-top: 15px;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: default;
}

.banner-top-cont-menu-item:nth-child(1) {
	background-color: #c8d7f3;
}

.banner-top-cont-menu-item:nth-child(2) {
	background-color: #faf6e0;
}

.banner-top-cont-menu-item:nth-child(3) {
	background-color: #bef4c9;
}

.banner-top-cont-menu-item:nth-child(4) {
	background-color: #faece0;
}

.banner-top-cont-menu-item:nth-child(5) {
	background-color: #f3c8c8;
}

.banner-top-cont-menu-item:nth-child(6) {
	background-color: #c8f3f2;
	/*height: 200px;*/
}

.banner-top-cont-menu-item:nth-child(7) {
	background-color: #c2f3c5;
	position: relative;
	top: -100px;
}

.banner-top-cont-menu-item:nth-child(8) {
	background-color: #c8caf3;
	position: relative;
	top: -100px;
}

.banner-top-cont-menu-item h6 {
	font-size: 14px;
	padding-top: 15px
}

.banner-top-cont-menu-item:hover {
	background-color: transparent;
}

.contact-div>div:nth-child(1) {
	/*background: url(../images/cont-1.png) no-repeat center;*/
	background: #257ea0 no-repeat center;
	background-size: cover;
}

.contact-div>div:nth-child(2) {
	/*background: url(../images/cont-2.png) no-repeat center;*/
	background: #2e9aa4 no-repeat center;
	background-size: cover;
}

.contact-div>div:nth-child(3) {
	/*background: url(../images/cont-3.png) no-repeat center;*/
	background: #2ea273 no-repeat center;
	background-size: cover;
}

.contact-div {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-flow: wrap;
}

.contact-div::after {
	display: none !important;
}

.f_c_3_0 {
	width: 30% !important;
}

.h_204 {
	height: 204px !important;
	min-width: 340px;
	margin-bottom: 20px;
}

#servers {
	padding: 4em 3em !important
}

.contact-div h4 {
	color: #ffffff;
	font-size: 18px;
	text-align: left;
	padding: 16px 20px 10px 20px;
	margin: 0;
}

#servers .fow .contact-div-icon {
	height: auto;    
	display: flex;
    flex-flow: wrap;
    justify-content: center;
}

#servers .fow .contact-div-icon a {
	width: 30%;
	margin: 3px 0 7px;
}

#servers .fow .contact-div-icon a img {
	margin: 0
}

#servers .fow .contact-div-icon a p {
	font-size: 14px;
	color: #ffffff;
	margin: 0
}

.trends-div {
	margin-top: 0 !important;
	padding: 0 3em !important;
}

.trends-div-box {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.trends-div-box::after {
	display: none !important;
}

.trends-div-box>div>.fH1 {
	margin: 0;
	font-size: 18px;
	color: #000000;
	font-weight: normal;
	padding-left: 10px;
}

.trends-div-box>div:nth-child(1)>.fH1 {
	border-left: 5px solid #019141;
}

.trends-div-box>div:nth-child(2)>.fH1 {
	border-left: 5px solid #225279;
	margin-bottom: 10px;
}

.trends-div-box>div:nth-child(3)>.fH1 {
	border-left: 5px solid #d5a916;
	margin-bottom: 10px;
}

.trends-div-box>div>.fH1>a {
	float: right;
	font-size: 14px;
	color: #555555;
}

.trends-div-box>div>.fH1>a:hover {
	color: #000000;
	text-decoration: underline;
}

.trends-div-box .textcenter {
	padding-right: 5px;
}

.trends-div-box .textcenter>div {
	background-color: #d3d3d3;
	padding: 10px;
}

.trends-div-box .textcenter>div>img {
	display: block;
	width: 100%;
}

.trends-div-box .textcenter>p {
	padding: 10px 0 15px 0;
	text-align: center;
	font-size: 15px;
	color: #000;
	margin: 0;
}

.trends-div-box .cont_div {
	margin-top: 20px;
}

.trends-div-box .p-l-10 {
	padding-left: 5px !important;
	padding-right: 0 !important;
}

.trends-div-box .cont_a {
	display: block;
}

.trends-div-box .cont_a img {
	display: block;
	width: 100%;
}

.trends-div-box .news-box>div {
	position: relative;
	overflow: hidden;
	padding: 10px 0;
	border-bottom: 1px dashed #dddddd;
}

.trends-div-box .news-box .time {
	width: 90px;
	font-size: 14px;
	text-align: center;
	position: absolute;
	color: #ffffff;
	padding: 3px 0 1px 0;
	background: #019141;

}

.trends-div-box .news-box .text {
	float: left;
	padding-left: 110px;
	color: #323232;
	cursor: default;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.trends-div-box .news-box .text:hover {
	color: red
}

.trends-div-box .notice-div>div {
	position: relative;
	padding: 10px 0;
	border-bottom: 1px dashed #dddddd;
	overflow: hidden;
}

.trends-div-box .notice-div .text {
	color: #323232;
	cursor: default;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.trends-div-box .notice-div .text:hover {
	color: red
}

.trends-div-box .notice-div .text span {
	width: 30px;
	height: 14px;
	background: url(../images/cont-icon.png) no-repeat top;
	font-size: 12px;
	text-align: center;
	line-height: 14px;
	font-weight: 600;
	color: #ffffff;
	font-style: oblique;
}

.code-foot {
	overflow: hidden;
}

.code-foot img {
	float: right;
	max-width: 100px !important;
	width: 40% !important;
	margin-left: 30px;
}

.footerservice {
	position: fixed;
	z-index: 9991;
	width: auto;
	bottom: 10px;
	right: 10px;
}

.footerservice a {
	color: #fff;
	position: relative;
	line-height: 26px;
	bottom: 5px;
	background: rgb(3, 84, 190);
	border-radius: 4px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 800;
	padding: 5px 15px;
	cursor: pointer;
	display: block
}

.footerservice a font {
	font-size: 14px;
	color: #fff;
	font-weight: normal
}

.footerservice-box {
	position: absolute;
	bottom: 15px;
	right: 0;
	border-radius: 4px;
	width: 256px;
	height: auto;
	padding: 15px;
	background: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
}

.footerservice-box h3 {
	position: relative;
	margin-bottom: 15px;
}

.footerservice-box i {
	color: rgb(3, 84, 190);
	font-size: 24px;
	padding: 5px;
	top: -5px;
	font-style: normal;
	cursor: pointer;
	position: absolute;
	right: 0
}

.footerservice .Inquiry_form li {
	margin-bottom: 5px;
}

.triangle_border_down {
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	border-style: solid;
	border-color: rgb(3, 84, 190) transparent transparent;
	z-index: 10;
	position: absolute;
	top: 60px;
	right: 10px;
}

.triangle_border_down1 {
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	border-style: solid;
	border-color: #fff transparent transparent;
	z-index: 8;
	position: absolute;
	top: 64px;
	right: 10px;
}

.triangle_border_down0 {
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	border-style: solid;
	border-color: #fff transparent transparent;

	position: absolute;
	bottom: -10px;
	right: 10px;
}

#uptotop span {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg)
}

.jclose {
	position: absolute;
	top: 0;
	right: -138px;
	width: 40px;
	height: 40px;
	display: inline-block;
	z-index: 1;
}

#telbox {
	right: 120px;
	top: 0;
	height: 154px;
	border: 0;
	background: none;
	position: relative;
}

#telbox img {
	position: relative;
	top: -50px;
	z-index: -100;
}

#telbox div {
	width: 180px;
	position: absolute;
	top: 50px;
	color: #ffffff;
	font-weight: bold;
	text-align: left;
	padding: 30px 20px 10px 20px;
	font-size: 18px;
}

#slideBox {
	padding: 0 60px;
	position: relative;
	padding-bottom: 20px;
}

.slide-box {
	/* height: 240px; */
	overflow: hidden;
	margin-bottom: 40px;
}

.slide-box-all {
	position: relative;
	left: 0;
	width: auto;
	overflow: hidden;
	transition: left 1s, right 1s, transform 1s;
	-webkit-transition: left 1s, right 1s, -webkit-transform 1s;
}

.silde-item {
	float: left;
	width: 180px;
	margin-right: 20px;
	background-color: #ffffff;
}

.silde-item:last-child {
	margin-right: 0
}

.silde-item img {
	height: 240px;
	width: 180px;
	float: left;
	object-fit: cover;
}

.silde-item .silde-item-text {
	/* padding-left: 190px; */
	float: left;
	width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.silde-item-text h6 {
	padding: 15px 20px 5px 10px;
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	color: #0067B1;
	/* display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden; */
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#T1 .silde-item-text p {
	display: none;
	width: 100%;
	font-size: 14px;
	color: #666666;
	padding: 3px 20px 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0;
}

.slide-left {    
	position: absolute;
    bottom: 180px;
    left: 15px;
    opacity: 0.6;
    background: rgba(0,0,0,0.3);
    padding: 10px 5px;
    width: 32px;
	border-radius: 20px
}

.slide-left:hover {
	opacity: 1;
}

.slide-left:active {
	opacity: 0.8;
}

.slide-right { 
	position: absolute;
    bottom: 180px;
    right: 15px;
    opacity: 0.6;
    background: rgba(0,0,0,0.3);
    padding: 10px 5px;
	width: 32px;
	border-radius: 20px
}

.slide-right:hover {
	opacity: 1;
}

.slide-right:active {
	opacity: 0.8;
}

.banner-box {
	padding-top: 100px;
}

.banner-box img {
	width: 100%;
	display: block;
}

.no-contont {
	padding: 100px 0;
	text-align: center;
}

.no-contont img {
	width: 300px;
	display: inline-block;
}

.contont-page {
	padding: 50px 20px;
	overflow: hidden;
}

.contont-page-meun {
	float: left;
	width: 38%;
	padding-right: 30px;
}

.contont-page-meun-box {
	float: right;
	padding: 0 20px 50px 10px;
	border-right: solid 1px #dddddd;
}

.contont-page-meun-box a {
	display: block;
	color: #000000;
	font-size: 16px;
	padding: 5px 20px;
	margin-bottom: 10px;
}

.contont-page-meun-box a:hover {
	background: #f5f5f5;
	color: #37474F;
}

.contont-page-meun-box a.active {
	color: #019141
}

.contact-page-cont {
	float: left;
	width: 62%;
}

.contact-page-cont-box {
	width: 60%;
	padding-left: 20px;
}

.cont-box h1 {
	font-size: 30px;
	font-weight: bold;
	color: #444444;
	text-align: center;
	margin-bottom: 20px;
}

.cont-box p {
	font-size: 14px;
	color: #323232;
	text-indent: 2em;
}

#postion-menu-css {
	position: relative;
}

.cont-box-nav {
	color: #888888;
	font-size: 14px;
	margin-bottom: 20px;
	position: relative;
}

.cont-box-nav a {
	color: #666666;
	font-size: 14px;
}

.cont-box-nav a:hover {
	color: #000000
}

.cont-box-nav-search {
	position: absolute;
	top: -10px;
	right: 0;
	background-color: #ffffff;
	border: 1px solid #019141;
	display: flex;
	display: -webkit-flex;
	border-radius: 3px;
}
.cont-box-nav-search input{
	height: 36px;
	width: 30%;
	padding-left: 10px;
	border-radius: 3px 0 0 3px;
	outline: none;
	border: none;
	flex: auto;
}
.cont-box-nav-search button {
	width: 50px;
	height: 36px;
	border: none;
	color: #019141;
	border-radius: 0 3px 3px 0;
	background-color: #ffffff;
	outline: none;
}
.cont-box-nav-search button:focus{
	outline: none;
}
.cont-box-nav-search button:hover{
	background-color: #f5f5f5;
}
.cont-box-nav-search button i{
	color: #019141;
}
.cont-box-nav-search button:active i{
	color: #00B550;
}
.cont-table{
	width: 100%;
}
.cont-table th{
	padding: 8px 5px;
}
.cont-table tbody tr:nth-child(odd){
	background-color: #f0f0f0;
}
.cont-table td{
	padding: 8px 5px;
	font-size: 14px;
}
.cont-table .col-th{
	color: #019141
}
.cont-table td .a-btn{
	color:#444;
	font-weight: bold;
	text-decoration: underline;
	margin-left: 10px;
}
.tabel-pages{
	margin-top: 40px;
	text-align: center;
}
.search-table tbody tr:nth-child(odd){
	background-color: transparent;
}
.search-table tbody tr{
	border-bottom: 2px dashed #dddddd;
}
.search-table td{
	padding: 20px 15px;
	font-size: 18px;
	font-weight: bold;
	color:#019141;
}
.search-table td:last-child{
	white-space: nowrap
}
.search-table td a{
	color: #019141;
}
.search-table td a:hover{
	color: red
}
.search-table td span{
	font-size: 14px;
	color:#888888
}