*{padding:0;margin:0;font-family: "Microsoft YaHei";list-style: none;text-decoration: none;border: none;}
body{
	font-size: 14px;
	max-width: 750px;
	min-width: 300px;
	margin: 0 auto;
	background: #fff;
	padding-bottom: 55px;
	color: #303133;
}
.imgwidth{
	width: 100%;
	height: auto;
}

.df{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.head{
	background: #fff;
	align-items: center;
	flex-wrap: nowrap;
	padding-top: 8px;
	padding-bottom: 8px;
}
.head .logo{
	width: 90%;
}
.head .logo img{
	display: block;
	margin: 0 auto;
	width: 126px;
}
.nav_btn{
	width: 25px;
	height: 25px;
	margin-right: 15px;
	background: url(../i/nav.png) no-repeat center;
	background-size: 24px;
	cursor: pointer;
}
.nav_btn i{
	font-style: normal;
	display: none;
}
.nav_btn span{
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: #182233;
	display: block;
	margin: 2.2px 0;
}
.close span{
	display: none;
}
.close i{
	display: block;
	font-size: 25px;
	color: #057fd6;
	margin-top: -5px;
}
.nav{
	position: absolute;
	width: 100%;
	height: 0;
	background: rgba(255,255,255,.9);
	z-index: 999;
	transition: all 0.3s;
	overflow: hidden;
	max-width: 640px;
}
.navopen{
	height: 80vh;
}
.nav ul{
	text-align: center;
	padding: 0 20px;
}
.nav ul li{
	line-height: 40px;
	border-bottom: 1px solid #fff;
}
.nav ul li a{
	color: #333;
}


.banner{
	position: relative;
	overflow: hidden;
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
	bottom: 15px;
}
.banner .swiper-pagination-bullet{
	background: #d9d9d9;
	width: 10px;
	height: 3px;
	opacity: 1;
	border-radius: 2px;
	opacity: .8;
}
.banner .swiper-pagination-bullet-active{
	width: 15px;
	background: #ccb07a;
	opacity: 1;
}

.container{
	padding: 0 12px;
}

.product{
	margin-top: 40px;
}
.index_tit p{
	font-size: 20px;
	color: #333333;
}
.index_tit a{
	font-size: 13px;
	color: #969696;
}
.index_tit a::after{
	content: " ";
	display: block;
	width: 6px;
	height: 10px;
	background: url(../i/arrow.png) no-repeat center/cover;
	margin-left: 5px;
}


.product .pro-swiper{
	height: 530px;
	padding-bottom: 30px;
	box-sizing: border-box;
	margin-top: 15px;
}
.product .swiper-slide {
    height: calc((100% - 30px) / 2);

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}
.product .swiper-slide .box{
	height: 200px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product .swiper-slide img{
	max-width: 100%;
	max-height: 100%;
}
.product .swiper-slide p{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #333333;
	width: 100%;
	text-align: center;
}
.product .swiper-pagination-bullet{
	position: relative;
	background: none;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	opacity: 1;
	box-sizing: border-box;
}
.product .swiper-pagination-bullet::after{
	content: " ";
	display: block;
	width: 6px;
	height: 6px;
	background: #d9d9d9;
	border-radius: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -3px;
	margin-top: -3px;
}
.product .swiper-pagination-bullet-active{
	border: 2px solid #ccb07a;
}
.product .swiper-pagination-bullet-active::after{
	display: none;
}

.about{
	background: #f5f5f5;
	margin-top: 25px;
	padding-top: 40px;
	padding-bottom: 20px;
}
.about .info{
	margin-top: 15px;
}
.about .info p{
	color: #565656;
	line-height: 23px;
}
.ab{
	width: 100%;
}

.news{
	margin-top: 40px;
	padding-bottom: 20px;
}
.news li{
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
	margin-top: 20px;
}
.news li a{
	justify-content: space-between;
	align-items: flex-start;
	
}
.news li a img{
	width: 30%;
	min-height: 80px;
}
.news li a .nr{
	width: 66%;
}
.news li a .nr h3{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 14px;
	color: #221815;
	font-weight: normal;
	margin: 0;
}
.news li a .nr span{
	display: block;
	font-size: 12px;
	color: #8e8e8e;
	line-height: 25px;
}
.news li a .nr p{
	font-size: 12px;
	color: #8e8e8e;
	line-height: 17px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-webkit-box-orient: vertical;
}
.news li:last-child{
	border: none;
}

.footer{
	background: #272727;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 9999;
	max-width: 640px;
	box-shadow: 0px 0px 30px rgba(31, 47, 71, 0.1);
}
.footer ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.footer ul li{
	padding: 5px 0;
	text-align: center;
	width: 25%;
}
.footer ul li img{
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 auto;
}
.footer ul li p{
	font-size: 12px;
	color: #fff;
}
.footer ul li:first-child{
	background: #ccb07a;
}

.main{
	padding: 0 15px 50px 15px;
}
.content{
	line-height: 25px;
	margin-top: 20px;
}
.content img{
	max-width: 100% !important;
	height: auto !important;
}
.content a{color:#06F;}

.list{
	margin-top: 10px;
}
.list li{
	line-height: 40px;
	border-bottom: 1px dotted #ddd;
}
.list li a{
	color: #333;
}
.list li a span{
	float: right;
	color: #999;
}

.photobox{
	margin-top: 20px;
	padding-bottom: 50px;
}
.photo{
	padding: 0 5px;
	margin-top: 30px;
}
.photo li{
	width: 50%;
	float: left;
	text-align: center;
	box-sizing: border-box;
	padding: 0 6px;
}
.photo li .box{
    height: 180px;
}
.photo li img{
	max-width: 100%;
	max-height: 100%;
}
.photo li p{
	color: #333;
	line-height: 30px;
	margin-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.clear{
	clear: both;
}
.showtop{
	text-align: center;
	margin-top: 30px;
	border-bottom: 1px dotted #ddd;
}
.showtop h1{
	font-size: 16px;
	font-weight: normal;
}
.showtop p{
	color: #999;
	font-size: 12px;
	line-height: 35px;
}

.tit{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
}
.submenu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-top: 10px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	justify-content: center;
}
.submenu a{
	display: block;
	width: 32%;
	text-align: center;
	background: #eee;
	line-height: 30px;
	color: #333;
	font-size: 12px;
	margin: 0 0.6%;
	margin-top: 10px;
	border-radius: 2px;
}
.submenu a.hover,.submenu a:hover{
	background: #ccb07a;
	color: #fff;
}


.prepage{
	line-height: 30px;
	margin-top: 30px;
	clear:both;
}
.prepage a{
	color: #ccb07a;
}

.pager .pagination{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	margin-top: 30px;
	justify-content: center;
	margin-bottom: 20px;
}
.pager .pagination li span,.pager .pagination li a{
	padding: 0 8px;
	border: 1px solid #ddd;
	margin: 0 2px;
	height: 24px;
	line-height: 22px;
	font-size: 12px;
	display: block;
	border-radius: 2px;
	box-sizing: border-box;
	color: #333;
}
.pager .pagination li.disabled span,.pager .pagination li:last-child a{
	line-height: 18px;
}
.pager .pagination li.active span,.pager .pagination li.active a{
	background: #ccb07a;
	color: #fff;
	border-color: #ccb07a;
}