
.mobile{display:none;}

/*전체폭사이즈*/
.coltarea{
	width:1200px;
	margin:0 auto;
}


/*헤더*/
.header_area{
	position:relative;
}
.header{
	width:100%;
	position:absolute;
	top:0;
	z-index:10;
}

.header .top_bann{
	width:100%;
	height:40px;
	line-height:40px;
	background:#fff;
	color:#222;
	border-bottom:1px solid #eee;
}
.header .top_bann span{
	position:relative;
	margin-right: 5px;
    padding-right: 10px;
	cursor:pointer;
}

.header .top_bann span:after{
	display: block;
    content: '';
    width: 1px;
    height: 9px;
    background-color: #888;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}
.header .top_bann span:last-child{
	margin-right: 0;
    padding-right: 0;
}
.header .top_bann span:last-child:after{
	display:none;
}

.header .top_menu{
	height:80px;
	line-height:78px;
	background:#fff;
	border-bottom:1px solid #ddd;
}

.header .top_menu .logo h1{
	color:#222;
	text-align:left;
}

.header .top_menu .menu ul{
	color:#222;
	display: flex;
    justify-content: flex-end;
}

.header .top_menu .menu ul li{
	cursor:pointer;
	font-size:16px;
	min-width: 16.6666%;
	text-align:center;
	font-weight:400;
}
.header .top_menu .menu ul li:hover{
	color:#1e58c9;
	border-bottom:3px solid #1e58c9;
}


.rightmenu{
	display:none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    padding: 16px 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.rightmenu ul{
	width:1200px;
	margin:0 auto;
	display:flex;
	justify-content: space-around;

}
.rightmenu li{
	font-size:16px;
	display:inline-block;
	cursor:pointer;
	color:#222;
	text-align:center;
	padding:8px 0;
	z-index:99;
	width:16.666%;
}

.rightmenu li:hover{
	color:#1e58c9;
	transition:1s;
}

.top_btn{
	display:none;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    background: #1e58c9;
    color: #fff;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    font-size: 15px;
    font-weight: 500;
}



/*메인컨텐츠*/

.coltarea .tit{
	margin-bottom:50px;
	letter-spacing:-1px;
}

.coltarea .tit p{
	font-size:35px;
	font-weight:500;
	margin-bottom:15px;
}

.coltarea .tit p strong{
	font-weight:500;
}

.coltarea .tit span{
	font-size:25px;
	font-weight:300;
}


.cont1{
	background: url(../../images/cont1_bg.jpg) #fff;
    background-position: center center;
    /* background-size: cover; */
    background-repeat: no-repeat;
    overflow: hidden;
    height: 950px;
    position: relative;
}

.titarea{
	width:100%;
	height:950px;
	position:relative;
}
.cont1 .txt{
	position:absolute;
	top:50%;
	left:0;
	transform:translate(0, -50%);
	color:#222;
	font-weight:300;	
	white-space:nowrap;
	letter-spacing: -2.5px;
}
.cont1 .txt p{
	font-size:60px;
	letter-spacing: -5.5px;
}
.cont1 .txt p strong{
	font-size:60px;
	font-weight:500;
	color: #1e58c9;
}
.cont1 .txt span{
    display: inline-block;
    font-size: 25px;
    margin-top: 16px;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}
.cont1 .txt button{
	display: block;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: -1.5px;
    color: #222;
    padding: 0 40px 0 10px;
    background: none;
    position: relative;
	box-shadow: inset 0 -10px 0 #cbddff;
	transition:0.5s;
}

.cont1 .txt button:hover{
	box-shadow: inset 0 -50px 0 #cbddff; 
	transition:0.5s;
}

.cont1 .txt button .fa{
	position:absolute;
	top:50%;
	right:20px;
	display: inline-block;
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	color: #222; 
}


@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); }
  50% {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%); }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); } }

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); }
  50% {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%); }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); } 
}


.cont2{
	padding:120px 0;
	background: #ecf1f9;
}

.cont2 .tit{
	text-align:center;
	color:#222;
}

.cont2 .tit p strong{
	color:#1e58c9;
}

.cont2 .info_list{
	width:100%;
	display: flex;
    justify-content: space-around;
}

