@import url("../../css/front/reset.css");
@import url("foot.css");
@import url("head.css");
body{
	background: #f3f4f6;
    margin: 0 auto;
}
.text_center{
	text-align: center;
}
.white{
	color: #fff;
}
.inline{
	display: inline-block;
}
.row_space,.row_start,.row_center{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.row_space{
	justify-content: space-between;
}
.row_start{
	justify-content: flex-start;
}
.row_center{
	justify-content: center;
}
.content_wrap{
	margin-top: 52px;
}
/*案例详情更多案例*/
.case_more{
	font-size: 0;
	border-top: 1px solid #eaebec;
	margin: 20px 0;
	padding: 0 15px;
}
.case_btn{
	background: #5793E9;
	font-size: 15px;
	color: #fff;
	display: block;
	text-align: center;
	margin: 20px 5px 15px 5px;
	height: 36px;
	line-height: 36px;
}
.more_title{
	font-size: 16px;
	color: #333;
	margin: 20px 0 5px 5px;
}
.case_each{
	display: inline-block;
	width: 50%;
	padding: 10px 5px;
	box-sizing: border-box;
	vertical-align: top;
}
.case_title{
	font-size: 15px;
	color: #5E6569;
	margin: 10px 0 7px 0;
}
.case_dis{
	color: #9B9EA0;
	font-size: 13px;
}
/*弹窗*/
.modal{
	position: fixed;
	z-index: 11;
	top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    visibility: hidden;
    transition: all 0.5s;
}
.modal_wrap{
	position: absolute;
	width: 100%;
	top: 10%;
  	text-align: center;
  	transform: scale(0);
  	transition: all 0.5s;
}
.modal_content{
	display: inline-block;
    background: #fff;
    border-radius: 4px;
    width: 80%;
    padding: 15px;
}
.modal_title{
	font-size: 16px;
	color: #333333;
	margin-top: 15px;
}
.modal_info{
	font-size: 14px;
	color: #9f9f9f;
	margin: 10px 0 13px 0;
}
.modal_btn{
	background: #5793e9;
    color: #fff;
    padding: 9px 25px;
    display: inline-block;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}
.modal_open{
	overflow: hidden;
	height: 100vh;
}
/*验证码弹窗*/
.modal_yzm .modal_title{
	font-size: 15px;
	text-align: left;
	margin-top: 0;
}
.modal_yzm .close{
	float: right;
	border: none;
	background: transparent;
	font-size: 27px;
    margin-top: -8px;
    outline: 0;
    cursor: pointer;
}
.modal_yzm .modal_content{
	padding: 20px;
	height: auto;
}
.modal_yzm .modal_body{
	text-align: left;
	padding: 15px 9px;
    font-size: 14px;
}
.yzm_input{
	border: 1px solid #e0e0e0;
	width: 90px;
	height: 28px;
    line-height: 28px;
    padding: 0 0 0 10px;
    box-sizing: border-box;
    outline: 0;
    border-radius: 3px;
}
.yzm_btn{
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	width: 90px;
	background: #5793e9;
    color: #fff;
    text-align: center;
    height: 28px;
    line-height: 28px;
    outline: 0;
    cursor: pointer;
    margin-left: 10px;
    -webkit-appearance: none;
}
.yzm_btn[disabled]{
	cursor: not-allowed;
	background: #dedede;
}
.modal_yzm .text1{
	display: inline-block;
	width: 65px;
}
.modal_yzm .text2{
	font-size: 15px;
	margin-top: 10px;
    display: inline-block;
}
.text-blue{
	color: #5793e9;
}
.text-red{
	color: #f81414;
}
.modal_yzm .modal_btn{
    padding: 6px 90px;
    border-radius: 3px;
    margin-bottom: 5px;
}
.user_phone{
	margin-bottom: 10px;
}
@media only screen and (min-width: 375px) {
	html{
		font-size: 20px!important;
	}
}