@charset "utf-8";
/* CSS Document */
/*-------重设浏览器默认样式--------*/
html {
	font-size: 62.5%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, select, input, textarea, p, blockquote, table, th, td, hr, button {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
/*html5*/
main, article, aside, details, figcaption, figure, dialog, footer, header, hgroup, menu, nav, section, summary {
	margin: 0;
	padding: 0;
	display: block;
}
body, button, input, select, textarea {
	color: #404040;
	font: 1.4rem "Helvetica Neue", Helvetica, "PingFang SC", Arial, "Microsoft YaHei", "sans-serif";
	word-wrap: break-word;
	word-break: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
address, caption, cite, code, dfn, var {
	font-style: normal;
	font-weight: normal;
}
ol, ul, li {
	list-style: none;
}
img, input, button, select {
	border: 0 none;
	vertical-align: middle;
	max-width: 100%;
}
input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
 color: #333;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
 color: #000;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
 color: #000;
}
input:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
 color: #000;
}
caption, th {
	color: #333;
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	line-height: 1.5;
}
h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}
/*去掉链接虚线，针对Firefox*/
a:focus {
	outline-style: none;
}
/*去掉链接虚线，针对IE*/
a, area {
	color: #404040;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #1c67a7;
	text-decoration: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: inherit;
	margin: 0 auto 20px;
}
table td, table th {
	padding: 7px 10px;
	font-size: 1.4rem;
	line-height: 1.5;
	border: 1px solid #ddd;
	vertical-align: middle;
}
table p {
	margin-bottom: 0;
}
table th {
	background-color: #efefef;
	background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#fdfdfd), to(#eaeaea));
	background-image: -webkit-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
	background-image: -moz-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
	background-image: -ms-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
	background-image: -o-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
	background-image: -linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#eaeaea', GradientType=0);
}
table tr:nth-of-type(even) {
	background: #f7f7f7;
}
table tbody tr {
	transition: all .3s;
	-webkit-transition: all .3s
}
table tbody tr:hover {
	background: #e5ebee;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*-------------------------------*/
textarea, input:not([type="submit"]), select {
	-webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	-moz-transition: border linear .2s, box-shadow linear .2s;
	-o-transition: border linear .2s, box-shadow linear .2s;
	transition: border linear .2s, box-shadow linear .2s;
	display: inline-block;
	padding: 4px 6px;
	font-size: 1.3rem;
	color: #555;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	outline: 0 none;
	border: 1px solid #ddd;
	background: #fcfcfc;
}
textarea:focus, input:not([type="submit"]):focus, textarea:hover, input:not([type="submit"]):hover {
	border-color: rgba(82, 168, 236, 0.8);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
}
/*定位*/
.fl {
	float: left;
}
.fr {
	float: right;
}
.clearfix:after {
	content: "\20";
	display: block;
	clear: both;
}
.clearfix {
 *zoom: 1;
}
/*返回顶部*/
.met-scroll-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}
/*弹性布局*/
.flex {
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
}
.hide {
	display: none !important;
}
/*--------------------*/
.animate-box {
	opacity: 0;
}
/*main {
	background-color: #F1F1F1;
}*/
main#index {
	margin-top: 5px;
	background-color: #fff;
}
.container {
	max-width: 950px;
	margin: 0 auto;
}
.row {
	margin: 0 -.5rem;
}
/*-----查看更多----*/
.readmore {
	position: relative;
	margin: 50px auto 0;
	text-align: center;
	color: #666;
}
.readmore a.more {
	width: 220px;
	height: 50px;
	line-height: 50px;
	border: 1px solid #ddd;
	position: relative;
	display: inline-block;
	color: inherit;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 1.8rem;
	overflow: hidden;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}
