/*lufb start*/
.active1{
	background-color: #EFF5FB!important;
}
.color{
	color:#000;
}

.bgcn{
	background-color: #FFFFFF;
}

/*lufb end */
.color-wirte{
	color:#ffffff;
}
.font-yh{
	font-family: "微软雅黑";
}
.float_left{
	float: let;
}
.float_right{
	float: right;
}
.pd25{
	padding: 25%;
}

.pdt2{
	padding-top: 2%;
}
.pdt5{
	padding-top: 5%;
}
.pdt10{
	padding-top: 10%;
}
.pdl10{
	padding-left: 10%;
}
.pdr5{
	padding-right: 5%;
}
.pdr10{
	padding-right: 10%;
}
.pdr15{
	padding-right: 15%;
}

.mrgl2{
	margin-left: 2%;	
}
.mrgl5{
	margin-left: 5%;	
}
.mrgl10{
	margin-left: 10%;
}
.mrgl15{
	margin-left: 15%;
}
.mrgl20{
	margin-left: 20%;
}
.mrgr5{
	margin-right: 5%;
}
.mrgr10{
	margin-right: 10;
}
.mrgr15{
	margin-right: 15;
}

.order {
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 23px; 
	margin-top: 60px;
	margin-bottom: 60px;
 }
  .order .line {
	display: inline-block;
	width: 56px;
	border-top: 2px solid #e9e9e9 ;
 }
 .order .txt {
	color: #333333;
	vertical-align: -10%;
	font-weight: bold;
 }

 /*模态框*/
.modal {
    display: none; /* 默认隐藏 */
    position: fixed; /* 根据浏览器定位 */
    z-index: 1; /* 放在顶部 */
    left: 0;
    top: 0;
    width: 100%; /* 全宽 */
    height: 100%; /* 全高 */
    overflow: auto; /* 允许滚动 */
    background-color: rgba(0,0,0,0.4); /* 背景色 */
}
/*模态框内容*/
.modal-content {
    display: flex; /*采用flexbox布局*/
    flex-direction: column; /*垂直排列*/
    position: relative;
    background-color: #fefefe;
    margin: 15% auto; /*距顶部15% 水平居中*/
    /* padding: 20px; */
    border: 1px solid #888;
    width: 392px;
    animation: topDown 0.4s; /*自定义动画，从模态框内容上到下出现*/
}
@keyframes topDown {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
/*模态框头部*/
.headerContont {
    display: flex; /*采用flexbox布局*/
    flex-direction: row; /*水平布局*/
    align-items: center; /*内容垂直居中*/
	justify-content: space-between; 
	width: 390px;
	height: 62px;
	background:url(../../static/img/solution/frame_top.png) no-repeat;
	background-size:cover;
	background-position: center;
	overflow: hidden;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
/*关闭X 样式*/
.closeBtn {
	margin-top: 12px;
	margin-left: 45px;
	width: 24px;
	height: 24px;
}

/*模态框body*/
.bodyContont{
	display: flex;
	flex-direction: column;
	width: 392px;
}

.footerContent{
	width: 392px;
	height: 72px;
}



 




