/*common start*/
body,div,ul,li,a,img,p,dl,dt,dd,h1,h2,h3,h4,span,strong,input,button,textarea,dl,dt{ margin:0; padding:0;list-style:none;text-decoration:none;border:0; list-style:none;font-family: normal;font-weight: normal;}
body{ font-size:14px;font-family:' '; color:#111;overflow-x: hidden;}
a img{
  border: 0;
}
em {
  font-style: normal;
}
body.head_on{overflow:hidden;}
a{text-decoration:none;color: #333;transition: all .3s;}

*{
	box-sizing: border-box;
}
input,select,textarea{
	outline: none;
}
/* input:focus,select:focus,textarea:focus{
	color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
} */
.clear{ margin:0; padding:0; font-size:0; clear:both; }

.wapper{
	width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
	box-sizing: border-box;
}
@media only screen and (min-width: 1140px){
	.wapper{
		width: 1140px;
		margin: 0 auto;
	}
}

/* 轮播图通用 */
.swiper {width: 100%;height: 100%;}
.swiper-slide
{
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* 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;
}
.swiper-slide img{
	width: 100%;
}

.overflow1{white-space: nowrap;text-overflow: ellipsis;overflow: hidden;width: 100%;display: block;}
.overflow2{display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.overflow3{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}


/*  width  */
::-webkit-scrollbar {
  width: 4px;
}
/*  Track  */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/*  Handle  */
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
}
/*  Handle on hover  */
::-webkit-scrollbar-thumb:hover {
  background: #252b33;
}



/* 导航 */
.headerbox{
	width: 100%;
	margin:  0 auto;
	position: fixed;
	background-color: #fff;
	box-shadow: 0 0 15px rgb(0 0 0 / 10%);
	z-index: 999;
	height: 100px;
}
.headerbox .header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
}
.headerbox .header .logo{
	
}
.headerbox .header .logo img{
	max-width: 100%;
	width: auto;
}
.header_right{
	display: flex;
	align-items: center;
}
.headerbox .header .menu ul li{
	position: relative;
	display: inline-block;
}
.headerbox .header .menu ul li a{
	font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 35px 20px;
    color: #00000080;
    display: flex;
    position: relative;
    text-decoration: none;
}

.headerbox .header .menu ul li a:hover{
	color: rgba(0,0,0,.7);
}
.headerbox .header .menu ul li .sub_menu{
	min-width: 200%;
    position: absolute;
    top: 140%;
    left: -50%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu ul li:hover > dl {
    opacity: 1;
    visibility: visible;
    top: 100%;
	
}

.headerbox .header .menu ul li dd {
    position: relative;
    display: block;
	text-align: center;
}
.headerbox .header .menu dl dd>.three_menu{
	min-width: 100%;
    position: absolute;
    left: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu dl dd:hover>.three_menu {
    opacity: 1;
    visibility: visible;
    top: 0px;
	
}
.headerbox .header .menu ul li dl dd a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #00000080;
    text-align: left;
    display: block;
    padding: 15px 25px 15px 25px;
    position: relative;
    text-decoration: none;
    outline: none;
	text-align: center;
    text-transform: none;
    transition: all 400ms ease;
    border-bottom: 1px solid #f4f4f4;
}
.headerbox .header .menu ul li dl dd:hover>a{
	color: rgba(0,0,0,.7);
}

/* 搜索 */
.search{
	cursor: pointer;
	position: relative;
	padding-left: 15px;
}
.search .s_open{
	margin-top: 4px;
}
.search:before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 14px;
	width: 2px;
	background-color: rgba(0,0,0,.3);
}
.search_box{
	position: fixed;
	background-color: #fff;
	padding: 20px;
	height: 100px;
	width: 100%;
	left: 0;
	top: 0;
	display: none;
	z-index: 101;
}
.search_box.active{
	display: block;
}
.search_box .search_inner{
	display: flex;
	max-width: 1140px;
	height: 100%;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}
.search_box .search_inner .s_close{
	padding: 6px 12px;
	color: #212526;
	cursor: pointer;
	font-size: 16px;
	background-color: transparent;
}
.search_box .search_inner input{
	flex: 1 1 auto;
	border: 1px solid #ced4da;
	background-color: #fff;
	padding: 6px 12px;
	color: #495057;
	font-size: 15px;
}
.search_box .search_inner input:focus{
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.search_box .search_inner .s_search{
	padding: 6px 12px;
	color: #fff;
    background-color: #154835;
    border-color: #154835;
    font-family: 'Roboto Slab';
    text-transform: uppercase;
    border: none;
	font-size: 16px;
	border-radius: .25rem;
}





/* 语言 */
.language{
	position: relative;
	padding-left: 15px;
	font-size: 14px;
	color: #00000080;
	cursor: pointer;
}
.language.active{
	color: rgba(0,0,0,.9);
}
.language i{
	padding-left: 5px;
}
.language_box{
	display: none;
	position: absolute;
	left: 0;
	min-width: 150px;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 3px;
	top: 30px;
	background-color: #fff;
	z-index: 100;
}
.language_box.active{
	display: block;
}
.language_box ul li{
	padding: 8px 0;
}
.language_box ul li a{
	padding: 4px 24px;
	font-size: 14px;
	color: #212529;
	display: block;
}
.language_box ul li a:hover{
	color: #16181b;
    background-color: #f8f9fa;
}


/*mMenu*/
.m_header{width: 100%;}
.sp_header{height:70px;overflow:hidden;background:#fff;position:fixed;z-index:999;width:100%;display: none;top: 0;justify-content: space-between;align-items: center;padding: 0 15px;box-shadow: 0 0 15px rgb(0 0 0 / 10%);}
.sp_logo{height:70px;display: flex;justify-content: center;align-items: center;}
.sp_logo img{margin:auto;max-height:50px;}
.sp_nav{padding-right: 15px;padding: 4px 12px;border: 1px solid rgba(0,0,0,.1);border-radius: 3px;}
.sp_nav.active{
	border: 1px solid rgba(0,0,0,1);
}
.sp_nav img{
	width: 30px;
}
/* 横杠 */
.sjj_nav{position:absolute;z-index:9999;background:#fff;width:100%;height:auto;font-size:14px;line-height:40px;top:70px;left:0;overflow:auto;overflow-x:hidden;display: none;}
.sjj_nav ul li i{position:absolute;top:5px;right:0px;height:30px;padding:0px 7px 0 7px;}
.sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.35s}
.sjj_nav ul li .sjj_nav_i_se svg{transform:rotate(0deg)}
.sjj_nav ul li{border-bottom: 1px dashed #ddd;;position:relative;line-height:45px;font-size:16px}
.sjj_nav>ul >li:last-child{border-bottom: 1px dashed #ddd;}
.sjj_nav ul li ul{display:none}
.sjj_nav ul li a{color:#333;width:100%;padding: 0 20px;display: block;box-sizing: border-box;}
.sjj_nav ul li a:hover{color: #000000;}
.sjj_nav ul li ul li a{color:#333;display:block;text-align:left;}
.sjj_nav ul li i svg{width:25px;height:25px;fill:#333;}
.sjj_nav ul li .sjj_nav_i_se svg{fill:#333}
.sjj_nav ul li ul li>ul{margin-left:10px}
.sjj_nav ul li ul li{border-top: none;}
.sjj_nav ul li ul li a{padding: 0 30px;}




.index_pic_box{
	width: 100%;
	margin: 0 auto;
	padding-top: 60px;
}
.index_pic_box .index_pic{
	width: 100%;
	margin:  0 auto;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.pic_left{
	width: 50%;
	padding: 0 15px;
	box-sizing: border-box;
	
}
.pic_left a{
	display: block;
	width: 100%;
	font-size: 0;
}
.pic_left a img{
	width: 100%;
}
.pic_right{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
}
.pic_right a{
	display: block;
	width: 50%;
	padding: 0 15px;
	box-sizing: border-box;
}
.pic_right a img{
	width: 100%;
}





/* banner */
.bannerbox{
	width: 100%;
}
.bannerbox .mySwiper1{
	width: 100%;
}
.bannerbox .mySwiper1 .swiper-slide a{
	display: block;
	font-size: 0;
	width: 100%;
	height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}



.bannerbox .mySwiper1 .prev_btn{
	position: absolute;
	top: 50%;
	z-index: 9;
	left: 5%;
	text-align: center;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	opacity: 0.5;
}
.bannerbox .mySwiper1 .prev_btn img{
	width: 20px;
	height: 20px;
}
.bannerbox .mySwiper1 .prev_btn:hover{
	opacity: 1;
}
.bannerbox .mySwiper1 .next_btn{
	position: absolute;
	top: 50%;
	z-index: 9;
	right: 5%;
	text-align: center;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	opacity: 0.5;
}
.bannerbox .mySwiper1 .next_btn img{
	width: 20px;
	height: 20px;
}
.bannerbox .mySwiper1 .next_btn:hover{
	opacity: 1;
}
.bannerbox .mySwiper1 .swiper-pagination-bullet {
	font-size: 0px;
	width: 15px;
	height: 15px;
    overflow: hidden;
}
.bannerbox .mySwiper1 .swiper-pagination-bullet-active{
	background-color: #DC0C15;
}


.mySwiper1 .textbox{
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 20px 0 40px;
	text-align: center;
	background-color: rgb(0, 0, 0,0.4);
}
.mySwiper1 .textbox p{
	font-size: 34px;
	color: #fff;
}



/* index1 */
.index1box{
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
}
.index1{
	width: 100%;
	margin: 0 auto;
}
.index1 ul{
	display: flex;
	flex-wrap: wrap;
}
.index1 ul li{
	width: 20%;
	padding: 0 15px;
	margin-bottom: 15px;
}
.index1 ul li a{
	display: block;
	width: 100%;
}
.index1 ul li a .imgbox{
	width: 100%;
	font-size: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.index1 ul li a .imgbox img{
	width: 100%;
	max-height: 160px;
}
.index1 ul li a .textbox{
	text-align: center;
	width: 100%;
}
.index1 ul li a .textbox h1{
	font-size: 20px;
	color: #252b33;
	font-weight: bold;
	margin-bottom: 8px;
}
.index1 ul li a .textbox p{
	margin-bottom: 16px;
	color: #252b33;
	font-size: 16px;
}
.index1 ul li a .textbox button{
	background-color: transparent;
	font-size: 20px;
	color: #00311b;
}




.index2box{
	background-color: #f6f6f6;
	width: 100%;
	margin: 0 auto;
}
.index2box .index2{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.index2 .icon{
	position: absolute;
	left: 48.5%;
	top: 35px;
	z-index: 9;
	width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #f6f6f6;
}
.index2_left{
	height: 400px;
	background-position: center;
    background-size: cover !important;
	width: 50%;
}
.index2_right{
	width: 50%;
	padding: 24px 15px 0;
}
.index2_right h1{
	font-size: 24px;
	color: #00311b;
	padding-bottom: 8px;
	margin-bottom: 8px;
	position: relative;
	text-transform: uppercase;
}
.index2_right h1:after{
	position: absolute;
	content: "";
	width: 70px;
	background-color: #ccc;
	height: 2px;
	left: 0;
	bottom: 0;
}
.index2_right .desc{
	width: 100%;
}
.index2_right .desc p{
	font-size: 16px;
	color: #252b33;
	margin-bottom: 16px;
}
.index2_right .more{
	text-align: right;
	width: 100%;
	margin-top: 40px;
}
.index2_right .more a{
	color: #00311b;
	font-size: 20px;
}


/* index3 */
.index3box{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.index3 .icon1{
	position: absolute;
	left: 50%;
	top: 35px;
	border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #f6f6f6;
}


/* index4 */
.index4box{
	padding: 50px 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
}
.index4box .index4{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.index4_left{
	width: 50%;
}
.index4_right1{
	border-left: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
}
.index4_right{width: 25%;}

.index4_left h1{
	font-size: 24px;
	color: #00311b;
	padding-bottom: 8px;
	margin-bottom: 8px;
	position: relative;
	text-transform: uppercase;
}
.index4_left h1:after{
	position: absolute;
	content: "";
	width: 70px;
	background-color: #ccc;
	height: 2px;
	left: 0;
	bottom: 0;
}
.index4_left p{
	font-size: 16px;
	color: #4b4c4d;
	margin-bottom: 16px;
}
.index4_btn{
	width: 100%;
}

.index4_btn a{
	display: inline-block;
	color: #fff;
    background-color: #154835;
    border-color: #154835;
    font-family: 'Roboto Slab';
    text-transform: uppercase;
    border: none;
	font-size: 16px;
	padding: 6px 12px;
	border-radius: 5px;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.index4_btn a:last-child{
	margin-left: 10px;
}

.index4_right{
	text-align: center;
}
.index4_right h3{
	margin-top: 14px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: bold;
}
.index4_right a{
	font-size: 34px;
	width: 60px;
	height: 60px;
	line-height: 56px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	border: 2px solid #ccc;
	margin-left: 10px;
	margin-top: 22px;
	color: inherit;
	opacity: 0.75;
}




/* footer */
.footerbox{
	width: 100%;
	padding-top: 50px;
	margin: 0 auto;
	background-color: #f3f3f2;
}
.footerbox .footer{
	width: 100%;
	margin: 0 auto;
	
}
.footerbox .footer ul{
	display: flex;
	flex-wrap: wrap;
}
.footerbox .footer ul li{
	padding: 0 15px;
	width: 19%;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.footerbox .footer ul li h3{
	color: #333333;
    font-size: 12px;
    font-weight: bold;
	margin-bottom: 8px;
}
.footerbox .footer ul li dl{
	width: 100%;
}
.footerbox .footer ul li dl dd{
	margin-bottom: 5px;
    line-height: 1.3;
	font-size: 12px;
	color: #53595f;
}


.footer_bottombox{
	width: 100%;
	margin: 0 auto;
}
.footer_bottom{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.f_logo{
	margin-right: 15px;
}
.f_logo img{
	max-width: 100%;
	width: auto;
}
.footer_bottom .desc{
	text-align: left;
	padding: 10px 0;
}

.footer_bottom .desc p{
	font-size: 12px;
	color: #888;
}
.footer_bottom .desc p span{
	font-weight: bold;
}
.footer_bottom .desc ul{
	display: flex;
	align-items: center;
}
.footer_bottom .desc ul li{
	padding: 0 10px;
	position: relative;
	font-size: 12px;
	color: #888;
}
.footer_bottom .desc ul li:first-child{
	padding-left: 0;
}
.footer_bottom .desc ul li:after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
	width: 1px;
	background-color: #888;
}
.footer_bottom .desc ul li:last-child:after{
	display: none;
}





/* 直达顶部 */
.out_top{
	position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 35px;
    transition: all 0.3s ease;
	line-height: 50px;
	color: #fff;
	font-size: 25px;
	text-align: center;
}




/* 通用内页 */
.inbannerbox{
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}


.insidebox{
	width: 100%;
	margin: 0 auto;
}
.insidebox .wapper .inside{
	width: 100%;
	padding: 50px 0;
	box-sizing: border-box;
}



/* product */
.product1box{
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
}
.product1box .product1{
	width: 100%;
	margin: 0 auto;
}
.main_title{
	text-align: left;
	width: 100%;
}
.main_title h1{
	font-size: 24px;
	color: #00311b;
	padding-bottom: 8px;
	margin-bottom: 8px;
	position: relative;
	text-transform: uppercase;
}
.main_title h1:after{
	position: absolute;
	content: "";
	width: 70px;
	background-color: #ccc;
	height: 2px;
	left: 0;
	bottom: 0;
}
.main_title p{
	font-size: 16px;
	color: #252b33;
	margin-bottom: 16px;
}
.product1 .desc p{
	font-size: 16px;
	color: #252b33;
	margin-bottom: 16px;
}


.pro_showbox{
	width: 100%;
	padding: 20px 0;
	box-sizing: border-box;
	border-bottom: 2px solid #ccc;
}
.pro_showbox .pro_show{
	width: 100%;
	margin: 0 auto;
}
.pro_showbox .pro_show a{
	padding-right: 0px;
	border: 1px solid #ccc;
    font-weight: bold;
    color: #252b33;
    margin-right: 10px;
    margin-bottom: 5px;
	padding: 4px 4px 4px 8px;
	border-radius: 5px;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;s
}
.pro_showbox .pro_show a i{
	background-color: #80a0a8;
    padding: 4px;
    color: #ffffff;
	font-weight: 900;
}
.pro_showbox .pro_show a:hover{
	border: 1px solid #252b33;
}




.product2box{
	width: 100;
	margin: 0 auto;
	padding: 20px 0;
}

.product2box .product2{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pro_list_btn{
	display: none;
}

.product2_left{
	width: 20%;
}


.product2_left input[type="checkbox"]:checked {
  background: #80a0a8;
  color: #fff;
  border-color: #80a0a8;
}

.product2_left input[type="checkbox"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background:transparent;
  height: 12px;
  width: 12px;
  border: 1px solid #ddd;
  color: #fff;
  box-sizing: border-box;
}

.product2_left input[type="checkbox"]:after {
	content: ' ';
	position: relative;
	left: 34%;
	top: 12%;
	width: 3px;
    height: 5px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
	display: none;
}

.product2_left input[type="checkbox"]:checked:after {
  display: block;
}


.product2_left .pro_list_btn{
	width: 100%;
	margin: 30px auto;
}
.product2_left .pro_list_btn a{
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	display: flex;
	justify-content: space-between;
	padding: 10px;
	font-size: 16px;
	color: #666;
}


.pro_list{
	width: 100%;
}
.pro_list ul li{
	border-top: 1px solid #ddd;
	margin-bottom: 20px;
	
}
.pro_list ul li:first-child{
	border-top: 0;
	font-weight: bolder;
}
.pro_list ul li .item label{
	font-size: 14px;
	color: #252b33;
}
.pro_list ul li h3{
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
}
.pro_list ul li h3 span{
	font-size: 14px;
	font-weight: bolder;
}
.pro_list ul li>dl{
	display: none;
	max-height: 300px;
	overflow-y: scroll;
}
.pro_list ul li dl dd>dl{
	padding-left: 20px;
}




.product2_right{
	width: 78%;
}
.product2_right ul{
	display: flex;
	flex-wrap: wrap;
}
.product2_right ul li{
	width: 25%;
	padding: 0px 15px;
	margin-bottom: 20px;
}
.product2_right ul li a{
	display: block;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}
.product2_right ul li a .imgbox{
	width: 100%;
	font-size: 0;
}
.product2_right ul li a .imgbox img{
	width: 100%;
    height:150px;
    object-fit:contain;
}
.product2_right ul li a .textbox{
	width: 100%;
	min-height: 30px;
}
.product2_right ul li a .textbox h3{
	font-size: 17px;
	color: #252b33;
	font-weight: 700;
}
.product2_right ul li a .textbox h4{
	font-size: 16px;
	color: #252b33;
    text-align:center;
}
.product2_right ul li a .textbox p{
	font-size: 12.8px;
	color: #252b33;
}
.product2_right ul li a span{
	display: block;
	color: #fff;
    background-color: #154835;
    border-color: #154835;
    text-transform: uppercase;
    border: none;
	padding: 6px 12px;
	font-size: 16px;
	font-weight: 400;
	border-radius: 5px;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.product2_right ul li a span:hover{
	background-color: #9ebfc8;
}




/* detail */
.detailbox{
	padding: 20px 0 60px 0;
	width: 100%;
	margin: 0 auto;
	background-color: #f6f6f6;
}
.detailbox .detail{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.detail_left{
	width: 50%;
	padding: 0 15px;
}
.detail_right{
	width: 50%;
	padding: 0 15px;
	font-size: 0;
}
.detail_right img{width: 100%;}
.detail_left p{
	font-size: 16px;
    line-height:30px;
	color: black;
	margin-bottom: 8px;
}
.detail_left p a{
	color: #999;
	font-weight: bold;
}
.detail_left .desc{
	width: 100%;
	
}
.detail_left .desc p{
	margin-bottom: 16px;
	color: #252b33;
	font-size: 16px;
}
.detail_left .detail_list{
	width: 100%;
	margin-bottom: 20px;
}
.detail_list ul li{
	width: 100%;
}

.detail_tab{
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(0,0,0,.125);
	padding: 5px 0;
	cursor: pointer;
	
}
.detail_tab img{
	width: auto;
    height: 42px;
    margin-right: 5px;
}
.detail_tab h3{
	color: #2d576b;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 48px;
	font-weight: bold;
}
.detail_tab h3:hover{
	color: #154835;
	text-decoration: underline;
}
.detail_box{
	display: none;
}
.detail_box p{
	margin-bottom: 16px;
	color: #252b33;
	font-size: 16px;
}












.relate_picbox{
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
}
.relate_pic{
	width: 100%;
	margin: 0 auto;
}

.relate_content{
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
}
.relate_content ul{
	display: flex;
	flex-wrap: wrap;
}
.relate_content ul li{
	width: 25%;
	padding: 0px 15px;
	margin-bottom: 20px;
}
.relate_content ul li a{
	display: block;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}
.relate_content ul li a .imgbox{
	width: 100%;
	font-size: 0;
}
.relate_content ul li a .imgbox img{
	width: 100%;height:160px;
}
.relate_content ul li a .textbox{
	width: 100%;
	min-height: 40px;
}
.relate_content ul li a .textbox h3{
	font-size: 17px;
	color: #252b33;
	font-weight: 700;
}
.relate_content ul li a .textbox h4{
	font-size: 16px;
	color: #252b33;
}
.relate_content ul li a .textbox p{
	font-size: 12.8px;
	color: #252b33;
}
.relate_content ul li a span{
	display: block;
	color: #fff;
    background-color: #154835;
    border-color: #154835;
    text-transform: uppercase;
    border: none;
	padding: 6px 12px;
	font-size: 16px;
	font-weight: 400;
	border-radius: 5px;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.relate_content ul li a span:hover{
	background-color: #9ebfc8;
}




/* Professional */
.prof1box{
	padding: 50px 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
}
.prof1box .prof1{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.prof1 h1{
	font-size: 24px;
	color: #00311b;
	padding-bottom: 8px;
	margin-bottom: 8px;
	position: relative;
	text-transform: uppercase;
}
.prof1 h1:after{
	position: absolute;
	content: "";
	width: 70px;
	background-color: #ccc;
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.prof1 p{
	font-size: 16px;
	color: #252b33;
	margin-bottom: 16px;
	max-width: 800px;
	margin: 0 auto;
}



.prof2box{
	padding: 80px 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
}

.prof2{
	width: 100%;
	margin: 0 auto;
}
.prof2 ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.prof2 ul li{
	width: 25%;
	padding: 0 15px;
	margin-bottom: 15px;
	box-sizing: border-box;
}
.prof2 ul li a{
	display: block;
	width: 100%;
}
.prof2 ul li a .imgbox{
	position: relative;
	width: 100%;
	font-size: 0;
}
.prof2 ul li a .imgbox img{
	width: 100%;
}
.prof2 ul li a .imgbox .textbox{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 10px;
	background-color: rgb(0, 0, 0,0.7);
	text-align: center;
}
.prof2 ul li a .imgbox .textbox h3{
	font-size: 15px;
	color: #fff;
	position: relative;
	padding-bottom: 4px;
	margin-bottom: 4px;
}
.prof2 ul li a .imgbox .textbox h3:after{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 40px;
	height: 1px;
	background-color:#fff;
}
.prof2 ul li a .imgbox .textbox p{
	font-size: 14px;
	margin-bottom: 16px;
	color: #fff;
}



.prof3box{
	background-color: #f6f6f6;
	padding: 50px 0;
	width: 100%;
	margin: 0 auto;
}


.prof4box{
	width: 100%;
	padding: 50px 0;
	box-sizing: border-box;
	width: 100%;
}
.prof4{
	width: 100%;
	margin: 0 auts;
}
.prof4_content{
	width: 100%;
	margin: 0 auto;
}
.prof4_left{
	width: 50%;
}
.prof4_left a{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.prof4_left a .imgbox{
	width: 50%;
	font-size: 0;
	padding: 0 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.prof4_left a .imgbox img{
	width: 100%;
}
.prof4_left a .textbox{
	width: 50%;
	padding: 0 15px;
}
.prof4_left a .textbox h1{
	font-size: 20px;
	color: #252b33;
	font-weight: bold;
	margin-bottom: 8px;
}
.prof4_left a .textbox p{
	margin-bottom: 16px;
	color: #252b33;
	font-size: 16px;
}
.prof4_left a .textbox button{
	background-color: transparent;
	font-size: 20px;
	color: #00311b;
}



/* company */
.company_menubox{
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	background-color: rgba(255,255,255,0.85);
	min-height: 40px;
	z-index: 9;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.company_menu{
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.company_menu span{
	text-transform: uppercase;
    color: #154835;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 40px;
	width: 100px;
	display: inline-block;
	text-align: center;
}
.company_menu .c_menu{
	text-align: right;
}
.company_menu .c_menu ul{
	display: flex;
	align-items: center;
}
.company_menu .c_menu ul li{
	padding-right: 10px;
}
.company_menu .c_menu ul li a{
    font-weight: bold;
    font-size: 14px;
}



.company_inbanner{
	width: 100%;
	height: 700px;
    background-position: bottom;
    background-size: cover;
    margin-bottom: 60px;
}
.company_inbanner .wapper{
	position: relative;
}
.company_inbanner .textbox{
	background-color: #154835;
    min-height: 20px;
    margin-top: 60px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
    position: absolute;
    left: 0px;
    max-width: 100%;
	text-align: center;
}
.company_inbanner .textbox h1{
	position: relative;
	font-size: 36px;
	color: #f1f1f1;
	padding-bottom: 5px;
	margin-bottom: 8px;
	text-align: center;
}
.company_inbanner .textbox h1:after{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 60px;
	height: 1px;
	background-color: #f1f1f1;
}
.company_inbanner .textbox p{
	color: #f1f1f1;
	font-size: 16px;
	margin-bottom: 16px;
}


.company2box{
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
}
.company2{
	width: 100%;
	margin: 0 auto;
}
.company2 ul li{
	width: 100%;
	border-bottom: 1px solid #dee2e6;
	padding: 10px 0;
	display: flex;
}
.company2 ul li a{
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #00311b;
	font-weight: bold;
	margin-left: 15px;
}
.company2 ul li a span{
	font-weight: bold;
}
.company2 ul li a i{
	padding-left: 5px;
	font-weight: bold;
}
.company2 ul li a:first-child{
	margin-left: 0px;
}


/* history */
.historybox{
	background-color: #f6f6f6;
	width: 100%;
	margin: 0 auto;
}
.historybox .history{
	width: 100%;
	margin: 0 auto;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 500px;
}

.history_text{
	background-color: rgba(255,255,255,0.7);
    max-width: 400px;
    padding: 20px;
	position: absolute;
	left:50%;
	top: 50%;
	text-align: center;
	transform: translate(-50%,-50%);
}
.history_text h3{
	font-size: 28px;
	color: #000;
	position: relative;
	padding-bottom: 8px;
	margin-bottom: 15px;
}
.history_text h3:after{
	position: absolute;
	content: "";
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80%;
	height: 2px;
	background-color: #999;
}
.history_text p{
	font-size: 16px;
	color: #252b33;
}



/* invonation */
.invonation1box{
	padding: 50px 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
}
.invonation1{
	width: 100%;
	margin: 0 auto;
}

.invonation1_content{
	margin-top: 30px;
}
.invonation1_content span{
	display: inline-block;
	margin-bottom: 30px;
	font-weight: bolder;
}
.invonation1_content .desc p{
	font-size: 16px;
	color: #252b33;
	margin-bottom: 16px;
}
.invonation1_content .desc img{
	width: 100%;
}




/* magazine*/
.magazine1box{
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 60px;
	box-sizing: border-box;
}
.magazine1{
	width: 100%;
	margin: 0 auto;
}
.main_title1{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main_title1 a{
	font-size: 20px;
	color: #00311b;
	font-weight: bold;
}
.main_title1 a i{
	font-weight: bold;
	padding-left: 5px;
}

.magazine1 .desc{
	width: 100%;
}
.magazine1 .desc p{
	font-size: 16px;
	color: #252b33;
	margin-bottom: 16px;
}
.magazine1_content{
	width: 100%;
}
.magazine1_content ul{
	display: flex;
	flex-wrap: wrap;
}
.magazine1_content ul li{
	width: 33.33%;
	padding: 0 15px;
	margin-bottom: 15px;
	box-sizing: border-box;
}
.magazine1_content ul li a{
	display: block;
	width: 100%;
}
.magazine1_content ul li a .imgbox{
	width: 100%;
	font-size: 0;
}
.magazine1_content ul li a .imgbox img{
	width: 100%;
}
.magazine1_content ul li a .textbox{
	margin-top: 20px;
	text-align: center;
	width: 100%;
}
.magazine1_content ul li a .textbox span{
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
	color: #999;
}
.magazine1_content ul li a .textbox h3{
	font-size: 24px;
	margin-bottom: 8px;
	color: #2d576b;
}
.magazine1_content ul li a .textbox p{
	color: #252b33;
	font-size: 16px;
	margin-bottom: 16px;
}




/* news */
.newsbox{
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
}
.news{
	width: 100%;
	margin: 0 auto;
}
.news ul li a .textbox{
	text-align: left;
}




/* contact */
.contact1box{
	width: 100%;
	margin: 0 auto;
	padding: 60px 0 40px 0;
	box-sizing: border-box;
}
.contact1box .contact1{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contact1 .main_title{
	max-width: 760px;
}
.contact1_right{
	
}
.contact1_right img{
	max-width: 100%;
    height: auto;
}
.contact1_right p{
	padding: 10px 22px;
	font-size: 16px;
	color: #252b33;
}



.contact2box{
	width: 100%;
	background-color: #f6f6f6;
	padding: 20px 0 100px 0;
	box-sizing: border-box;
}
.contact2box .contact2{
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	border-top: 2px solid #154835;
	padding: 40px;
}
.contact2 h3{
	margin-bottom: 8px;
	font-size: 20px;
	color: #252b33;
}
.contact2 form{
	width: 100%;
}
.form1{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
}
.form1 input{
	width: 49%;
	margin-bottom: 10px;
	padding: 6px 12px;
	border: 1px solid #ced4da;
	background-color: #fff;
}
.form1 input:focus{
	color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}


.form2{
	width: 100%;
	margin: 0 auto;
}

.form2 .item{
	width: 100%;
	margin-bottom: 10px;
}
.form2 .item label{
	color: #252b33;
	font-size: 16px;
	display: block;
	margin-bottom: 8px;
}
.form2 .item select{
	width: 49%;
	padding: 6px 12px;
	border: 1px solid #ced4da;
	background-color: #fff;
	font-size: 14px;
	color: #666;
}
.form2 .item select:focus{
	color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

.form2 .item textarea{
	width: 100%;
	padding: 6px 12px;
	border: 1px solid #ced4da;
	background-color: #fff;
}
.form2 .item textarea:focus{
	color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.c_item{
	display: flex;
}
.c_item label{
	display: inline-block !important;
	flex: 1;
	font-size: 12px !important;
	color: #777 !important;
}
.c_item .c_check{
	width: 16px !important;
	height: 16px !important;
	margin-right: 10px;
	margin-top: 4px;
}


.contact_btn{
	width: 100%;
	color: #fff;
    background-color: #154835;
    border-color: #154835;
	text-transform: uppercase;
	font-size: 16px;
	padding: 6px 12px;
	border-radius: 5px;
	cursor: pointer;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.contact_btn:hover{
	background-color: #9ebfc8;
}



/* about */
.about_inbanner .about_text{
	background-color: #154835;
    min-height: 20px;
    margin-top: 60px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
    position: absolute;
    left: 0px;
    max-width: 50%;
	text-align: left;
}
.about_inbanner .about_text span{
	font-size: 12px;
	color: #ccc;
	margin-bottom: 8px;
}
.about_inbanner .about_text h1{
	position: relative;
	font-size: 36px;
	color: #f1f1f1;
	padding-bottom: 5px;
	margin-bottom: 8px;
}
.about_inbanner .about_text h1:after{
	position: absolute;
	content: "";
	left: 0%;
	bottom: 0;
	width: 60px;
	height: 1px;
	background-color: #ccc;
}
.about_inbanner .about_text p{
	color: #ccc;
	font-size: 16px;
	margin-bottom: 16px;
}



.about1box{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	height: 500px;
	position: relative;
}

.about1box .about1_text{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background-color: rgba(255,255,255,0.7);
	padding: 20px;
	max-width: 400px;
	text-align: center;
}

.about1box .about1_text p{
	font-size: 16px;
	color: #000;
	margin-bottom: 5px;
}
.about1box .about1_text h3{
	font-size: 28px;
	color: #000;
	font-weight: bolder;
}
.about1box .about1_text h1{
	margin: 10px 0;
	padding: 6px 0;
	position: relative;
	font-size: 84px;
	color: #000;
	font-weight: bold;
}
.about1box .about1_text h1:after{
	width: 80%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	position: absolute;
	content: "";
	height: 2px;
	background-color: #999;
}
.about1box .about1_text h1:before{
	width: 80%;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	position: absolute;
	content: "";
	height: 2px;
	background-color: #999;
}

.about2box{
	width: 100%;
	margin: 0 auto;
}
.about2box .about2{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.about2_left{
	padding: 120px 0;
	box-sizing: border-box;
	width: 50%;
}

.item_tab{
	width: 100%;
	text-align: center;
}
.item_tab h1{
	color: #000000;
    font-weight: bold;
    font-size: 84px;
}
.item_tab h3{
	font-size: 28px;
	color: #000;
}
.about2_left .line{
    border-width: 1px;
    width: 60%;
    display: block;
	margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 50px;
	border-bottom: 2px solid #000;
}

.about2_right .icon{
	width: 0;
    height: 0;
	position: absolute;
	left: 0;
	top: 160px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #f6f6f6;
	border-left-color: #fff;
}

.about2_right{
	width: 50%;
	padding-left: 40px;
	padding-top: 30px;
	padding-bottom: 60px;
	position: relative;
	background-color: rgba(0,0,0,0.2);
}
.about2_right ul li{
	width: 100%;
}
.about2_right ul li dl dd{
	width: 100%;
	margin-bottom: 30px;
}
.about2_right ul li dl dd h3{
	display: flex;
	font-size: 16px;
	color: #252b33;
	font-weight: bold;
	margin-bottom: 5px;
}
.about2_right ul li dl dd h3 i{
	color: #154835;
	font-weight: 900;
	padding-right: 5px;
}
.about2_right ul li dl dd .textbox{
	padding-left: 18px;
}
.about2_right ul li dl dd .textbox p{
	font-size: 12px;
	color: #252b33;
	margin-bottom: 5px;
}
.about2_right ul li dl dd .textbox a{
	font-size: 12px;
	font-weight: bold;
	color: #252b33;
}
.about2_right ul li dl dd .textbox a i{
	font-size: 12px;
	font-weight: bold;
}
.about2_right ul li dl dd .textbox a:hover{
	color: #154835;
	text-decoration: underline;
}


.about2box_sj{
	padding: 50px 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
}
.about2box_sj .about2_sj{
	width: 100%;
	margin: 0 auto;
}
.about2_sj .item_tab{
	margin-bottom: 30px;
}
.about2box_sj{
	display: none;
}
.item_list ul li{
	width: 100%;
	margin-bottom: 30px;
}
.item_list ul li h3{
	display: flex;
	font-size: 16px;
	color: #252b33;
	font-weight: bold;
	margin-bottom: 5px;
}
.item_list ul li h3 i{
	color: #154835;
	font-weight: 900;
	padding-right: 5px;
}
.item_list ul li .textbox{
	padding-left: 18px;
}
.item_list ul li .textbox p{
	font-size: 12px;
	color: #252b33;
	margin-bottom: 5px;
}
.item_list ul li .textbox a{
	font-size: 12px;
	font-weight: bold;
	color: #252b33;
}
.item_list ul li .textbox a i{
	font-size: 12px;
	font-weight: bold;
}
.item_list ul li .textbox a:hover{
	color: #154835;
	text-decoration: underline;
}




.about3box{
	width: 100%;
	margin: 0 auto;
	padding: 30px 15px;
	background-color: #154835;
}
.about3box .about3{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.about3box .about3 h1{
	font-size: 25px;
	color: #fff;
	padding-bottom: 8px;
	margin-bottom: 10px;
	position: relative;
}
.about3box .about3 h1:after{
	position: absolute;
	background-color: #fff;
    width: 150px;
    left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.about3box .about3 p{
	font-size: 16px;
	color: #fff;
	margin-bottom: 16px;
}
.about3box .about3 a{
	display: inline-block;
	padding: 8px 16px;
	color: #fff;
	font-size: 16px;
	border: 1px solid #f8f9fa;
	border-radius: 5px;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.about3box .about3 a:hover{
	background-color: #f8f9fa;
	color: #212529;
}


.detail_swiper{position:relative;}
.detail_swiper .swiper-slide{background:none;}
.detail_swiper .pro_prev{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	left: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.1);
}
.detail_swiper .pro_next{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	right: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.1);
}










@media only screen and (max-width: 980px) {
	.headerbox{
		display: none;
	}
	.topbox{
		display: none;
	}
	.sp_header{ display:flex;}
	.height{
		height: 70px !important;
	}
	.mySwiper1 .textbox p {
	    font-size: 20px;
	}
	.index_pic_box {padding-top: 20px;}
	.pic_left {
	    width: 100%;
	}
	.pic_right {
	    width: 100%;
	}
	.index1 ul li{
		width: 50%;
	}
	.pro_list_btn{
		display: block;
	}
	.pro_list{
		display: none;
	}
	.product2_right ul li{
		width: 50%;
	}
	.product2_left {
	    width: 100%;
	}
	.product2_right {
	    width: 100%;
	}
	.detail_left{
		width: 100%;
		padding: 0px;
		order: 1;
	}
	.detail_right{
		width: 100%;
		padding: 0;
		order: 0;
	}
	.relate_content ul li{
		width: 50%;
	}
	.prof2 ul li{
		width: 50%;
	}
	.company_menubox{
		display: none;
	}
	.magazine1_content ul li{
		width: 50%;
	}
	.about2box{
		display: none;
	}
	.about2box_sj{
		display: block;
	}
}


@media only screen and (max-width: 680px) {
	.index2 .icon {display: none;}
	.height{height:70px !important;}
	.index2_left {
		width: 100%;
		order: 0;
	}
	.index2_right {
		width: 100%;
		order: 1;
	}
	.index4_left {
	    width: 100%;
		text-align: center;
	}
	.index4_left h1:after {width: 100%;}
	.index4_right1 {
	    border-left: 0px solid #dee2e6;
	    border-right: 0px solid #dee2e6;
	}
	.index4_right {
	    width: 100%;
	}
	.relate_content ul li{
		width: 100%;
	}
	.prof2 ul li{
		width: 100%;
	}
	.prof4_left {
	    width: 100%;
	}f
	.prof4_left a .imgbox{width: 100%;padding: 0;margin-bottom: 10px;}
	.prof4_left a .textbox{width: 100%;padding: 0;}
	.magazine1_content ul li{
		width: 100%;
	}
	.form1 {margin-bottom: 40px;}
	.form1 input {
	    width: 100%;
	}
	.form2 .item select {
	    width: 100%;
	}
}

@media only screen and (max-width: 400px){
	.product2_right ul li{
		width: 100%;
	}
}