.cont2 .info_list .info_box{
    width: calc(25% - 10px);
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 2px 16px #bec8d8;
    margin: 0 16px;
    padding: 50px 16px;
    max-height: 372px;
    border-radius: 5px;
}

.cont2 .info_list .info_box:first-child{
	margin:0 8px 0 0;
}
.cont2 .info_list .info_box:last-child{
	margin:0 0 0 8px;
}

.cont2 .info_box .num{
    display: block;
    margin: 0 auto;
    background: url(../../images/cont2_numbg.png);
    background-position: center center;
    background-size: 70px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #033880;
    font-size: 30px;
    font-weight: 600;
	
}

.cont2 .info_box .tit{
	display:block;
	font-size:25px;
	font-weight: 400;
    margin-bottom: 20px;
	letter-spacing: -1.5px;
	color:#222;
}

.cont2 .info_box .tit strong{
    text-transform: uppercase;
    font-size: 14px;
    color: #1e58c9;
    letter-spacing: 0;
}

.cont2 .info_box li{
	font-size: 15px;
    position: relative;
    padding-left: 20px;
    text-align: left;
    width: 150px;
    margin: 8px auto;
}

.cont2 .info_box li:after{
    content: "\f046";
    display: inline-block;
    color: #1e58c9;
    position: absolute;
    top: 50%;
    left: 0;
	transform:translate(0, -50%);
    border-radius: 5px;
	font: normal normal normal 14px/1 FontAwesome;
}


.cont3{
	width:100%;
	background:#07368e;;
	overflow:hidden;
	position:relative;
	padding:110px 0;
	box-sizing:border-box;
}

.cont3 .tit{
	text-align:center;
	color:#fff;
	margin-bottom:80px;
}

.cont3 .info_list ul{
	display:flex;
	justify-content: space-around;
}

.cont3 .info_list ul li{
    position: relative;
    background: #07368e;
    display: inline-block;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    border: 7px double #fff;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
}

.cont3 .info_list ul li:after{
	content:"";
	position:absolute;
	top:50%;
	right:-156px;
	width:150px;
	height:1px;
	border-bottom:5px double #fff;
	box-sizing:border-box;
}
.cont3 .info_list ul li:last-child:after{
	display:none;
}

.cont3 .info_list ul li .box{
	width: 100%;
    text-align: center;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}

.cont3 .info_list ul li .box img{
	display: block;
    margin: 0 auto;
}


.cont4{
	background:#ecf1f9;
	padding:80px 0 110px 0;
}

.cont4 .tit{
	text-align:center;
	color:#1e58c9;
	margin-bottom:60px;
}
.cont4 .tit p{
	margin-bottom:0;
}
.cont4 .tit span{
	color:#222;
}

.cont4_box{
	width:100%;
}

.cont4_box .tit{
	position:relative;
    margin: 0 auto;
    padding: 15px 10px;
    border: 1px solid #c7c9cc;
    border-radius: 5px;
    margin-bottom: 10px;
	box-sizing: border-box;
	background:#fff;
}
.cont4_box .tit:after{
    content: "";
    display: inline-block;
    width: 3px;
    height: 25px;
    background: #b3bac5;
    position: absolute;
    bottom: -19px;
    left: 20px;
    border-radius: 5px;
}
.cont4_box .tit:before{
    content: "";
    display: inline-block;
    width: 3px;
    height: 25px;
    background: #b3bac5;
    position: absolute;
    bottom: -19px;
    right: 20px;
    border-radius: 5px;
}

.cont4_box .tit p{
	margin: 0 auto;
	margin-bottom:5px;
	border-radius:5px;
	background:#1e58c9;
	color:#fff;
	font-size:15px;
	font-weight:300;
	min-width:60px;
    max-width:60px;
}

.cont4_box .tit strong{
	font-size:20px;
	color:#222;
}

.cont4_box .cont{
    margin: 0 auto;
    color: #222;
    padding: 30px 16px;
    box-sizing: border-box;
    border: 1px solid #c7c9cc;
    border-radius: 5px;
	background:#fff;
}

.cont4 .input_flex span {
	font-size:20px;
	line-height:215px;
	color:#1e58c9;
}

.cont5{
	padding:110px 0;
}

.cont5 .tit{
	text-align:left;
	margin-bottom:40px;
}

.cont5 .tit p{
	color:#222;
}

