/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
}

/** 设置默认字体 **/
body,button, input, select, textarea /* for ie */ {
    font: 14px/1.0 "Arial","Microsoft YaHei","黑体","宋体","KaiTi",sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal;}
address, cite, dfn, em, var, i { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读, 让 small 正常化 */

/** 重置列表元素 **/
ul, ol { list-style: none; }

/** 重置文本格式元素 **/
a { text-decoration: none; -webkit-tap-highlight-color: rgba(0,0,0,0);}
a:hover { text-decoration: none; cursor: pointer; }

sup { vertical-align: text-top; } /* 重置, 减少对行高的影响 */
sub { vertical-align: text-bottom; }

/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; outline: none;} /* 使得表单元素在 ie 下能继承字体大小 */
button, input[type="button"] { cursor: pointer}
input::-ms-clear{display:none;}/*隐藏文本框叉子*/
input::-ms-reveal{display:none;}/*隐藏密码框小眼睛*/
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }

/* 重置 HTML5 元素 */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    display: block;
    margin: 0;
    padding: 0;
}



html{
	font-size: 20px;
	height: 100%;
	background: #fff;
}
body{
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 640px){
	html{
		font-size: 20px;
	}
}
@media screen and (max-width: 480px){
	html{
		font-size: 20px;
	}
}
@media screen and (max-width: 380px){
	html{
		font-size: 18px;
	}
}
@media screen and (max-width: 320px){
	html{
		font-size: 16px;
	}
}
.clear_both::after{
	content:".";
	display:block;
	height:0;
	overflow:hidden;
	clear:both;
}



