﻿@charset "utf-8";
/* CSS Document */
/*
	Author:Kevin
	Date:2021-03-03
	Type:base
*/
@font-face {
	font-family: S-Bold;
	src: url("../fonts/SourceHanSansCN-Bold.ttf"),
         url("../fonts/SourceHanSansCN-Bold.eot"),
         url("../fonts/SourceHanSansCN-Bold.otf");
    /*font-display:swap;*/
}
@font-face {
	font-family: S-Medium;
	src: url("../fonts/SourceHanSansCN-Medium.ttf"),
         url("../fonts/SourceHanSansCN-Medium.eot"),
         url("../fonts/SourceHanSansCN-Medium.otf");
    /*font-display:swap;*/
}
@font-face {
	font-family: S-Normal;
	src: url("../fonts/SourceHanSansCN-Normal.ttf"),
         url("../fonts/SourceHanSansCN-Normal.eot"),
	     url("../fonts/SourceHanSansCN-Normal.otf");
    /*font-display:swap;*/
}
@font-face {
	font-family: S-Regular;
	src: url("../fonts/SourceHanSansCN-Regular.ttf"),
         url("../fonts/SourceHanSansCN-Regular.eot"),
	     url("../fonts/SourceHanSansCN-Regular.otf");
    /*font-display:swap;*/
}
body {
	font-family: "S-Regular","sans-serif","Microsoft Yahei","Arial","Helvetica Neue","Helvetica";
	font-size: 16px;
	background: #fff;
	color: #363636;
	margin: 0px;
    min-width:1250px;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin: 0;
}
fieldset, img {
	border: 0;
}
img {
	vertical-align: top
}
address, caption, cite, dfn, em, th, var, optgroup {
	font-style: normal;
	font-weight: normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	display: block;
	margin: 0;
	padding: 0;
}/* HTML5 */
code, kbd, pre, samp {
	font-family: courier new, courier, monospace
}
ol, ul, li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
a {
	font-size: 16px;
	text-decoration: none;
	color: #363636;
	outline: none;
	transition: all .2s;
}
a:hover {
	color: #dc825a;
}
/*a:hover{color:#999;}*/
sup {
	vertical-align: text-top;
}
sub {
	vertical-align: text-bottom;
}
input, select, button {
	vertical-align: baseline;
*vertical-align:middle;
	outline: none;
	background: none;
}
input[type=checkbox], input[type=radio] {
	vertical-align: middle;
	margin: 0 5px;
}
input[type="text"], input[type="password"], textarea {
	outline-style: none;
	-webkit-appearance: none;
	padding: 5px 10px;
}
button {
	cursor: pointer;
	transition: all .2s;
	border: 0;
	font-family: S-Regular;
	font-size: 16px;
}
button:hover, .a_opacity:hover {
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}
textarea {
	resize: none;
	overflow: auto;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*圆角*/
.radius3 {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.radius5 {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.radius22 {
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}
.radius20 {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.radius10 {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.radius50 {
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}
/*左右浮 */
.fl {
	float: left;
}
.fr {
	float: right
}
/*清除浮动*/
.clear {
	clear: both;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
}
/*下拉框*/
.select {
	position: relative;
	width: 80px;
	min-width: 80px;
	height: 40px;
	cursor: pointer;
	z-index: 2;
}
.select:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -2px;
	border-top: 5px solid #666;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}
.select .select_text {
	padding: 0 20px 0 10px;
	height: 40px;
	line-height: 40px;
}
.select_ul {
	display: none;
	position: absolute;
	top: 34px;
	left: -1px;
	width: 100px;
	min-width: 100px;
	background: #fff;
}
.select_ul li {
	line-height: 36px;
	text-indent: 10px;
}
.select_ul li:hover {
	color: #fff;
	background: #c22754;
}
.select_ul li.cur {
	color: #fff;
	background: #eb6189;
}
/*按钮*/
.green_button {
	display: inline-block;
	padding: 10px 60px;
	background: #1ea27b;
	color: #fff;
	transition: all .2s;
}
.green_button:hover {
	background: #f39801;
	color: #fff;
}
.yellow_button {
	display: inline-block;
	padding: 8px 20px;
	background: #dc825a;
	color: #fff;
}
.yellow_button:hover {
	opacity: .8;
	color: #fff;
}
.gray_button {
	display: inline-block;
	padding: 8px 20px;
	background: #ccc;
	color: #fff;
}
.gray_button:hover {
	opacity: .8;
	color: #fff;
}
.big_btn {
	padding: 10px 35px;
}
/*链接*/
a.link {
	color: #1ea27b;
}
a.link:hover {
	text-decoration: underline;
}
/*文字对齐*/
.text_center {
	text-align: center;
}
.text_left {
	text-align: left;
}
.text_right {
	text-align: right;
}
/*外边距*/
.m_tb_100 {
	margin: 100px 0px;
}
.m_t_100 {
	margin-top: 100px;
}
.m_b_100 {
	margin-bottom: 100px;
}
.m_tb_80 {
	margin: 80px 0px;
}
.m_t_80 {
	margin-top: 80px;
}
.m_b_80 {
	margin-bottom: 80px;
}
.m_tb_60 {
	margin: 60px 0px;
}
.m_t_60 {
	margin-top: 60px;
}
.m_b_60 {
	margin-bottom: 60px;
}
.m_tb_50 {
	margin: 50px 0px;
}
.m_t_50 {
	margin-top: 50px;
}
.m_b_50 {
	margin-bottom: 50px;
}
.m_tb_30 {
	margin: 30px 0px;
}
.m_t_30 {
	margin-top: 30px;
}
.m_b_30 {
	margin-bottom: 30px;
}
.m_tb_20 {
	margin: 20px 0px;
}
.m_t_20 {
	margin-top: 20px;
}
.m_b_20 {
	margin-bottom: 20px;
}
.m_tb_10 {
	margin: 10px 0px;
}
.m_t_10 {
	margin-top: 10px;
}
.m_b_10 {
	margin-bottom: 10px;
}
.m_lr_15 {
	margin: 0px 15px;
}
.m_r_15 {
	margin-right: 15px;
}
.m_l_15 {
	margin-left: 15px;
}
.m_t_220 {
	margin-top: 220px;
}
.m_t_450 {
	margin-top: 450px;
}
.m_t_500 {
	margin-top: 500px;
}
.m_t_600 {
	margin-top: 600px;
}
.m_b_700 {
	margin-bottom: 700px;
}
.-m_r_15 {
	margin-right: -15px;
}
.no_m {
	margin: 0px !important;
}
.no_p {
	padding: 0px !important;
}
/*内边距*/
.p_tb_80 {
	padding: 80px 0px;
}
.p_t_80 {
	padding-top: 80px;
}
.p_b_80 {
	padding-bottom: 80px;
}
.p_tb_100 {
	padding: 100px 0px;
}
.p_t_100 {
	padding-top: 100px;
}
.p_b_100 {
	padding-bottom: 100px;
}
.p_tb_60 {
	padding: 60px 0px;
}
.p_t_60 {
	padding-top: 60px;
}
.p_b_60 {
	padding-bottom: 60px;
}
.p_tb_50 {
	padding: 50px 0px;
}
.p_t_50 {
	padding-top: 50px;
}
.p_b_50 {
	padding-bottom: 50px;
}
.p_tb_30 {
	padding: 30px 0px;
}
.p_t_30 {
	padding-top: 30px;
}
.p_b_30 {
	padding-bottom: 30px;
}
.p_tb_20 {
	padding: 20px 0px;
}
.p_t_20 {
	padding-top: 20px;
}
.p_b_20 {
	padding-bottom: 20px;
}
.p_tb_10 {
	padding: 10px 0px;
}
.p_t_10 {
	padding-top: 10px;
}
.p_b_10 {
	padding-bottom: 10px;
}
.p_lr_15 {
	padding: 0px 15px;
}
.p_r_15 {
	padding-right: 15px;
}
.p_l_15 {
	padding-left: 15px;
}
/*导航开始*/
header {
	position: relative;
	background: #fff;
    z-index:3; 
}
.header_box {
	width: 100%;
    background:#fff;
    z-index:5;
}
.header_box2 {
	position: inherit;
	background: #fff;
}
.header_box .nav_inner {
	margin: 0 auto;/*width:75%;*/
	width: 1250px;
	position: relative
}
.nav_up {
}
.nav_up .logo {
	padding: 21px 0px;
}
.nav_up .nav {
	margin-left: 100px;
	_margin-left: 10px;
	position: absolute;
	right: 0px;
	top: 0px;
}
.nav_up .nav ul {
	float: left;
	background: #fff;
	position: relative;
	z-index: 3
}
.nav_up .nav li {
	float: left;
	margin: 0px 15px;
}
.nav_up .nav .nav-up-selected a {
	color: #dc825a;
	border-bottom: 2px solid #dc825a;
}
.nav_up .nav li a {
	padding: 37px 10px;
	display: inline-block;
}
.nav_up .nav li a:hover {
	color: #dc825a;
	border-bottom: 2px solid #dc825a;
}
.nav_up .nav li:last-child a {
	color: #fff;
	background:#d98157;
	padding: 3px 15px;
    border-radius: 15px;
    margin: 35px 0px;
	border-bottom:none;
}
.nav_up .nav li:last-child a:hover {
	color: #fff;
	border-bottom:none;
	background:#d67547;
}
.nav_up .search {
	float: left;
	background: #fff;
}
.nav_up .search span {
	display: block;
	background: #f9f9f9;
	padding: 15px 22px;
	border-top: 1px solid #e2e3e5;
	position: absolute;
	right: 0px;
	top: 100px;
	z-index: 2;
	overflow: hidden;
	display: none;
}
.nav_up .search input {
	float: left;
	width: 215px;
	height: 30px;
	line-height: 30px;
	padding: 0px 5px;
	background: #fff;
	border: 1px solid #dc825a;
}
.nav_up .search > button {
	width: 24px;
	/* height: 23px; */
	padding: 50px 0px 48px 55px;
	border: none;
	color: #999;
	background: #fff url(../images/search_ico.png) right 39px no-repeat;
	position: relative;
	z-index: 3;
}
.nav_up .search > button:hover {
	opacity: 1;
}
.nav_up .search span button {
	float: left;
	width: 60px;
	height: 30px;
	border: 0px;
	color: #fff;
	padding: 10px;
	text-align: center;
	text-indent: -100px;
	overflow: hidden;
	background: #dc825a url(../images/search_ico.png) center -45px no-repeat;
}
.nav_up .en {
	float: right;
	background: #fff;
	padding-left:23px;
	position:relative;
	z-index:2;
}
.nav_up .en > a {
	display:block;
	width: 22px;
	/*height: 21px;*/
	padding: 37px 0px 37px 26px;
	border: none;
	color: #999;
	background: #fff url(../images/en.png) left 39px no-repeat;
	position: relative;
	z-index: 3;
	color:#666;
}
.nav_down {
	position: absolute;
	top: 100px;
	left: 0px;
	width: 100%;
	z-index: 2;
}
.nav_down_menu {
	width: 100%;
    height:60px;
	margin: 0;
	background: #f9f9f9;
	position: absolute;
	top: 0px;
	overflow: hidden;
}
.nav_down .nav_down_inner {
	margin: auto;/*width:1250px;*/
	height: 60px;
	position:absolute;
}
.nav_down_inner dl {
	margin: 0px; /*text-align:center;*/
}
.nav_down_inner dl dd {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	margin: 0px 25px;
}
/*导航结束*/

/*主体开始*/
.body_bg {
	background: #f7f7f7;
}
.main {
	width: 100%;
}
.page_main { /*width:75%;*/
	width: 1200px;
	margin: 0px auto 50px auto;
}
.page_main2 { /*width:75%;*/
	width: 100%;
	margin: 0px auto 50px auto;
	position: relative;
}
.page_main2_content {
	width: 1200px;
	margin: 0 auto;
}
/*主体结束*/


/*内页框架开始*/
.page_banner {
	width: 100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}
.page_banner_content {
	width: 1200px;
	color: #fff;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.page_banner_content h1 {
	font-family: S-Bold;
	font-size: 36px;
}
.page_banner_content p {
	font-size: 18px;
	line-height: 34px;
	margin: 5px 0px 0px 0px;
}
.page_banner_content span {
	display: block;
	width: 520px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	bottom: -125px;
	transform: translate(-50%, 0);
}
.page_nav {
	width: 1350px;
	margin: 0 auto;
	border-bottom: 1px solid #333;
}
.page_nav ul {
	display: flex;
	margin: 0 auto;
}
.page_nav ul li {
	float: left;
	width: 100%;
}
.page_nav ul li a {
	display: block;
	padding: 80px 0px 25px 0px;
	text-align: center;
	font-size: 20px;
	border-bottom: 3px solid;
	border-color: transparent;
	margin: 0px 120px;
	margin-bottom: -2px;
}
.page_nav ul li a:hover, .page_nav_active {
	color: #dc825a;
	border-bottom: 3px solid #dc825a !important;
	z-index: 999
}
.page_ico_nav {
	width: 1350px;
	margin: 0 auto;
	border-bottom: 1px solid #333;
}
.page_ico_nav ul {
	display: flex;
	margin: 0 auto;
}
.page_ico_nav ul li {
	float: left;
	width: 100%;
}
.page_ico_nav ul li a {
	display: block;
	border-bottom: 3px solid;
	border-color: transparent;
	padding: 125px 0px 42px 0px;
	margin: 0px 40px;
	margin-bottom: -2px;
	text-align: center;
	font-size: 20px;
}
.page_ico_nav ul li a:hover, .page_ico_nav_active {
	color: #dc825a;
	border-bottom: 3px solid #dc825a !important;
}
.ico_nav1, .ico_nav2, .ico_nav3, .ico_nav4, .ico_nav5, .ico_nav6 {
	background: url(../images/hy/fa-ico3.png) no-repeat;
}
.ico_nav1 {
	background-position: center 60px;
}
.ico_nav2 {
	background-position: center -120px;
}
.ico_nav3 {
	background-position: center -300px;
}
.ico_nav4 {
	background-position: center -480px;
}
.ico_nav5 {
	background-position: center -687px;
}
.ico_nav6 {
	background-position: center -892px;
}
.page_title {
	text-align: center;
	margin: 80px 0px 0px 0px;
}
.page_title h1 {
	font-family: S-Bold;
	font-size: 28px;
	padding: 0px 5px;
	border-bottom: 6px solid #dc825a;
	display: inline-block;
}
.page_column {
	padding: 35px 0px 50px 0px;
	overflow: hidden;
}
.page_column_title {
	margin-bottom: 35px;
}
.page_column_title h1 {
	font-family: S-Bold;
	font-size: 26px;
	padding: 0px 0px 0px 10px;
	border-left: 6px solid #dc825a;
}
.page_column_content {
}
.page_btn {
	padding: 40px 0px 80px 0px;
	border-top: 1px solid #d2d2d2;
	text-align: center;
}
.page_btn button {
	padding: 10px 60px;
}
.bg_none {
	background: none;
}
.page_ys {
	display: flex;
}
.page_ys div {
	width: 100%;
	text-align: center;
}
.page_ys div i {
	display: block;
	height: 100px;
	margin-bottom: 18px;
	text-align: center;
}
.page_ys div strong {
	display: block;
	font-weight: normal;
	font-family: S-Bold;
	font-size: 20px;
}
.page_ys div span {
	display: block;
	line-height: 25px;
	color: #646464;
	margin-top: 5px;
}
.page_ys_border {
	display: block;
	width: 120px;
	height: 133px !important;
	line-height: 153px;
	margin: 0 auto;
	margin-bottom: 18px;
	text-align: center;
	background: url(../images/ys_ico_border.png) no-repeat;
}
.page_ys_border img {
	margin-top: 10px;
}
.page_ys2 {
}
.page_ys2 div {
	width: 100%;
	margin: 40px 0px;
	overflow: hidden;
}
.page_ys2 div i {
	display: block;
	float: left;
	height: 100px;
	margin-bottom: 18px;
	margin: 0px 80px;
	text-align: center;
}
.page_ys2 div span {
	display: block;
	float: left;
	padding: 15px 0px;
}
.page_ys2 div span strong {
	display: block;
	font-weight: normal;
	font-family: S-Bold;
	font-size: 24px;
}
.page_ys2 div span p {
	display: block;
	line-height: 25px;
	color: #646464;
	margin-top: 5px;
	font-size: 18px;
}
.page_fs {
	display: flex;
}
.page_fs div {
	width: 100%;
	margin: 15px 0px;
	overflow: hidden;
	font-family: S-Bold;
	font-size: 18px;
}
.page_fs div strong {
	display: block;
	font-weight: normal;
	text-align: right;
}
.page_fs div span {
	display: block;
	float: left;
	width: 65%;
	height: 30px;
	line-height: 30px;
	background: #dc825a;
	color: #fff;
	border-radius: 15px;
	text-align: center;
}
.page_fs div i {
	display: block;
	float: left;
	width: 35%;
	text-align: center;
	padding: 5px 0px;
}
.page_product_list {
	width: 95%;
	margin: 0 auto;
	overflow: hidden;
}
.page_product_list ul li {
	float: left;
	width: 225px;
	margin: 0px 30px;
	text-align: center;
}
.page_product_list ul li a span {
	display: block;
	width: 100%;
	height: 250px;
	line-height: 250px;
	padding: 10px;
	margin-bottom: 15px;
	background: #fff;
	border: 1px solid #d2d2d2;
	overflow: hidden;
}
.page_product_list ul li a span img {
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}
.page_product_list ul li a p {
	font-family: S-Normal;
	margin: 2px 0px;
}
.page_product_list ul li a:hover span {
	border: 1px solid #aaa;
}
.page_product_list ul li a:hover {
	color: #dc825a;
}
/*内页框架结束*/

/*内页左侧菜单开始*/
.treebox {
}
.menu {
	overflow: hidden;
}
/*第一层*/
.menu li {
	margin: inherit !important;
}
.menu li.level1>a {
	display: block;
	height: 60px;
	line-height: 60px;
	text-align: left;
	position: relative;
	transition: all .5s ease 0s;
}
.menu li.level1 a:hover {
	text-decoration: none;
}
.level1 i {
	position: absolute;
	right: 20px;
	top: 20px;
	color: #777;
}
/*第二层*/
.menu li ul {
	overflow: hidden;
}
.menu li ul.level2 {
	display: none;
	margin: 10px 0px;
}
.menu li ul.level2 li a {
	display: block;
	height: 32px;
	line-height: 32px;
	font-size: 16px;
	text-align: left;
	transition: all 1s ease 0s;
	color: #777;
}
/*内页左侧菜单结束*/

/*图文列表开始*/
.graphic_list {
	overflow: hidden;
}
.graphic_list ul {
	margin-right: -15px;
}
.graphic_list ul li {
	float: left;
	width: 426px;
	margin: 50px 10px 5px 5px;
	padding: 40px 20px 50px 20px;
	background: #fff;
	box-shadow: 0px 0px 5px #bbb;
	text-align: center;
	border-bottom: 3px solid #fff;
	transition: all .2s;
}
.graphic_list ul li:hover {
	border-bottom: 3px solid #333;
}
.graphic_list ul li img {
	width: 100%;
	height: 319px;
}
.graphic_list ul li h1 {
	margin: 50px 0px;
}
.graphic_list ul li a {
	display: inline-block;
	padding: 20px 50px;
	background: #e09135;
	color: #fff;
	font-size: 15px;
}
/*图文列表结束*/

/*当前位置*/
.laction {
	background: #f7f7f7;
}
.laction span {
	display: block;
	width: 1175px;
	height: 75px;
	line-height: 75px;
	padding-left: 25px;
	margin: 0 auto;
	background: url(../images/location.png) center left no-repeat;
}
.laction i {
	color: #dc825a;
	font-style: normal;
}
/*弹出窗口*/
.pop, .pop-contact-box {
	width: 785px;
	/*height: 485px;*/
	background: #fff;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	display: none;
}
.pop_title {
	height: 145px;
	border-radius: 5px 5px 0 0;
	background: url(../images/pop_title.jpg) no-repeat;
	position: relative;
}
.pop_title h1 {
	font-family: S-Bold;
	font-size: 36px;
	color: #fff;
	position: absolute;
	bottom: 20px;
	left: 40px;
}
.pop_title a {
	display: block;
	width: 22px;
	height: 22px;
	background: url(../images/delete_ico.png) no-repeat;
	position: absolute;
	right: 10px;
	top: 10px;
}
.pop_content small {	
	display: block;
	text-align: left;
	padding: 36px 40px 15px 40px;
	font-family: S-Normal;
	font-size: 16px;
}
.pop_form {
	padding: 0px 40px;
	font-size: 18px;
	overflow: hidden;
}
.pop_form text {	
    color:#dc825a;
    font-size:14px;
}
.pop_form span {
	display: block;
	width: 50%;
	float: left;
	margin-bottom: 25px;
    position:relative;
}
.pop_form span input {
	width: 235px;
	color: #666;
	padding: 0px 10px;
	height: 33px;
	line-height: 33px;
	border: 1px solid #ccc;
	margin-left: 5px;
}
.pop_form span text {
    position:absolute;
    left:45px;
    top:35px;
}
.pop_form span:nth-child(2n) text{
    left:80px;
}
.pop_form p label {
	display: inline-block;
	margin-right: 5px;
}
.pop_form p:last-child {
	text-align: center;
	padding: 20px 0px;
}
.pop_form textarea {
	width:calc(100% - 20px);
	border:1px solid #ccc;
	font-size:14px;
	height:100px;
}
.pop_tips {
    text-align:center;
    padding:140px 0px 100px 0px;
    font-size:22px;
    background: url(../images/tips.png) center 60px no-repeat;
    background-size: 7%;
}
.pop_bg {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .48);
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 3;
	display: none;
}
.pop_form span i {
	color: #dc825a;
}
.input_border {
    	border: 1px solid #dc825a !important;
}

/*底部开始*/
footer {
	width: 100%;
	background: #3e3e3e;
}
.footer_content {
	overflow: hidden;
	width: 1250px;
	color: #eee;
	margin: 0 auto;
}
.footer_link {
	padding: 68px 30px 36px 30px;
	border-bottom: 1px solid #545454;
	overflow: hidden;
}
.footer_link span {
	font-family: S-Medium;
	display: inline-block;
}
.footer_link ul {
	display: inline-block;
	margin-left: 30px;
}
.footer_link ul li {
	margin: 0px 30px;
	display: inline-block;
}
.footer_link ul li a {
	color: #fff;
}
.footer_link ul li a:hover {
	color: #dc825a;
}
.footer_link_content {
	float: left;
}
.footer_search {
	float: right;
}
.footer_search span {
	display: block;
	overflow: hidden;
}
.footer_search input {
	float: left;
	width: 180px;
	height: 30px;
	line-height: 30px;
	padding: 0px 5px;
	background: #a0a0a0;
	border: none;
	color: #fff;
}
.footer_search span button {
	float: left;
	width: 50px;
	height: 30px;
	border: 0px;
	text-indent: -100px;
	overflow: hidden;
	background: #656565 url(../images/search_ico.png) center -45px no-repeat;
}
.footer_info {
	margin: 30px 0px 30px 0px;
	padding: 0px 30px;
	overflow: hidden;
}
.company_info {
	float: left;
}
.company_info span {
	display: block;
	margin-bottom: 20px;
}
.company_info ul li {
	line-height: 34px;
}
.footer_qrcode {
	float: right;
}
.footer_copyright {
	height: 75px;
	line-height: 75px;
	background: #282828;
	color: #fff;
	text-align: center;
}
.footer_copyright a {
	color: #fff;
}
/*底部结束*/

.anchorBL{
display:none;
} 

/*返回顶部*/
.gotop {
    width: 50px;
    height: 50px;
    line-height:50px;
    background: #dc825a;
    cursor: pointer;
    color: white;
    text-align: center;
    position: fixed;
    right: 50px;
    bottom: 50px;
    display: none;
}
.gotop:hover {
    opacity:0.8;
    transition: all .2s;
    color:#fff;
}