.cont5 .tit span strong{
	color:#1e58c9;
	font-weight:400;
}

.cont5 .flex_area .box{
	width:50%;
}

.cont5 .btn_list{
	position:relative;
	width:450px;
	background:#1e58c9;
/*	background: linear-gradient(153deg, #07368e, #1e58c9);*/
	margin-bottom:8px;
	padding:30px 30px;
	color:#fff;
	cursor:pointer;
	border: 1px solid #07368e;
	box-sizing:border-box;
}

.cont5 .btn_list:hover{
	background:#07368e;
}

.cont5 .btn_list:after{
	display:inline-block;
	width:40px;
	height:40px;
	background:url(../../images/cont5_arrico.png);
	background-size:40px;
	background-position:center center;
	content:"";
	position:absolute;
	top:50%;
	right:20px;
	transform:translate(0, -50%);
}
.cont5 .btn_list span{
	font-size:25px;
	font-weight:200;
}

.cont5 .btn_list p{
	font-size:30px;
}

.cont5 .box .right_img img{
	width:100%;
	margin-bottom:25px;
	margin-top:20px;
}
.cont5 .box .right_img ul{
	width:260px;
	margin:0 auto;
}
.cont5 .box .right_img li{
	font-size:17px;
	margin-bottom:5px;
	text-align:left;
}

.cont5 .box .right_img li .fa{
	color:#1e58c9;
	margin-right:10px;
}

.cont6{
	width: 100%;
    background: #ecf1f9;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    padding: 110px 0;
    box-sizing: border-box;
}

.cont6 .tit p{
	margin-bottom:0;
}

.cont6 .contact_table{
	display:inline-block;
	box-sizing:border-box;
	width:100%;
	padding:40px 20px;
	background:#fff;
	border-top:5px solid #1e58c9;
	border-radius:0 0 5px 5px;
	text-align:center;
	box-shadow: 0 2px 16px #bec8d8;
}

.contact_table table{
	width:100%;
}
.contact_table th{
	font-size:17px;
	font-weight:500;
}


.contact_table button{
	margin-top:20px;
	padding:10px 50px;
	text-align:center;
	font-size:20px;
	font-weight:500;
	border:1px solid #ddd;
	color:#555;
	background:none;
}

.contact_table button:hover{
	transition:0.5s;
	background:#1e58c9;
	color:#fff;
	border:1px solid #1e58c9;
}


footer {
	background-color: #222;
	clear: both;
	color:#fff;
}

footer.shorthtml-footer {
  position: absolute;
  width: 100%;
  left: 0;
  top: 1000px;
}


.footer-wrapper {
	padding-top: 40px;
	padding-bottom: 80px ;
	margin: 0 auto;
}

footer .footer-left {
	float: left;
	display: inline-block;
	width: 75%;
}

footer .footer-left ul {
  list-style: none;
  padding: 0;
}

footer .footer-left ul li {
  display: inline-block;
  margin-right: 23px;
}

footer .footer-left ul li>a {
  color: inherit;
  text-decoration: none;
}

footer .footer-left .info {
    display: inline-block;
	width: 942px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.86;
    letter-spacing: -0.45px;
    text-align: left;
    color: #888888;
    margin-top: 32px;

}

footer .footer-left .info>span {
  font-size: 15px;
  font-weight: normal;
}

footer .footer-left .copyright {
  font-size: 13px;
  margin-top:15px;
}

footer .footer-right {
	text-align: right;
	display: inline-block;
	width: 25%;
}

footer .footer-right .tel {
  font-size: 24px;
  color: #fff;
  margin-top: 7px;
  margin-bottom: 15px;
}

footer .footer-right .fax{
	font-size: 20px;
  color: #ddd;
  margin-top: 3px;
  margin-bottom: 15px;
}

footer .footer-right .info {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: right;
  color: #888888;
}

footer .footer-right .app-group {
  margin-top: 28px;
}

footer .footer-right .app-group a {
  display: inline-block;
  margin-left: 10px;
  font-size:13px;
}



