/*
* @Author: Administrator
* @Date:   2018-10-08 11:35:36
* @Last Modified by:   Administrator
* @Last Modified time: 2018-11-20 10:08:33
*/

*{
	margin:0;
	padding:0;
}
ul,li{
	list-style:none;
}
a{
	text-decoration: none;
}
a:hover {
    text-decoration: none;
}
del, ins, u, s, a, a:hover {
    text-decoration: none;
}

a, button {
    cursor: pointer;
}

body, textarea, input, button, select, keygen, legend {
    font: 14px/1.14 'Microsoft YaHei', arial,\5b8b\4f53;
    color: #07111b;
    outline: 0;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.both{
	clear:both;
}




/* 搜索框开始 */
.search-wrapper {
	position: absolute;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	top: 70%;
	left:80%;
	padding-top: 4px;
}
.search-wrapper.active .input-holder {
	border-radius: 50px;
	width: 176px;
	background: rgba(85,85,85,0.5);
	-webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	-moz-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}
.search-wrapper .input-holder {
	overflow: hidden;
	height: 30px;
	background: rgba(255,255,255,0);
	border-radius: 6px;
	position: relative;
	width: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder .search-input {
	opacity: 1;
	-webkit-transform: translate(0, 10px);
	-moz-transform: translate(0, 10px);
	transform: translate(0, 10px);
}
.search-wrapper .input-holder .search-input {
	width: 100%;
	height: 30px;
	padding: 0px 30px 0 20px;
	opacity: 0;
	position: absolute;
	top: -8px;
	left: 0px;
	background: transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	outline: none;
	font-family: "Open Sans", Arial, Verdana;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #FFF;
	-webkit-transform: translate(0, 60px);
	-moz-transform: translate(0, 60px);
	transform: translate(0, 60px);
	-webkit-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	-moz-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.search-wrapper .input-holder .search-icon {
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 6px;
	background: none;
	padding: 0px;
	outline: none;
	position: relative;
	z-index: 2;
	float: right;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder .search-icon {
	width: 27px;
	height: 30px;
	border-radius: 30px;
}
.search-wrapper .input-holder .search-icon span {
	width: 22px;
	height: 22px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
	-moz-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
	transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
}
.search-wrapper.active .input-holder .search-icon span {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.search-wrapper .close {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	opacity: 0;
	width: 25px;
	height: 25px;
	cursor: pointer;
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	transform: rotate(-180deg);
	-webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
	-moz-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
	transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.search-wrapper.active .close {
	opacity: 1;
	right: -33px;
	top: 10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	-moz-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.searchcss{
	position: absolute;
	top:6px;
	right:12px;
	color:#ccc;
	background-color: none;
}
/* 导航条代码结束 */

/* 解决方案的下面是2列开始 */
/*.layui-nav-child{
	width: 300px!important;
}*/
.layui-nav-child .section-1 {
	width:50%!important;
}
.layui-nav-child section {
	float: left!important;
	padding: 0 10px;
	text-align: center;
}
.layui-nav-child h3 {
	color: #ccc;
	padding: 10px 20px;
	border-bottom: 1px solid #ccc;
}
.layui-nav-child .section-1 a{
	color:#333!important;
}
/* 解决方案的下面是2列结束 */

/*浮动客服开始*/
#floatDivBoxs {
	width:170px;
	background:#fff;
	position:fixed;
	top:55%;
	right:-174px;
	z-index:999;
}
#floatDivBoxs .floatDtt {
	width:100%;
	height:45px;
	line-height:45px;
	background:#f08326;
	color:#fff;
	font-size:18px;
	text-indent:22px;
	position:relative;
}
#floatDivBoxs .floatDqq {
	padding:0 14px;
}
#floatDivBoxs .floatDqq li {
	height:45px;
	line-height:45px;
	font-size:15px;
	border-bottom:1px solid #e3e3e3;
	padding:0 0 0 50px;
}
#floatDivBoxs .floatDtxt {
	font-size:18px;
	color:#333;
	padding:12px 14px;
}
#floatDivBoxs .floatDtel {
	padding:0 0 15px 10px;
}
#floatDivBoxs .floatDtel img {
	display:block;
}
.floatShadow {
	background:#fff;
	box-shadow:-2px 0 3px rgba(0,0,0,0.25);
}
#rightArrow {
	width:50px;
	height:45px;
	background-color:#e7e9d1;
	position: absolute;
	right:0;
	top:55%;
	z-index:999;
}
#rightArrow a {
	display: block;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: red;
	font-size: 22px;
}
.floatDqq li a img{
	width:40px;
}
/* 浮动客服结束 */

/* 移动端footer开始    */
.mfooter{
	width:100%;
	height: 180px;
	background: #1e2124;;
	text-align: center;
}
.mfooter p{
	color:#fff;
	margin-bottom: 6px;
}
/* 移动端footer结束    */