.readmore a.more:hover {
	color: #fff;
	background-color: #0F3E72;
}
/*-------FONT AWESOME CORE-----*/
[class^="icon-"], [class*=" icon-"] {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
	background-image: none;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
	text-decoration: inherit;
	display: inline-block;
	speak: none;
}
.icon-search::before {
	font-size: 1.6rem;
	content: "\f002";
}
.icon-remove::before, .icon-close::before {
	content: "\f00d";
}
.icon-angle::before {
	font-size: 1.6rem;
	content: "\f105";
	margin-right: 10px;
}
/*-------定义公共样式--------*/
#header, main, footer {
	width: 100%;
	margin: 0px auto;
}
/*------响应式菜单-----*/
.top-menu {
	display: none;
}
/*------内页与公共部分------*/
main > .wrapper > h1, #content > h1, #content .page, #productSlide, #content .news-info header p.p2 {
	display: none;
}
/*---------头部文件---------*/
#header {
	width: 100%;
	box-shadow: 0 1px 10px rgba(1,84,186, .3);
	background-color: #efefef;
	background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#fdfdfd), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -moz-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -ms-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -o-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#e6e6e6', GradientType=0 );
	margin-bottom: 10px;
}
#header .flex {
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
#header > .container {
	position: relative;
}
/*-----头部logo----*/
#header .logo {
	padding: 15px 0;
}
#header .logo img {
	max-height: 60px;
	transition: all .2s ease-in-out;
}

#header .right {
	position:relative;
}
#header .right .top-desc{
	color: #342C2B;
	font-size: 1.5rem;
	text-align:right;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