@media screen and (max-width: 1200px) {
	.logo{
		display:none;
	}
	.header .top_menu .menu ul{
		justify-content: space-around;
	}

	.header .top_menu .w80{
		width:100%;
	}
	.rightmenu ul{
		width:100%;
	}
	.coltarea{
		width:900px;
		overflow:hidden;
	}

	.cont2 .info_list .info_box{
		padding: 20px 8px;
	}

	.cont2 .info_box li {
		margin: 0 8px 8px 8px;
	}

	.cont3 .info_list ul li{
		margin:8px;
	}

	.cont4_box .tit, .cont4_box .cont{
		min-width:180px;
		max-width:180px;
	}

	.cont4_box .cont{
		font-size:13px;
		min-height:150px;
	}

	.cont5 .btn_list{
		width:350px;
		padding: 23px 20px;

	}

	.cont5 .btn_list span{
		font-size:20px;
	}
	.cont5 .btn_list p{
		font-size:25px;
	}
}


@media screen and (max-width: 900px) {
	.pc{display:none !important;}
	.mobile{display:block;}

	.header{
		display:none;
	}
	.coltarea{
		width: calc(100% - 32px);
		margin: 0 16px;
		overflow: hidden;
	}

	.coltarea .tit{
		margin-bottom:16px;
	}

	.coltarea .tit p{
		font-size:30px;
	}

	.coltarea .tit span{
		font-size:20px;
	}
	.cont1{
		background: url(../../images/cont1_bg_mo.jpg) #fff;
		background-size:cover;
	
	}
	.cont1, .titarea{
		height:100vh;
	}

	.cont1 .txt{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align:center;
		font-weight:400;
	}

	.cont1 .txt p,
	.cont1 .txt p strong{
		font-size:30px;
		letter-spacing: -3.5px;
	}

	.cont1 .txt span{
		font-size:20px;
	}

	.cont1 .txt button {
		font-weight:400;
		font-size:20px;
		margin:0 auto;
		padding:10px 50px 10px 20px;
	}

	.cont2{
		padding:50px 0;
		box-sizing:border-box;
	}

	.cont2 .info_list{
		display:inline-block;
	}

	.cont2 .info_list .info_box{
		float: left;
		width: 48%;
		margin:1%;
		box-shadow:0 2px 5px #bec8d8;
	}

	.cont2 .info_list .info_box:first-child,
	.cont2 .info_list .info_box:last-child{
		margin: 1%
	}
	.cont2 .info_box li{
		width:100%;
		padding:0;
		margin:8px 0;
		font-size: 14px;
		text-align:center;
	}
	.cont2 .info_box li:after{
		display:none;
	}


	.cont3{
		padding:50px 0;
	}
	.cont3 .tit{
		margin-bottom:30px;
	}

	.cont3 .info_list ul{
		width: 100%;
		text-align:center;
	}

	.cont3 .info_list ul li{
		font-size: 20px;
		width: 31.33%;
		height: 150px;
		/* display: block; */
		margin: 0 auto 8px;
		border-radius: 0;
		border:1px solid #fff;
		border-radius:10px;
		margin: 1%;
	}

	.cont3 .info_list ul li img{
		width: 65px;
	}
	.cont3 .info_list ul li strong{
		margin-top:8px;
	}
	.cont3 .info_list ul li:after{
		display:none;
	}
	.cont4{
		padding:50px 0;
	}

	.cont4 .coltarea{
		
	}

	.cont4 .flex_area{
		width: 1200px;
		
	}

	.mo_cont4_box{
		overflow-x:auto;
	}

	.cont4_box .tit p{
		font-size:15px;
	}

	.cont4_box .tit, .cont4_box .cont{
		min-width:100%;
		max-width:100%;
	}
	.cont5{
		padding:50px 0;
	}
	.cont5 .flex_area{
		display:inline-block;
		width: 100%;
	}

	.cont5 .flex_area .box{
		width:100%;
	}
	.cont5 .flex_area .box:last-child{
		display:none;
	}

	.cont5 .btn_list{
		width:100%;
	}

	.cont6{
		padding:50px 0;
		height:auto;
	}
	.cont6 .contact_table{
		padding:16px;
	}
	.cont6 .contact_table th,.cont6 .contact_table td{
		display:block;
		text-align: left;
	}

	.cont6 .contact_table th{
		padding:5px 0;
	}


	footer .footer-left, footer .footer-right{
		width:100%;
		text-align:left;
	}
	footer .footer-left .info{
		width:100%;
		margin-top:8px;
		font-size:13px;
	}

	footer .footer-left .copyright{
		display:none;
	}
	footer .footer-right .info{
		text-align:left;
	}
	
	footer .footer-right .tel{
		text-align:center;
		margin-top:16px;
	}
	footer .footer-right .info{
		display:none;
	}
	footer .footer-right .app-group{
		text-align:center;
		margin-top:8px;
	}
	.footer-wrapper{
		padding-bottom:50px;
	}

	.mobile_header{
		position: fixed;
		z-index:99;
		top:0;
		left:0;
		height:70px;
		line-height:70px;
		background:none;
		width:100%;
		box-shadow: 0 1px 5px #b9bdc7;
	}
	.mobile_header.white{
		background:#fff;
	}
	.mo-logo{
		float:left;
		color:#1e58c9;
		font-size:25px;
		font-weight:600;
		margin-left:16px;
	}
	.mo-gnb-open{
		float: right;
		box-sizing: border-box;
		height: 70px;
		width: 50px;
		text-align: right;
		padding-right: 16px;
		padding-top: 3px;
	}

	.mo-gnb-open .fa{
		color:#1e58c9;
		font-size:25px;
	}

	#mobile-gnb{
		display: block;
	}

	#mo-gnb{
		position: fixed;
		top: 0;
		right: -375px;
		width: 100%;
		max-width: 375px;
		height: 100%;
		overflow: auto;
		background-color: #fff;
		z-index: 9999;
		transition:all 0.5s ease;
		box-shadow: 1px 1px 3px #222;
	}

	#mo-gnb.active{
		right: 0px;
		transition:all 0.5s ease;
	}

	#mo-gnb .m_top{
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
		background: #fff;
		height: 95px;
		padding: 20px 15px 0 25px;
		margin-bottom: -30px;
	}

	#mo-gnb .m_top .logo{
		font-size: 25px;
		color: #333;
		font-weight: 800;
		letter-spacing: -1.5px;
		cursor: pointer;
		display: inline-block;
	}
	#mo-gnb .m_body{
		padding: 0 15px 15px
	}
	#mo-gnb .m_body .mobile-util {
		height: 60px;
		font-size: 0;
		text-align: right;
		background-color: #fff;
		margin-bottom: 10px;

	}
	#mo-gnb .m_body .mobile-util a {
		display: inline-block;
		font-size: 15px;
		height: 58px;
		line-height: 58px;
		position: relative;
		padding: 0 10px;
	}
	#mo-gnb .m_body .mobile-util a + a:before {
		display: block;
		content: '';
		width: 1px;
		height: 9px;
		background-color: #ddd;
		position: absolute;
		top: 50%;
		left: 0;
		margin-top: -4px;
	}

	#mo-gnb .m_body .m_nav {
		margin-bottom: 35px;

	}

	#mo-gnb .m_body .m_nav > li {
		background-color: #fff;
		position: relative;
		overflow: hidden;
	}

	#mo-gnb .m_body .m_nav > li > button {
		font-size: 15px;
		font-weight: 700;
		height: 55px;
		line-height: 55px;
		padding-left: 20px;
		width: 100%;
		text-align: left;
		border:none;
		background:none;
		position:relative;
	}

	#mo-gnb .m_top .mo-gnb-close {
		display: block;
		float: right;
		width: 39px;
		height: 30px;
		border: none;
		color: #333;
		font-size: 30px;
		background: none;
	}


}