.head_box{
	height: 3.0rem;
	border-bottom: 1px solid #175591;
	background: #fff;
	position: relative;
}
.head_box .logo_a{
	display: inline-block;
	margin-left: 0.8rem;
	height: 100%;
	width: 50%;
	background: url(../img/logo.png) no-repeat left center;
	background-size: contain;
}
.head_box .oa_a{
	width: 2.0rem;
	height: 2.0rem;
	background: url(../img/xz3.png) no-repeat;
	background-size: 100% 100%;
	float: right;
	margin-right: 4.0rem;
	margin-top: 0.5rem;
}
.head_box .menu_div{
	background: #0f67a4;
	top: 0;
	right: 0;
    width: 3.0rem;
    height: 100%;
    text-align: center;
    position: absolute;
}
.head_box .menu_div span{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 2.2rem;
    font-size: 0;
}
.head_box .menu_div span i{
    display: inline-block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    opacity: 1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .active_div{
    
}
.head_box .active_div i{
    background: #fff !important;
}
.head_box .active_div i:nth-of-type(1){
    -webkit-transform: translate(0, 8px) rotate(45deg);
    transform: translate(0,8px) rotate(45deg);
}
.head_box .active_div i:nth-of-type(2){
    opacity: 0;
}
.head_box .active_div i:nth-of-type(3){
    -webkit-transform: translate(0, -8px) rotate(-45deg);
    transform: translate(0, -8px) rotate(-45deg);
}
.head_box .m_ul{
	display: none;
	position: absolute;
    top: 3.0rem;
    left: 0;
    width: 100%;
    background: #0f67a4;
	z-index: 11;
	padding: 0.4rem 0 2.0rem;
	box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}
.head_box .m_ul li{
	padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .m_ul .active_li{
	
}
.head_box .m_ul>li a{
	display: block;
	text-align: center;
    height: 100%;
    color: #fff;
    font-size: 0.9rem;
    height: 2.5rem;
    line-height: 2.5rem;
}
.head_box .m_ul>li a i{
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
	margin-left: 0.6rem;
	width: 0.6rem;
	height: 0.6rem;
	background: url(../img/jt.png) no-repeat center;
	background-size: contain;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .m_ul>li a .active_i{
	-webkit-transform: rotate(90deg);
  	transform: rotate(90deg);
}
.head_box .m_ul p{
	display: none;
}
.head_box .m_ul p a{
	padding: 0 0.8rem;
	font-size: 0.8;
	opacity: 0.8;
	border-bottom: 1px dashed rgba(255,255,255,0.5);
}
.head_box .m_ul p a:first-of-type{
	border-top: 1px solid rgba(255,255,255,0.5);
}
.head_box .m_ul p a:last-of-type{
	border-bottom: none;
}

.banner_box{

}
.banner_box .swiper-pagination .swiper-pagination-bullet-active{
	background: #eee;
}
.banner_box img{
	width: 100%;
	vertical-align: top;
}

.foot_box{
	padding: 1.0rem 0.8rem 1.6rem;
	background: #0f67a4;
	color: #fff;
}
.foot_box p{
	font-size: 0.8rem;
	line-height: 1.5;
}
.foot_box p span{
	display: inline-block;
	vertical-align: top;
}
.foot_box p em{
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 5rem);
}
.foot_box p em i{
	display: block;
	background: #fff;
	border: 1px solid #ccc;
	color: #666;
	line-height: 1.7rem;
	margin-bottom: 0.4rem;
	text-align: center;
	position: relative;
}
.foot_box p em i small{
	position: absolute;
	display: none;
	z-index: 3;
	width: 100%;
	top: 1.7rem;
	left: -1px;
	max-height: 10rem;
	overflow: auto;
	background: #fff;
	border: 1px solid #ccc;
}
.foot_box p em i small a{
	display: block;
	color: #333;
	line-height: 1.6rem;
	border-top: 1px dashed #ccc;
}
.foot_box h6{
	line-height: 1.5;
	opacity: 0.5;
	font-size: 0.7rem;
	margin-top: 0.8rem;
	text-align: center;
	width: calc(100% + 1.6rem);
	box-sizing: border-box;
	padding: 0.8rem 0.8rem 0;
	margin-left: -0.8rem;
	border-top: 1px solid #87b3d2;
}

.page_div{
	font-size: 0;
	text-align: center;
	margin-top: 1.6rem;
}
.page_div a{
	display: inline-block;
	vertical-align: top;
	height: 2.0rem;
	line-height: 2.0rem;
	padding: 0 0.8rem;
	font-size: 0.8rem;
	color: #666;
	background: #d2d2d2;
	margin: 0 0.4rem;
}
.page_div .active_a{
	background: #0f67a4;
	color: #fff;
}
.page_div .prev_a,.page_div .next_a{
	padding: 0;
	background: #fff;
}

.title_h2{
	font-size: 1.3rem;
	color: #0f67a4;
	text-align: center;
	border-bottom: 1px solid #e5e5e5;
	padding-top: 1.0rem;
	    padding-bottom: 1.0rem;
}
.title_h2 strong{
	display: inline-block;
	height: 1.9rem;
	margin-bottom: -1px;
	border-bottom: 2px solid #0f67a4;
}



.inews_box{
	padding-bottom: 2.0rem;
}
.inews_box form{
	padding: 0 1.6rem;
	position: relative;
	margin-top: 1.6rem;
	margin-bottom: 2.0rem;
}
.inews_box form input{
	width: 100%;
	height: 1.9rem;
	border: 1px solid #e5e5e5;
	border-radius: 1.0rem;
	box-sizing: border-box;
	padding: 0 2.0rem 0 0.8rem;
}
.inews_box form button{
	position: absolute;
	right: 2.0rem;
	top: 0;
	width: 1.9rem;
	height: 1.9rem;
	background: url(../img/ss2.png) no-repeat center;
	background-size: 70%;
	border: none;
}
.inews_box ul{
	padding: 0.8rem 0.8rem 0;
}
.inews_box ul li{
	padding-bottom: 1.0rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 0.8rem;
}
.inews_box ul li a{
	display: block;
	font-size: 0;
}
.inews_box ul li h6{
	display: inline-block;
	vertical-align: middle;
	width: 80%;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #333;
}
.inews_box ul li span{
	display: inline-block;
	vertical-align: middle;
	width: 20%;
	text-align: right;
	font-size: 0.7rem;
	color: #808080;
}
.inews_box ul li img{
	width: 100%;
	margin-top: 0.8rem;
	vertical-align: top;
}
.inews_box ol{
	padding: 0.8rem 0.8rem 0;
}
.inews_box ol li{
	padding-bottom: 0.8rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.8rem;
}
.inews_box ol li a{
	font-size: 0;
	display: block;
	position: relative;
}
.inews_box ol li div{
	display: inline-block;
	vertical-align: top;
	width: 65%;
	box-sizing: border-box;
	padding-right: 0.4rem;
}
.inews_box ol li div h6{
	font-size: 0.9rem;
	line-height: 1.5;
	color: #333;
	margin-bottom: 0.6rem;
}
.inews_box ol li div span{
	display: block;
	font-size: 0.7rem;
	color: #808080;
	position: absolute;
	left: 0;
	bottom: 0;
}
.inews_box ol li em{
	display: inline-block;
	vertical-align: top;
	width: 35%;
}
.inews_box ol li em img{
	width: 100%;
	vertical-align: top;
}
.inews_box .content_div{
	padding: 0 0.8rem;
	margin-top: 1.6rem;
}
.inews_box .content_div>h3{
	text-align: center;
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 0.8rem;
}
.inews_box .content_div>span{
	display: block;
	text-align: center;
	font-size: 0.7rem;
	color: #999;
	margin-bottom: 1.0rem;
}
.inews_box .content_div p{
	/* font-size: 0.85rem; */
	font-size: 19px;
	color: #333;
	line-height: 1.5;
	/* text-indent: 1.6rem; */
}
.inews_box .content_div p img{
	display: block;
	margin: 0 auto;
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	margin-bottom: 1.6rem;
	float: none !important;
}
.inews_box .content_div h4{
	font-size: 1.0rem;
	color: #333;
	text-align: center;
	margin-bottom: 1.2rem;
	margin-top: 1.6rem;
}
.info_box{
	text-align: center;
	padding-top: 1.6rem;
	padding-bottom: 2.0rem;
}
.info_box h4{
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 1.0rem;
}
.info_box img{
	vertical-align: top;
	width: auto;
	max-width: 100%;
	margin-bottom: 2.0rem;
}
.info_box p{
	font-size: 0.9rem;
	line-height: 1.5;
	color: #333;
}
.info_box a{
	margin-top: 2.0rem;
	height: 2.4rem;
	line-height: 2.4rem;
	border: 1px solid #0f67a4;
	color: #0f67a4;
	font-size: 1.0rem;
	display: inline-block;
	padding: 0 4.0rem;
}



.leader_box{
	padding-bottom: 2.0rem;
}
.leader_box ul{
	margin-top: 1.6rem;
}
.leader_box ul li{
	float: left;
	width: 50%;
	text-align: center;
	margin-bottom: 0.8rem;
}
.leader_box ul li a{
	display: block;
}
.leader_box ul li img{
	vertical-align: top;
	width: 70%;
}
.leader_box ul li p{
	font-size: 0.9rem;
	color: #333;
	margin-top: 0.4rem;
}
.leader_box ul li:first-of-type{
	width: 100%;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 0.8rem;
	margin-bottom: 1.2rem;
}
.leader_box ul li:first-of-type img{
	width: 35%;
}



.framework_box{
	padding-bottom: 2.0rem;
}
.framework_box .content_div{
	margin-top: 1.6rem;
	position: relative;
}
.framework_box .content_div img{
	width: 100%;
}
.framework_box .content_div i{
	position: absolute;
	right: 0.8rem;
	bottom: -1.0rem;
	width: 2.0rem;
	height: 2.0rem;
	background: url(../img/ss1.jpg) no-repeat center;
	background-size: 60%;
}
.framework_box .show_img{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(0,0,0,0.8);
	overflow: auto;
	padding: 2.0rem;
	box-sizing: border-box;
}
.pinch-zoom-container{
	height: 100%;
	background: #fff;
}
.pinch-zoom{
	height: 100%;
	background: #fff;
}
.framework_box .show_img img{
	width: auto;
	max-width: 100%;
	vertical-align: top;
}



.home_box{

}
.home_box .link_a{
	display: block;
	width: 40%;
	text-align: center;
	margin: 0 auto;
	height: 2.2rem;
	line-height: 2.2rem;
	border: 1px solid #0f67a4;
	color: #0f67a4;
	font-size: 0.9rem !important;
	margin-top: 1.6rem;
}
.home_box .title_h2{
	margin-bottom: 1.0rem;
}
.home_box .title_h2 strong{
	font-weight: normal;
}
.home_box .div1{
	padding-bottom: 1.6rem;
}
.home_box .div1 dl{
	font-size: 0;
	padding: 0 0.8rem;
}
.home_box .div1 dl dt{
	display: inline-block;
	vertical-align: top;
	width: 30%;
}
.home_box .div1 dl dd{
	display: inline-block;
	vertical-align: top;
	width: 70%;
	box-sizing: border-box;
	padding-left: 0.4rem;
	padding-top: 0.4rem;
}
.home_box .div1 dl dt img{
	width: 100%;
}
.home_box .div1 dl dd p{
	font-size: 0.9rem;
	line-height: 1.5;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.home_box .div2{
	padding-bottom: 1.6rem;
}
.home_box .div2 .swiper-container .swiper-button-prev{
	left: 1.2rem;
	width: 17px;
	height: 20px;
	background: url(../img/jtz.png) no-repeat;
	top: 65%;
}
.home_box .div2 .swiper-container .swiper-button-next{
	right: 1.2rem;
	width: 17px;
	height: 20px;
	background: url(../img/jty.png) no-repeat;
	top: 65%;
}
.home_box .div2 .swiper-container .swiper-slide a{
	padding: 0 0.8rem;
}
.home_box .div2 ul{
	padding: 0 0.8rem;
}
.home_box .div2 ul li{
	padding-bottom: 1.0rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 0.8rem;
}
.home_box .div2 ul li:first-of-type{
	margin-top: 1.0rem;
	padding-top: 0.8rem;
	border-top: 1px solid #ccc;
}
.home_box .div2 a{
	display: block;
	font-size: 0;
}
.home_box .div2 a h6{
	font-size: 0.9rem;
	width: 85%;
	vertical-align: middle;
	display: inline-block;
	line-height: 1.5;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.home_box .div2 a span{
	display: inline-block;
	font-size: 0.7rem;
	vertical-align: middle;
	color: #808080;
	width: 15%;
	text-align: right;
}
.home_box .div2 a img{
	width: 100%;
	margin-top: 0.8rem;
	vertical-align: top;
}
.home_box .div3{

}
.home_box .div3 .bg_img{
	width: 100%;
	vertical-align: top;
}
.home_box .div3 ol{
	padding: 0.8rem 0.4rem 0.2rem;
}
.home_box .div3 ol li{
	float: left;
	width: 49%;
	margin-right: 2%;
	background: #fafafa;
	box-sizing: border-box;
	border: 1px solid #ccc;
	margin-bottom: 0.6rem;
}
.home_box .div3 ol li:nth-of-type(2n+2){
	margin-right: 0;
}
.home_box .div3 ol li a{
	font-size: 0;
	padding: 0.8rem 0 0.8rem 0.2rem;
	display: block;
}
.home_box .div3 ol li img{
	display: inline-block;
	vertical-align: middle;
	width: 1.8rem;
}
.home_box .div3 ol li div{
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.2rem;
}
.home_box .div3 ol li div p{
	font-size: 0.8rem;
	color: #333;
}
.home_box .div3 ol li div small{
	display: block;
	color: #999;
	font-size: 0.6rem;
	margin-top: 0.2rem;
}
.home_box .div4{
	padding-bottom: 1.6rem;
}
.home_box .div4 ol{
	padding: 0 0.8rem;
}
.home_box .div4 ol li{
	padding-bottom: 0.8rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.8rem;
}
.home_box .div4 ol li a{
	font-size: 0;
	display: block;
	position: relative;
}
.home_box .div4 ol li div{
	display: inline-block;
	width: 100%;
	vertical-align: top;
	box-sizing: border-box;
	font-size: 0;
}
.home_box .div4 ol li div h6{
	font-size: 0.9rem;
	line-height: 1.5;
	color: #333;
	width: 85%;
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.home_box .div4 ol li div span{
	display: block;
	font-size: 0.7rem;
	color: #808080;
	position: absolute;
	right: 0;
	top: 0.3rem;
}
.home_box .div4 ol li em{
	display: inline-block;
	vertical-align: top; 
}
.home_box .div4 ol li em img{
	width: 100%;
	vertical-align: top;
}
.home_box .div4 ol li:first-of-type div{
	width: 65%;
}
.home_box .div4 ol li:first-of-type em{
	width: 35%;
}
.home_box .div5{
	padding-bottom: 1.6rem;
}
.home_box .div5 ol{
	padding: 0 0.8rem;
}
.home_box .div5 ol li{
	padding-bottom: 0.8rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.8rem;
}
.home_box .div5 ol li a{
	font-size: 0;
	display: block;
	position: relative;
}
.home_box .div5 ol li div{
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	width: 65%;
}
.home_box .div5 ol li div h6{
	font-size: 0.9rem;
	line-height: 1.5;
	color: #333;
	margin-bottom: 0.8rem;
}
.home_box .div5 ol li div span{
	display: block;
	font-size: 0.7rem;
	color: #808080;
	position: absolute;
	left: 0;
	bottom: 0;
}
.home_box .div5 ol li em{
	display: inline-block;
	vertical-align: top; 
	width: 35%;
}
.home_box .div5 ol li em img{
	width: 100%;
	vertical-align: top;
}




.inde-five {
    margin: 0 auto 20px;
    height: 360px;
}

.inde-five .dfl {
    width: 100%;
    padding: 10px;
}




.inde-five .dfl .d-a a {
    float: left;
    display: block;
    width: 105px;
    height: 190px;
    background-color: #f6f6f6;
    margin: 0 23px 0 0;
    cursor: pointer;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    width: 100%;
}

.inde-five .dfl .d-a a .p1 {
    width: 100px;
    height: 137px;
    overflow: hidden;
    margin: 15px auto 10px;
}

.inde-five .dfl .d-a a .p2 {
    text-align: center;
    color: #323232;
    font-size: 20px;
}

.inde-five .dfl .d-a a .p1 img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all .4s;
}

.othnet_box{
    padding-bottom: 2.0rem;
}
.othnet_box ul{
	padding: 0.8rem 0.8rem 0;
}
.othnet_box ul li{
	padding-bottom: 1.0rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.8rem;
}
.othnet_box ul li a{
	display: block;
}
.othnet_box ul li h6{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}
.othnet_box ul li p{
	font-size: 0.8rem;
	color: #808080;
	margin-top: 0.4rem;
}



.join_box{
    padding-bottom: 2.0rem;
}
.join_box .content_div{
	padding: 0 0.8rem;
    margin-top: 1.6rem;
}
.join_box .content_div p{
	font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
}
.join_box .download_div{
    padding: 0 0.8rem;
    margin-top: 1.6rem;
}
.join_box .download_div a{
	display: block;
	height: 2.5rem;
	width: 100%;
	line-height: 2.5rem;
	box-sizing: border-box;
	font-size: 0.85rem;
	color: #fff;
	margin-top: 0.4rem;
	padding: 0 0.8rem;
	background: url(../img/xz2.png) no-repeat right 0.8rem center #0f67a4;
	background-size: 1.4rem 1.4rem;
}
.join_box .download_div .login_a{
	background: url(../img/xz1.png) no-repeat right 0.8rem center #0f67a4;
	background-size: 1.4rem 1.4rem;
}


.inews_box dl{
	padding: 0.8rem 0.8rem 0;
}
.inews_box dl dd{
	float: left;
	width: 48.5%;
	margin-right: 3%;
	box-sizing: border-box;
	padding: 0.4rem 0.4rem 0;
	background: #e6e6e6;
	margin-bottom: 0.8rem;
}
.inews_box dl dd:nth-of-type(even){
	margin-right: 0;
}
.inews_box dl dd em{
	display: block;
}
.inews_box dl dd em img{
	width: 100%;
	vertical-align: top;
}
.inews_box dl dd h6{
	font-size: 0.9rem;
	text-align: center;
	color: #333;
	line-height: 2.0rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	border-bottom: 1px solid #ccc;
}
.inews_box dl dd div{
	font-size: 0.8rem;
	line-height: 2.0rem;
}
.inews_box dl dd div a{
	display: inline-block;
	color: #666;
	padding-right: 1.2rem;
	background: url(../img/xz9.png) no-repeat right center;
	background-size: 1.0rem 1.0rem;
}
.inews_box dl dd div span{
	float: right;
	color: #666;
	padding-right: 1.2rem;
	background: url(../img/xz10.png) no-repeat right center;
	background-size: 1.0rem 1.0rem;
}


.inde-first-dongtai img{
	width: 100%;
}
.suggest_box{
	padding-bottom: 2.0rem;
}
.suggest_box form{
	padding: 0.8rem 0.8rem 0;
}
.suggest_box form p{
	font-size: 0.85rem;
	color: #333;
	margin-bottom: 1.2rem;
}
.suggest_box form p span{
	display: block;
	margin-bottom: 0.4rem;
}
.suggest_box form p span::before{
	content: "*";
	color: #fb0101;
}
.suggest_box form p>input{
	width: 100%;
	border: 1px solid #ccc;
	height: 2.0rem;
	box-sizing: border-box;
	padding: 0 0.4rem;
}
.suggest_box form p label{
	margin-right: 1.2rem;
}
.suggest_box form p label input{
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 0.2rem;
}
.suggest_box form p textarea{
	width: 100%;
	height: 5.0rem;
	border: 1px solid #ccc;
	resize: none;
	box-sizing: border-box;
	padding: 0.4rem;
}
.suggest_box form button{
	height: 2.0rem;
	border: none;
	background: #0f67a4;
	color: #fff;
	width: 80%;
	display: block;
	margin: 0 auto;
	font-size: 0.9rem;
}






























