@charset "utf-8";

/* CSS Document */

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
u,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-size: 100%;
	text-decoration: none;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

ul,
ul li,
ol {
	list-style: none;
}

* {
	margin: 0;
	padding: 0;
}

a {
	margin: 0;
	padding: 0;
	border: 0;
	color: #1a1a1a;
	font-size: 100%;
	text-decoration: none;
	vertical-align: baseline;
	background: transparent;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

input,
select,
textarea {
	border: 0;
	outline: none;
	outline: none;
	border-radius: 0;
	background: none;
	appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
}

input[type=submit],
input[type=button],
button {
	border: 0;
	outline: none;
	background: none;
	appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input[type=checkbox] {
	appearance: checkbox;
	-ms-appearance: checkbox;
	-moz-appearance: checkbox;
	-webkit-appearance: checkbox;
}

input[type=radio] {
	appearance: radio;
	-ms-appearance: radio;
	-moz-appearance: radio;
	-webkit-appearance: radio;
}

::-webkit-input-placeholder {
	color: #999;
}

a,
input {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

em,
i {
	font-style: normal;
}

table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}


/*电脑版版全局样式*/

body {
	font-family: "Microsoft YaHei", tahoma, arial, Hiragino Sans GB;
	width: 100%;
	font-size: 14px;
	line-height: 1.5;
	color: #1a1a1a;
	margin: 0 auto;
	word-break: break-all;
}


/*浮动、位置*/

.fl {
	float: left;
}

.fr {
	float: right !important;
}

.clear:after,
.clear:before {
	content: "";
	clear: both;
	display: block;
}

.text_l {
	text-align: left;
}

.text_r {
	text-align: right;
}

.center {
	text-align: center;
}


/*单行溢出*/

.text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/*2行溢出*/

.text-line2 {
	display: -webkit-box!important;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

img {
	border: 0;
	display: block;
	max-width: 100%;
	margin:0 auto;
}
.bg_img {
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	display: block;
}
.li_50 li{
	width: 50%;
}
.li_33 li{
	width: 33.3333333%;
}
.li_25 li{
	width: 25%;
}
.li_20 li{
	width: 20%;
}


/*选中按钮*/

.checked {
	display: inline-block;
	position: relative;
	width: .2rem;
	height: .2rem;
	vertical-align: middle;
}

.checked input[type=checkbox],
.checked input[type=radio] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 3;
	cursor: pointer;
}

.checked span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.checked.checked__radio span {
	background: url(../images/icons/radio_1.png) center no-repeat;
	background-size: 100% 100%;
}

.checked.checked__radio input[type=checkbox]:checked+span,
.checked.checked__radio input[type=radio]:checked+span {
	background: url(../images/icons/radio_1_2.png) center no-repeat;
	background-size: 100% 100%;
}

.checked.checked__checkbox span {
	background: url(../images/icons/checkbox_1.png) center no-repeat;
	background-size: 100% 100%;
}

.checked.checked__checkbox input[type=checkbox]:checked+span,
.checked.checked__checkbox input[type=radio]:checked+span {
	background: url(../images/icons/checkbox_1_2.png) center no-repeat;
	background-size: 100% 100%;
}


/*开关按钮*/

.switch_btn input[type="checkbox"] {
	display: none;
}

.switch_btn input[type="checkbox"]+label {
	display: block;
	width: .4rem;
	height: .2rem;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-top: .1rem;
}

.switch_btn input[type="checkbox"]+label:after {
	content: '';
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: .2rem;
	height: .2rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
}

.switch_btn .switch:checked+label {
	background: #ed3a3e;
}

.switch_btn .switch:checked+label:after {
	background: #fff;
}

.switch_btn .switch+label {
	background: #ddd;
	border-radius: 20px;
	box-shadow: 1px 1px 3px #aaa;
}

.switch_btn .switch+label:after {
	background: #fff;
	border-radius: 50%;
	box-shadow: 1px 1px 3px #aaa;
}

.switch_btn .switch:checked+label:after {
	left: .2rem;
	left: calc(100% - .2rem);
}

.switch_btn .switch+label {
	background: #ddd;
	border-radius: 100px;
	box-shadow: 1px 1px 3px #aaa;
}

.switch_btn .switch+label:after {
	background: #fff;
	border-radius: 50%;
	box-shadow: 1px 1px 3px #aaa;
}



/*头部*/
.header{
	position: fixed;
	z-index: 40;
	left:0;
	right:0;
	width: 100%;
	background: rgba(0,0,0,.05);
}
.header *{
	transition: all ease-out .2s;
}
.header.active{
	background: rgba(0,0,0,.5);
}
.head-main,
.head-main .pageWidth{
	height: 80px;
}
.head-main .left {
	height: 80px;
	font-size: 0;
}
.head-main .left:after{
	content: "";
	height: 100%;
	display: inline-block;
	vertical-align: middle;
}
.head-main .left .logo{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-right: 30px;
}
.head-main .left .logo img{
	max-width: 210px;
	max-height: 50px;
}
.head-main .left .logo .logo_2{
	display: none;
}
.head-main .left .logo:after{
	content: "";
	position: absolute;
	right:0;
	height: 40px;
	top:50%;
	margin-top:-20px;
	width: 1px;
	background-color: #cecece;
}
.head-main .left .tel{
	margin-left:20px;
	display: inline-block;
	vertical-align: middle;
	font-size: 21.34px;
	font-weight: bold;
	font-family: arial;
	color:#fff;
	line-height: 30px;
	background: url(../images/icons/tel.png) left center no-repeat;
	background-size: 30px 30px;
	padding-left:40px;
}
.head-main .left .telImg,
.head-main .menu-head {
	display: none;
}
.head_nav .navList>li{
	float: left;
	position: relative;
}
.head_nav .navList li{
	font-size: 16px;
	color:#fff;	
}
.head_nav .navList li a {
	color:#fff;
}
.head_nav .navList li a:hover{
  color:#2b91f9;	
}

.head_nav .navList>li>a{
	display: block;
	padding:0 15px;
	height: 80px;
	line-height: 80px;
}
.head_nav .subNav{
	position: absolute;
	min-width: 100px;
	top: 80px;
	background: rgba(26,26,26,.8);
	left:50%;
	text-align: center;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	display: none;
}
.head_nav .subNav:after{
	position: absolute;
	content: "";
	top:-4px;
	height: 4px;
	width: 100%;
	background-color: #589fff;
	left:0;
	right:0;
	margin:0 auto;
}
.head_nav .subNav .subNavList{
	padding:10px 0;
}
.head_nav .subNav li a {
	padding:3px 0;
	display: block;
}

.head_nav .navList>li:hover .subNav{
	display: block;
}













































/*底部*/
.index-footer{
	padding-top:80px;
}
.main_foot{
	background-color: #2e2c37;
	padding:34px 0;
	color:#c8c8c8;
}
.main_foot a {
	color:#c8c8c8;
}
.main_foot .item{
	width: 14%;
	float: left;
}
.main_foot .item .inner {
	padding-right: 55px;
}
.main_foot .item h5{
	font-size: 16px;
	color:#fff;
	margin-bottom: 15px;
	line-height: 34px;
}
.main_foot .item ul li{
	margin-bottom: 5px;
}
.main_foot .item ul li a:hover{
	color:#fff;
	text-decoration: underline;
}
.main_foot .baojia__item{
	width: 16%;
	height: 112px;
}
.baojia__item h5 .btn{
	display: block;
	line-height: 34px;
	border:1px solid #f5f5f5;
	text-align: center;
	color:#fff;
	width: 110px;
}
.baojia__item .ewm img{
	width: 112px;
	height: 112px;
	margin:0;
}

.index-footer .foot__ft{
	font-size: 16px;
	color:#fff;
	background-color: #24222b;
	padding:22px 0;
}
.index-footer .ft_logo img{
	height: 35px;
	max-width: 200px;
}
.index-footer .foot__ft .item{
	padding-left:38px;
	float: left;
	margin-left:30px;
}
.foot__ft .tel_item{
	line-height: 28px;
	background: url(../images/icons/ft_tel.png) left top no-repeat;
	background-size: 28px 28px;
}
.foot__ft .tel_item2{
	line-height: 28px;
	background: url(../images/icons/ft_tel2.png) left top no-repeat;
	background-size: 28px 28px;
}
.foot__ft .e-mail_item{
	line-height: 28px;
	background: url(../images/icons/ft_e-mail.png) left top no-repeat;
	background-size: 28px 28px;
}
.foot__ft .address_item{
	line-height: 28px;
	background: url(../images/icons/ft_addr.png) left top no-repeat;
	background-size: 28px 28px;
}