.layer{
	display:none;
	width:100%;
	height:100%;
	position: fixed;
	top:0;
	left:0;
	z-index:1000;
}

.layer .bg{
	background:#fff;
	width: 100%;
    height: 100%;
	background: #000;
	opacity: .5;
	filter: alpha(opacity=50);
	z-index:1100;
}

.layer .cont{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	font-size:20px;
	background:#fff;
	z-index:5555;
    width: 50%;
	min-width:800px;
    height: 70%;
    min-height: 70%;
	max-height:70%;
	display:inline-block;
	box-sizing:border-box;
	padding:32px;
	overflow:hidden;
}


.cont .hd_tit{
	display:inline-block;
	width:100%;
	height:40px;
}
.cont .hd_tit .tit{
    float: left;
    font-weight: 500;
    font-size: 23px;
}

.cont .hd_tit .close_btn{
	float: right;
    display: inline-block;
    font-size: 30px;
    color: #1e58c9;
    line-height: 25px;
}
.cont .hd_tit .close_btn:hover {
	color: #1e58c9;
}

.layer_cont_box{
	height: calc(100% - 50px);
    overflow-y: auto;
	margin-top: 10px;
}


.layer_cont table{
	width:100%;
	border-top:3px solid #1e58c9;
}
.layer_cont table th{
	font-size:15px;
	padding:12px 0;
	background:#ecf1f9;
}
.layer_cont table td{
	font-size:16px;
	text-align:center;
	padding:10px 0;
	border-bottom:1px solid #ecf1f9;
	cursor:pointer;
}