#header .right .top-desc span.t1{
	color: #1c67a7;
}
#header .right .top-desc span.t2{
	padding-left:20px;
}
#header .language {
	position: relative;
	margin-left: 20px;
	line-height: 1.8;
}
/*-----------语言--------------*/
#header .right a {
	font-size: 1.4rem;
	padding-left: 28px;
}
#header .right a.cn {
	background: url(../images/cn-flag.png) no-repeat left;
	margin-right: 15px;
}
#header .right a.en {
	background: url(../images/en-flag.png) no-repeat left;
}
/*------------菜单-----------*/
nav.menu > ul > li {
	position: relative;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	margin: 0 20px;
}
nav.menu > ul > li:last-child {
	margin: 0 0 0 20px;
}
nav.menu > ul > li:hover > a, nav.menu > ul > li.active > a, nav.menu > .dropdown:hover > a, nav.menu > .dropdown.active > a {
	color: #3285f3;
	text-decoration: none;
}
nav.menu > ul > li > a::after, nav.menu > ul > li.active > a::after, nav.menu > ul > li:hover > a::after {
	content: '';
	width: 0;
	background-color: #0093da;
	left: 0px;
	position: absolute;
	top: 0px;
	height: 2px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
nav.menu > ul > li > a:hover::after, nav.menu > ul > li.active > a::after, nav.menu > ul > li:hover > a::after {
	width: 100%;
}
nav.menu > ul > li > a, .search-menu > a {
	color: #333;
	font-size: 1.6rem;
	text-align: center;
	height: 80px;
	line-height: 80px;
	transition: all .2s ease-in-out;
	text-transform: uppercase;
}
nav.menu > ul > li > a > i {
	margin-left: 5px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
nav.menu > ul > li > ul > li > a > i {
	position: absolute;
	right: 15px;
	top: 10px;
}
nav.menu > ul > li > a:hover > i.fa-angle-down, nav.menu > ul > li.open > a > i.fa-angle-down {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
nav.menu > ul > li:hover > a, nav.menu > ul > li.active > a {
	color: #0093da;
	text-decoration: none;
}
nav.menu ul li a {
	position: relative;
	display: block;
}
/*-------level 2---------*/
nav.menu ul.dropdown {
	min-width: 100%;
	z-index: 1002;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	text-align: left;
	background: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
nav.menu ul.dropdown > li a {
	color: #333;
	display: block;
	overflow: hidden;
	padding: 8px 35px 8px 15px;
	white-space: nowrap;
	border-bottom: 1px solid #eee;
	text-transform: capitalize;
}
nav.menu ul.dropdown > li:hover > a {
	background: #f2f2f2;
	color: #0093da;
	text-indent: 5px;
	padding: 8px 30px 8px 15px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/*-------level 3---------*/
nav.menu ul.dropdown > li {
	position: relative;
}
nav.menu ul.dropdown > li > ul {
	position: absolute;
	min-width: 100%;
	left: 100%;
	background: #fff;
	top: 0;
	visibility: hidden;
	opacity: 0;
}
nav.menu ul.dropdown > li > ul {
	position: absolute;
	min-width: 100%;
	left: 100%;
	background: #fff;
	top: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-webkit-transition: opacity .2s ease;
	transition: opacity .2s ease;
}
nav.menu ul.dropdown > li:hover ul {
	visibility: visible;
	opacity: 1;
}
nav.menu ul.dropdown > li > ul > li > a {
	padding: 8px 25px 8px 20px;
}
nav.menu ul.dropdown > li > ul > li:hover > a {
	background: #fafafa;
	color: #0093da;
	text-indent: 5px;
	padding: 8px 20px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/*---------搜索-----------------*/
.search-menu {
	position: relative;
	margin-left: 20px;
}
.search-menu:hover > a, .search-menu.active > a {
	color: #0093da;
	text-decoration: none;
}
.search-menu > a {
	display: block;
	text-align: center;
}
.search-menu i {
	width: 20px;
	text-align: center;
	display: inline-block;
}
/*-------子菜单-------*/
.search-menu > ul.dropdown-menu2 {
	display: none;
	position: absolute;
	top: 100%;
	z-index: 1000;
	min-width: 300px;
	padding: 12px;
	background-color: #434343;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	left: auto;
	right: 0;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.search-menu > ul.dropdown-menu2 form {
	position: relative;
}
.search-menu > ul.dropdown-menu2 form input[type="search"] {
	width: 100%;
	padding: 0 10px;
	height: 32px;
	color: #999;
	background-color: #fbfbfb;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 0 none;
}
.search-menu > ul.dropdown-menu2 form button[type="submit"] {
	color: #666;
	background: #fbfbfb;
	position: absolute;
	right: 7px;
	line-height: 28px;
}
.search-menu > ul.dropdown-menu2 form button[type="submit"]:hover {
	color: #000;
}
/*---------移动端导航-------------*/
.bigmegamenu {
	position: relative;
}
.wsmenu-list form {
	font-weight: normal;
	color: #fff;
	font-size: 1.8rem;
	margin-top: 8px;
	margin-bottom: 8px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
	padding: 10px 15px;
	position: relative;
}
.wsmenu-list form input[type="text"] {
	height: 32px;
	line-height: 32px;
	padding-left: 6px;
	width: 100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.wsmenu-list form input[type="submit"] {
	width: 24px;
	height: 24px;
	background: url(../images/search_bg.png) no-repeat center center;
	cursor: pointer;
	position: absolute;
	top: 13px;
	right: 18px;
}
/*----------------------------*/





main > .wrapper {
	max-width: 1280px;
	margin: 0 auto;
}
main > .wrapper > h1 {
	line-height: 35px;
	font-size: 1.6rem;
	font-weight: normal;
	background: #e4ecf7;
	height: 35px;
	text-indent: 10px;
}
main > .wrapper > h1 a {
	border: none;
	width: 23px;
	height: 23px;
	text-indent: -900em;
	overflow: hidden;
	position: absolute;
	top: 2px;
	right: 7px;
	cursor: pointer;
	outline: none;
	background: url(../images/arrow-down.png) no-repeat center center;
	background-size: 100%;
}
main > .wrapper > h1 a:hover, main > .wrapper > h1 a.dl-active {
	background: url(../images/arrow-down2.png) no-repeat center center;
}
/*-----下拉菜单-----*/
.dl-menuwrapper {
	width: 100%;
	float: right;
	right: 0;
	position: absolute;
	z-index: 10;
}
.dl-menuwrapper ul {
	background: #434343;
	position: absolute;
	width: 100%;
	padding: 0;
	list-style: none;
	display: none;
	z-index: 8;
}
.dl-menuwrapper li {
	position: relative;
}
.dl-menuwrapper li a {
	display: block;
	position: relative;
	padding: 5px 10px;
	font-size: 1.2rem;
	line-height: 20px;
	font-weight: 300;
	color: #fff;
	border-top: 1px solid #F1F1F1;
	outline: none;
}
.dl-menuwrapper li a:hover, .dl-menuwrapper li a.active {
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.08) !important;
}
/*-----内页导航----*/
nav.breadcrumb {
	text-transform: capitalize;
	font-weight: normal;
	padding: 8px 10px;
	border-bottom: 1px solid #e5e5e5;
	background-color: #e1e1e1;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
nav.breadcrumb i {
	margin-right: 6px;
	color: #434343;
}
nav.breadcrumb span {
	float: right;
	color: #333;
	font-size: 1.4rem;
}
h1.page-title {
	height: 36px;
	line-height: 36px;
	font-size: 1.8rem;
	font-weight: normal;
	color:#fff;
	background-color: #555;
	padding: 0 10px;
	border-top-left-radius: .5rem;
	border-top-right-radius: .5rem;
}
/*------内页与公共部分------*/
#content {
	padding: 10px 0;
}
#content .left {
	margin-left: 10px;
	width: calc(77% - 10px);
}
.box {
	background-color: #fff;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	border-radius: .5rem;
	box-shadow: 0 0 3px rgba(0, 0, 0, .1);
	border: 1px solid #ddd;
}
/*----侧边栏------*/
aside {
	width: 23%;
}
aside .category {
	margin-bottom: 15px;
}
aside .category:last-child {
	margin-bottom: 0;
}
aside h2 {
	margin: 5px;
	height: 30px;
	background: #dddddd;
	line-height: 30px;
	font-size: 1.8rem;
	color: #666;
	font-style: italic;
	font-weight: normal;
	padding-left: 10px;
}
/*-----产品侧边栏-----*/
.menu-list {
	padding: 5px 10px 10px;
}
.menu-list > li {
	position: relative;
	font-size: 1.5rem;
	border-bottom: 1px solid #e8e8e8;
}
.menu-list > li:hover > a {
	color: #1c67a7;
	background-color: #FEFEFE;
}
.menu-list > li.active {
	background-color: #FEFEFE;
}
.menu-list > li.active > a, .submenu > li.active > a, .submenu > li:hover > a {
	color: #1c67a7;
}
.menu-list > li > a {
	color: #585858;
	display: block;
	height: 35px;
	line-height: 35px;
	vertical-align: middle;
	white-space: nowrap;
	text-transform: capitalize;
}
.menu-list > li > a i.fa-angle-down {
	float: right;
	margin-right: 0;
	line-height: 40px;
	font-size: 2rem;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	vertical-align: middle;
}
.menu-list > li.active > a i.fa-angle-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.menu-list > li > a span {
	text-shadow: 1px 1px 1px #ececec;
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.menu-list > li > a span > [class*="fa-"]:first-child {
	padding-right: 8px;
	display: inline-block;
	vertical-align: middle;
}
.menu-list > li:hover > a span, .menu-list > li:focus > a span, .menu-list > li.active > a span {
	padding-left: 5px;
}
/*------二级菜单----*/
.menu-list > li > ul {
	display: none;
	position: relative;
	background-color: #fff;
	border-top: 1px solid #d2d2d2;
}
.menu-list > li > ul::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 18px;
	top: 0;
	bottom: 0;
	border-left: 1px dashed #9dbdd6;
}
.menu-list > li > ul > li {
	position: relative;
	font-size: 1.4rem;
}
.menu-list > li > ul > li::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 7px;
	left: 20px;
	top: 17px;
	border-top: 1px dotted #9dbdd6;
}
.menu-list > li > ul > li:first-child > a {
	border-top: 1px solid #fafafa;
}
.menu-list > li > ul > li > a {
	display: block;
	position: relative;
	color: #666;
	padding: 7px 0 9px 37px;
	border-top: 1px dotted #e4e4e4;
}
.menu-list > li > ul > li > a > [class*="fa-"]:first-child {
	display: none;
	font-size: 12px;
	font-weight: normal;
	width: 18px;
	height: auto;
	line-height: 12px;
	text-align: center;
	position: absolute;
	left: 10px;
	top: 11px;
	z-index: 1;
	background-color: #FFF;
}
.submenu > li.active > a > [class*="fa-"]:first-child, .submenu > li:hover > a > [class*="fa-"]:first-child {
	display: inline-block;
}
/*----左侧联系我们----*/
aside .contact {
	padding: 10px 15px;
	line-height: 1.8;
}
aside .contact a {
	padding-right: 8px;
}
aside .contact a:last-child {
	padding: 0;
}
aside .contact a:hover {
	text-decoration: underline;
}
aside .contact h3 {
	font-weight: normal;
	margin-bottom: 5px;
}
aside .contact i {
	width: 16px;
	margin-right: 8px;
	text-align: center;
}
.contact p i.fa-mobile {
	font-size: 130%;
}
/*------产品滚动-----*/
#productSlide {
	width: 100%;
	overflow: hidden;
	position: relative;
}
#productSlide .swiper-slide {
	position: relative;
	text-align: center;
}
#productSlide img {
	width: 100%;
	display: block;
}
#productSlide .pagination {
	position: absolute;
	z-index: 20;
	bottom: 3px;
	text-align: center;
	right: 0;
}
#productSlide .swiper-pagination-bullet {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 5px;
	background: #333;
	margin: 0 2px;
	opacity: 0.8;
	cursor: pointer;
}
#productSlide .swiper-pagination-bullet-active {
	background: #2767BF;
}
/*------图片左右滚动箭头-----*/
.owl-carousel .owl-controls .owl-nav div {
	background: #fff none repeat scroll 0 0;
	border: 2px solid #ebebeb;
	border-radius: 0;
	color: #ebebeb;
	font-size: 18px;
	height: 40px;
	left: -35px;
	line-height: 34px;
	margin-top: -20px;
	opacity: 0;
	padding: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	transition: all 400ms ease-in 0s;
	width: 40px;
}
.owl-carousel .owl-controls .owl-nav div.owl-next {
	left: auto;
	right: -35px;
}
.owl-carousel:hover .owl-controls .owl-nav div {
	opacity: 1
}
.owl-carousel .owl-controls .owl-nav div:hover {
	color: #0067ac;
	border-color: #0067ac;
}
/*---------选项卡切换-----------------*/
.details ul.tabs {
	background-color: #f2f2f2;
	border-bottom: 1px solid #ddd;
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
}
.details ul.tabs li {
	border-right: 1px solid #ddd;
}
.details ul.tabs li a {
	text-align: center;
	display: block;
	padding: 5px 20px;
}
.details ul.tabs li a:hover {
	background: #e2e2e2;
}
.details ul.tabs li.active a {
	color: #2767BF;
	background-color: #fff;
	border-top: 2px solid #2767BF;
	margin-top: -1px;
	margin-bottom: -1px;
	border-bottom: 1px solid #fff;
	padding: 4px 20px 5px;
}
#content .tab-content {
	display: none;
	padding: 20px;
}
/*--------底部--------*/
footer {
	padding: 10px 0px;
	border-top: 1px solid #dcdcdc;
}
/*---------弹性布局两端对齐---------*/
footer .container.flex {
	justify-content: space-between;
}
footer a {
	color: #666;
}
footer a:hover {
	color: #333;
	text-decoration: underline;
}
footer .footer-left.flex {
	align-items: center;
}
footer .footer-left img {
	max-height: 60px;
}
footer .footer-right {
	width: 80%;
}
footer .footer-right.flex {
	justify-content: flex-end;
}
footer .footer-right section:first-child {
	width: 50%;
}
footer .footer-right section p {
	line-height: 1.6;
}
/*---------底部-------------*/
#bottom {
	color: #999;
	width: 100%;
	background: #2E2E2E;
	/*border-top: 1px solid #dee2e6;*/
	line-height: 1.5;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