.layer_cont table tbody tr:hover{
	background:#f9fbff;
}

.page_area{
	display: inline-block;
    width: 100%;
	margin-top:32px;
    text-align: center;
}
.page_area span{
	margin:0 8px;
	cursor:pointer;
	color:#888;
	font-size:18px;
}

.page_area span.on{
	color:#1e58c9;
	font-weight:500;
}


.list_board li{
	position:relative;
	background:#fff;
	border-bottom:1px solid #eee;
	padding: 16px;
	border-top:3px solid #1e58c9;
	margin-bottom:8px;
}

.list_board li .top{
	color:#555;
	font-size:13px;
}
.list_board li .tit{
	margin:8px 0;
	font-size:18px;
	font-weight:500;
}

.list_board li .tit p{
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.list_board li .bot{
	color:#555;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list_board li .bot span{
	font-size: 15px;
	letter-spacing:-1px;
	font-weight: 300;
	padding-right:8px;
	margin-right: 4px;
	position: relative;
}

.list_board li .bot span:before {
	display: block;
	content: '';
	width: 1px;
	height: 9px;
	background-color: #ddd;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -4px;
}

.list_board li .bot span:last-child:before {
	display: none;
}



.view_board{
	background:#fff;
	border-top:2px solid #3168dc;
	border-bottom:1px solid #eee;
	padding: 16px;
	margin-top:8px;
}

.view_board .top{
	border-bottom:1px solid #eee;
	padding-bottom:16px;
}

.view_board .top .tit{
	font-size:18px;
	font-weight:500;
	margin: 8px 0;
}

.view_board .top span{
	font-size: 15px;
	letter-spacing:-1px;
	font-weight: 300;
	padding-right:8px;
	margin-right: 8px;
	position: relative;
}

.view_board .top span:before {
	display: block;
	content: '';
	width: 1px;
	height: 9px;
	background-color: #ddd;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -4px;
}

.view_board .top span:last-child:before {
	display: none;
}


.view_board .cont_txt{
	margin:16px 0;
	font-size:15px;
}

.view_board_btn{
	text-align:center;
	margin:16px 0;
}

.view_board_btn a{
	margin:8px;
}

.view_board_btn .btn_list{
	background:#3168dc;
	height:50px;
	width:50px;
	line-height:50px;
	display:inline-block;
	color:#fff;
	border-radius:100%;
	font-size:20px;
}

.book_info{
	background: #fff;
    box-shadow: 1px 1px 3px #cccfd4;
    border-radius: 3px;
    border-left: 8px solid #3168dc;
    margin-bottom: 16px;
    padding: 16px;
}
.book_info.finn{
    border-left: 8px solid #e6b516;
}

.book_info.cancel{
    border-left: 8px solid #bbb;
}

.book_info .tit{
	font-size:20px;
	font-weight:500;
	margin-bottom:15px;
}

.book_info li{
	margin:3px 0;
	font-size:15px;
/*	font-weight:600;*/
}

.book_info li span{
	font-weight:500;
	padding-left:8px;
}

.book_info .btn_area{
	display:inline-block;
	width:100%;
	text-align:right;
	margin: 8px 0 0 0;

}

.view_board_btn .btn_list {
    background: #3168dc;
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: inline-block;
    color: #fff;
    border-radius: 100%;
    font-size: 20px;
}

@media screen and (max-width: 1200px) {
	.layer .cont{
		width:calc(100% - 32px);
		min-width:unset;
		height:calc(100% - 32px);
		max-height:calc(100% - 32px);
		padding:32px 16px;
	}
}