#bottom > .container.flex {
	padding: 8px 0;
	justify-content: space-between;
}
#bottom a {
	color: #999;
}
#bottom a:hover {
	text-decoration: underline;
}
#bottom > .wrapper.flex {
	justify-content: space-between;
}
/*----回到顶部---*/
.btn {
	font-size: 1.4rem;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
}
.btn-icon {
	padding: 10px;
	line-height: 1em
}
.btn .icon {
	color: #fff;
	width: 1em;
	line-height: inherit;
	text-align: center
}
.btn-squared {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.btn-primary {
	background-color: #0093da;
	border-color: #0093da;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	opacity: .78;
}
.btn-primary:hover {
	opacity: 1;
}
/* 特殊的动画效果类名 */
[class*=animation-] {
	-webkit-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-timing-function: ease-out;
	-o-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
nav.menu [class*="animation-"] {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
}
.animation-slide-bottom {
	-webkit-animation-name: slide-bottom;
	-o-animation-name: slide-bottom;
	animation-name: slide-bottom;
}
.animation-zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}
/*-------分页--------*/
#content .page {
	line-height: 30px;
	text-align: center;
	font-size: 1.2rem;
	padding: 20px 0;
}
#content .page a, #content .page span {
	padding: 4px 8px;
	border: 1px solid #555;
}
#content .page span {
	margin: 0 6px;
}
#content .page a:hover {
	background: #E5E5E5;
	text-decoration: none;
}
/*-----分页样式-----*/
nav.pagelist {
	clear: both;
	text-align: center;
	padding: 0px 0px 40px 0px;
}
nav.pagelist a {
	border: #434343 1px solid;
	margin-right: 6px;
	padding: 4px 7px;
	color: #434343;
	-webkit-border-radius: .2rem;
	-moz-border-radius: .2rem;
	border-radius: .2rem;
}
nav.pagelist a:hover {
	color: #fff;
	background: #434343;
	text-decoration: none;
}
nav.pagelist span.current {
	border: #434343 1px solid;
	background-color: #434343;
	margin-right: 6px;
	padding: 4px 7px;
	color: #fff;
	-webkit-border-radius: .2rem;
	-moz-border-radius: .2rem;
	border-radius: .2rem;
}
nav.pagelist span.disabled {
	border: #ccc 1px solid;
	margin-right: 6px;
	padding: 4px 7px;
	color: #3C3C3C;
}
/*--------上下翻页------------*/
#content .prevnext {
	line-height: 1.6;
	padding: 10px 0 0;
	text-align: center;
	border-top: 1px dotted #959595;
}
#content .prevnext.flex {
	display: flex;
	justify-content: space-between;
}
#content .prevnext .previous {
	width: 50%;
	text-align: left;
}
#content .prevnext .next {
	width: 50%;
	text-align: right;
}
.nothing {
	width: 100%;
	font-size: 1.5rem;
	text-align: center;
	padding: 3rem;
}
/*-------百度地图API-------*/
.iw_poi_title {
	color: #CC5522;
	font-weight: bold;
	overflow: hidden;
	padding-right: 13px;
	white-space: nowrap
}
.iw_poi_content {
	font: 12px arial, sans-serif;
	overflow: visible;
	padding-top: 4px;
	white-space: -moz-pre-wrap;
	word-wrap: break-word
}
#dituContent {
	height: 400px;
	border: #ccc solid 1px;
}
/*------内页banner-----*/
#page-banner {
	width: 100%;
	margin: 0 auto;
}

/*-----/在线留言页/-----*/
ul.widget-box {
	position: relative;
}
ul.widget-box li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
ul.widget-box li label {
	float: left;
	width: 90px;
	text-align: right;
	line-height: 30px;
	cursor: pointer;
}
ul.widget-box li span.field {
	display: block;
	position: relative;
	margin-left: 105px;
}
ul.widget-box li span.field img {
	vertical-align: middle;
	cursor: pointer;
	margin-left: 5px;
}
ul.widget-box li em.required {
	color: #f00;
}
ul.widget-box li input {
	height: 30px;
	max-width: 100%;
}
ul.widget-box li textarea {
	max-width: 100%;
}
ul.widget-box li input:not(.valcode) {
	width: 500px;
}
ul.widget-box li textarea {
	width: 600px;
}
.form-actions {
	padding: 12px 0 12px 105px;
}
.form-actions button[type="submit"] {
	margin-right: 10px;
}
form.validate-form input.error, form.validate-form select.error, form.validate-form textarea.error {
	border: 1px solid red;
}
.tipinfo span.error {
	background: url("../images/unchecked.jpg") no-repeat left;
	padding-left: 17px;
	color: #eb0000;
	display: block;
}
.tipinfo span.valid {
	background: url("../images/checked.gif") no-repeat left;
	width: 14px;
	height: 13px;
	overflow: hidden;
	padding: 0;
	margin: 5px 0 0 5px;
	display: inline-block;
}

.stdbtn {
	padding: 6px 15px;
	border: 1px solid #ccc;
	background: #eee url(../images/buttons.png) repeat-x top left;
	color: #333;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;
	opacity: 0.8;
	font-size: 1.4rem;
}
.stdbtn:hover {
	text-decoration: none;
	opacity: 1;
}
.btn_blue {
	background-position: 0 -76px;
	border-color: #0282ce;
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
