@charset "utf-8";

/* Font */
@import url(font.css);

/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,textarea,p,blockquote,th,td,input,select,textarea,button{margin:0; padding:0;}
	body,th,td,input,select,textarea,button{font-family:'Nanum Gothic','Malgun Gothic', sans-serif;  font-size:15px; color:#555;}
	dl,ul,ol,menu,li {list-style:none;}
	*, *:before, *:after{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}
	:focus{outline:0 !important;}
	iframe{border:none; width:100%;}
	a{color:inherit; -webkit-transition:all .2s ease-out; -moz-transition:all .2s ease-out; transition:all .2s ease-out; display:block;}
	img{max-width:100%;}
	textarea{max-width:100%; resize:none;}
	a:focus, a:hover{text-decoration:none;color: inherit;}
	@media only screen and (min-width: 320px){
		body{overflow-x:hidden;}
	}
	select { appearance: none; -webkit-appearance: none; background:transparent url(/res/home/images/arrow-gray.png) no-repeat 93% center; border: 0;    font-size: 13px;}
	select::-ms-expand { display:none; }
	button{appearance: none; -webkit-appearance: none;border:0;    background: transparent;}
	.hidden{font-size:0; line-height:0; text-indent:-9999em; overflow:hidden;}
	i{font-style:normal}
	table{width:100%; border:0;border-spacing: 0;    border-collapse: collapse;}


/* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	.parallax{background-position:0 0; background-repeat:no-repeat; background-size:100% auto; width:100%; background-size:cover; background-attachment:fixed;}


/* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	.animationload{position: fixed; top:0; left:0; right:0; bottom:0; background-color:#fff; z-index:999999;}
	.loader {width:200px; height:200px; font-size: 24px; text-align: center; position:absolute; left:50%; top:50%; background-image:url(/res/home/images/basic_resp/img/preloader.gif); background-repeat:no-repeat; background-position:center; margin:-100px 0 0 -100px;}


/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	.back-to-top{width:40px; height:40px; position:fixed; bottom:10px; right:20px; display:none; text-align: center; z-index: 10000; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius:50%; background:#064989;}
	.back-to-top i{color: #fff; font-size: 15px; display: block; line-height: 33px;}


/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	#wrapper{position:relative; width:100%; min-width:320px; height:100%;}
	.inner{ margin:0 auto; width:1200px}
	.inner_top{margin: 0 auto; max-width: 1200px; width: 100% }

/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

	#header{
		z-index: 666;
		width: 100%;
		background:url(/res/home/images/top_bg.jpg) #064989;
		height: 219px;
		/*border-top: 5px solid #064989;*/
		
		box-sizing:border-box;
		position: fixed;
	}
	#header:after{
		content:'';
		display:block;
		clear:both;
	}

	#L_SITE_LOGO h1{
		/*float: left;*/
		/*height: 120px;*/
		line-height: 95px;
		position: absolute;
		top:-10px; left: 0;
	}

.top_txt_area{ width: 100%; position: relative; margin: 40px 0}
.top_txt_area p{ padding: 0; margin: 0; white-space: inherit; color: #fff; text-align: center; line-height: 150%}
.top_txt_area .top_txt1{ font-size: 20px}
.top_txt_area .top_txt2{ font-size: 35px; font-weight: 600}

	#header .inner{position:relative; position: relative}

	.nav-btn{
		z-index: 999999999;
		top:15px;
		right: 50%;
		margin-right:-625px; 
		width: 25px;
		height: 22px;
		cursor: pointer;
		float: right;
		position: relative;
		/*line-height: 100px;*/
		display: inline-block;
	}
	.nav-btn span{
		position: absolute;
		left: 0;
		display: inline-block;
		width: 25px;
		height: 2px;
		background: #333;
		-webkit-transition: all .3s ease-out;
		-moz-transition: all .3s ease-out;
		transition: all .3s ease-out;
	}
	.nav-btn span:nth-child(1){top:0;}
	.nav-btn span:nth-child(2){top: 10px;    width: 20px;}
	.nav-btn span:nth-child(3){bottom:0px;}

	.nav-btn.nav-close span:nth-child(1){top:50%; transform:rotate(45deg);}
	.nav-btn.nav-close span:nth-child(2){margin-left:0; width:0;}
	.nav-btn.nav-close span:nth-child(3){top:50%; transform:rotate(-45deg);}

	.nav-bg{
		z-index: 999999;
		display: none;
		position: absolute;
		top: 158px;
		left: -500%;
		width: 1000%;
		height: 330px;
		background: #fff;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		box-shadow: 5px 5px 5px #eee;
	}

/*util*/
.util-menu{
	position: absolute;
    right: 0;
    top: 6px;
    line-height: 1.5;
	z-index:1
}
.util-menu ul:after{
	clear:both;
	display:block;
	content:'';
}
.util-menu ul li{
    float: left;
    padding: 0 10px;
    position: relative;
}
.util-menu ul li:after{
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #dbdbdb;
    position: absolute;
    top: 5px;
    right: 0;
}
.util-menu ul li:last-child{padding-right:0}
.util-menu ul li:last-child:after{
	display:none;
}
.util-menu ul li a{
	font-size: 12px;
	color: #fff;
}
.util-menu ul li.on a{
    color: #ff8a19;
    font-weight: bold;
}
.util-menu ul li:last-child a{
    color: #fff;
    background: #002c7c;
    padding: 0 10px;
}	



.m-util-menu{
    display: block;
    padding-top: 80px;
}

.m-util-menu:after{
	clear:both;
	display:block;
	content:'';
}
.m-util-menu li{
    position: relative;
    text-align: center;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    width: 100%;
}
.m-util-menu li:first-child{
	border-top: 1px solid #ddd;
}



.m-util-menu li a{
    font-size: 13px;
    color: #999;
    height: 37px;
    line-height: 37px;
}
.m-util-menu li.on a{
    color: #064989;
    font-weight: bold;
}
.m-util-menu li:last-child a{
    color: #fff;
    background: #002c7c;
}



@media only screen and (min-width: 1201px){
	.m-util-menu{display:none}
	.navigation{margin-top:-5px; padding:0;  width: 1200px; position: relative;z-index: 9999999; position: absolute;  left: 50%; margin-left: -600px; }
	#nav{ max-width: 100%; }
	
	.navigation:after{content:""; display:block; clear:both;border-bottom: 1px solid #eee;}
	.navigation > li{
		position: relative;
		float: left;
		text-align: center;
		width: calc(16%)/*130px*/;
	}
	/*.navigation > li:nth-child(1){width:150px;}
	.navigation > li:nth-child(2){width:170px;}
	.navigation > li:nth-child(3){width:170px;}*/
	.navigation > li:nth-child(1){margin-left: 22px}
	.navigation > li:last-child{
		padding-right:0;
	}
	.navigation .main-menu{
		display: block;
		font-size: 19px;
		color: #000;
		line-height:60px;
	}

	.navigation .sub-menu{ 
		z-index: 999;
		position: absolute;
		top: 60px;
		left: 0px;
		padding: 30px 0px;
		width: 100%;
		height: 270px;
		display: none;
		overflow: hidden;
	}
	.navigation .sub-menu a{display:block; text-align:center; line-height:35px; letter-spacing:-1px; font-size:15px; color:#7a7d83;}
	.navigation .sub-menu .intro-menu{display:none;}
	
	.navigation > li:hover .sub-menu{border-top: 3px solid #064989; box-sizing:border-box;}
	/* .navigation > li:hover .sub-menu a{color:#fff;} */
	.navigation .sub-menu a:hover{background:#064989; color:#fff}
}
@media only screen and (max-width: 1200px){
	.inner{width:100%}
	.util-menu{display:none}
	.top_txt_area{display:none}
	#header > div{padding:0 20px;}
	#header{
	    z-index: 666;
		width: 100%;
		height: 65px;
		background: #064989;
		line-height: 65px;
		border: 0;
	}
	#header > div{padding:0;}

	#header h1{
	    float: left;
		padding: 10px 20px;
		height: 65px;
		line-height: initial;
	}
	#header h1 a{display:block;}
	#header h1 img{
	    width: auto;
		max-height: 40px;
		vertical-align: top;
		margin: 10px 0 0 0;
	}

	.nav-btn{z-index:999; display:block; position:absolute; top:20px; right:20px; width:30px; height:23px; cursor:pointer; margin-right: inherit}
	.nav-btn span{position:absolute; left:50%; display:block; margin-left:-15px; width:30px; height:2px; background:#fff; transition:.2s all linear;}
	.nav-btn span:nth-child(1){top: 0px; }
	.nav-btn span:nth-child(2){top:10px;width: 22px;}
	.nav-btn span:nth-child(3){top:20px;}
	
	.nav-btn.nav-close{position:fixed; left:20px}
	.nav-btn.nav-close span{background:#fff}
	.nav-btn.nav-close span:nth-child(1){top:50%; transform:rotate(45deg);}
	.nav-btn.nav-close span:nth-child(2){margin-left:0; width:0;}
	.nav-btn.nav-close span:nth-child(3){top:50%; transform:rotate(-45deg);}

	.nav-bg{z-index:777; display:none; position:fixed; top:0; width:100%; height:100%; background:rgba(0,0,0,0.7);left:0}
	#nav{z-index:888; position:fixed; right:-300px; display:block; width:300px; height:100%; background:#fff;}
	.navigation{padding-top:15px}
	.navigation .main-menu{display:block; padding:0 30px; width:100%; line-height:43px; font-weight:400; font-size:16px; color:#000; transition:none;}
	.navigation li.active .main-menu{background:#064989; color:#fff;}

	.navigation .sub-menu{display:none; padding:10px 0; background:#f1f1f1;}
	.navigation .sub-menu a{display:block; padding:0 30px; line-height:33px; font-size:14px; color:#555;}
	.navigation .sub-menu a:before{content:""; display:inline-block; margin:0 5px 0 0; width:4px; height:1px; vertical-align:middle; background:#888;}
	.navigation .sub-menu a:hover{color:#fff; background:#3a3533;}
	.navigation .sub-menu a:hover:before{background:#fff;}
}
@media only screen and (max-width: 980px){

	
}
@media only screen and (max-width: 768px){
	#header h1{padding:10px;}
	.nav-btn{right:10px;}
	.nav-btn.nav-close{left:10px}
}


/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	.btn{text-transform:uppercase; border-radius:0; line-height:24px;}
	.btn:focus, .btn:active{outline:none; color:#fff;}

	.btn-custom{border-radius:3px; padding:0.8em 1.8em; -webkit-transition:all .2s ease-out; -moz-transition:all .2s ease-out; transition:all .2s ease-out; text-transform:uppercase; background-color:#509591; border-color: #509591; color:#fff;}
	.btn-custom:hover, .btn-custom:focus{background-color: #447774; border-color: #447774; color:#fff;}

	.btn-custom-outline{border-radius:3px; padding:0.8em 1.8em; color:#fff; -webkit-transition:all .2s ease-out; transition:all .2s ease-out; text-transform:uppercase; background-color:transparent; border-color:#fff;}
	.btn-custom-outline:hover, .btn-custom-outline:focus{color:#fff; background-color:rgba(255,255,255,.5);}
	.btn-bar a{margin-right:10px;}

	.form-control{box-shadow:none; -webkit-box-shadow:none; border-radius:3px; height:38px;}
	.form-control:focus{outline:none; box-shadow:none; -webkit-box-shadow:none; border-color: #509591;}

	@media only screen and (max-width: 980px) {

	}


/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer{padding:50px 0px; width:100%; background:#333; color:#888;}
.footer-area{margin:0 auto; width:100%; box-sizing:border-box;position: relative;}
.footer-area:after{content:""; display:block; clear:both;}
#footer p, #footer li{
	font-size: 14px;
    letter-spacing: 0;
    line-height: 27px;
}

.foot-logo{float:left; margin-right: 50px;}
.foot-info{float:left; width:calc(100% - 245px);}

.footer-menu{margin:0 auto 15px; line-height:0; font-size:0;}
.footer-menu li{display:inline-block; margin-left:10px;	padding-left:10px; vertical-align:middle; line-height:10px; border-left:1px solid #9c9a9a; color:#fff;}
.footer-menu li:first-child{margin-left:0; padding-left:0; border-left:0;}
.footer-menu li a{line-height:10px; font-size:14px; color:#fff;}

.footer-info{margin-bottom:10px;}
.footer-info span{color:#888;}
.footer-info a{display:inline-block;}

.sns-area{
    position: absolute;
    right: 0;
    top: -25px;
}
.sns-area ul{display:inline-block;}
.sns-area ul:after{
	content:'';
	display:block;
	clear:both;
}
.sns-area ul li{
	float:left;
	margin-right:10px;
}
.sns-area ul li:last-child{margin-right:0}

@media only screen and (min-width: 1201px){
	.footer-area{width:1200px;}
}
@media only screen and (max-width: 1200px){
	.footer-area{padding:0 20px;}
}
@media only screen and (max-width:768px){
	#footer {padding: 80px 0px 20px;}
	.footer-area{padding:0 10px; text-align:center;}

	.foot-logo{float:none; margin:0 0 20px 0;}
	.foot-info{float:none; width:100%;}

	.sns-area{
		    top: -45px;
			right: 50%;
			margin-right: -60px;
	}
}
@media only screen and (max-width:768px){
	#footer p, #footer li{font-size:12px;}
	.footer-menu li{margin-left:5px; padding-left:5px;}
	.footer-menu li a{font-size:13px;}
}



/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
	.carousel-inner > .item{height:492px;}
	.carousel-inner > .main-img01{background:url('/res/home/images/visual-2.png') no-repeat center center/cover;}
	.carousel-inner > .main-img02{background:url('/res/home/images/visual-2.png') no-repeat center center/cover;}
	.main-visual .carousel-caption{bottom:0px; left:0; right:0;-webkit-transform:translateY(-50%);- ms-transform:translateY(-50%); transform:translateY(-50%); margin:auto; width:100%; text-shadow:none; color:#fff; padding: 0}
	.main-visual .carousel-caption .slogan{
	    text-align: center;
		color: #fff;
	}
	.main-visual .carousel-caption .slogan .main-copy{margin-bottom:20px; font-size:68px; letter-spacing:-3px; line-height:1.1;}

	.main-visual .carousel-control{background:none; text-shadow:none; width:10%; text-indent:-9999em; overflow:hidden;}
	.main-visual .carousel-control, .main-visual .carousel-control:focus, .main-visual .carousel-control:hover{opacity:1;}
	.main-visual .carousel-control.left{background:url('/res/home/images/kor06r-18-0404/main/visual_btn_prev.png') no-repeat center center;}
	.main-visual .carousel-control.right{background:url('/res/home/images/kor06r-18-0404/main/visual_btn_next.png') no-repeat center center;}

	.main-visual .carousel-indicators{
		position: static;
		bottom: 0;
		left: 0;
		margin: 20px 0;
		padding: 0;
		width: 100%;
	}
	.main-visual .carousel-indicators li{width:58px; height:4px; box-sizing:border-box; vertical-align:middle;background:#fff; border-radius:0; border:0;}
	.main-visual .carousel-indicators .active{ background:#064989;}

	.main-visual .carousel-caption .slogan h5{
		font-size:37px;
	}
	.main-visual .carousel-caption .slogan h2{
		font-size: 100px;
		font-weight: bold;
		letter-spacing: 3px;
	}
	.main-visual .carousel-caption .slogan p{
		font-size:19px;
		opacity:0.8;
		font-weight: 100;
		letter-spacing: 1px;
	}

	@media only screen and (min-width: 1201px){
		.main-visual .carousel-caption{width:100%;}
	}
	@media only screen and (max-width: 1200px){
		/* .main-visual .carousel-caption .slogan{margin-left:12%;} */
	}
	@media screen and (max-width:980px){
		.carousel-inner > .item{height:600px;}
		/* .main-visual .carousel-caption .slogan{padding:35px 25px; width:388px; font-size:15px;}
		.main-visual .carousel-caption .slogan .main-copy{margin-bottom:10px; font-size:50px;} */
	}
	@media screen and (max-width:768px){
		.carousel-inner > .item{height:350px;}
		.carousel-inner > .main-img01,
		.carousel-inner > .main-img02{background-position:55% center;}

		.main-visual .carousel-control.left,
		.main-visual .carousel-control.right{background-size:20px;}
		
		.main-visual .carousel-caption .slogan h5{font-size: 23px;}
		.main-visual .carousel-caption .slogan h2{font-size: 57px;}
		.main-visual .carousel-caption .slogan p{font-size: 16px;}
		.main-visual .carousel-indicators{margin: 10px 0;}
		/* .main-visual .carousel-caption .slogan{padding:20px; width:230px; font-size:13px;}
		.main-visual .carousel-caption .slogan .main-copy{font-size:35px;} */
	}


/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#mainContainer{z-index:555; position: relative; padding-top: 200px; }

@media only screen and (min-width: 1201px){
	#mainContainer{}
}



.main-cont-area{background:#f5f5f5}
.main-cont-wrap{
    padding: 70px 0;
    margin: 0 auto;
    width: 1200px;
}
.main-cont-wrap:after{
	content:'';
	display:block;
	clear:both;
}
.main-cont-wrap>div{
	width: calc(100%/2 - 10px);
	float:left;
}
.main-cont-wrap h3{
	font-size: 23px;
    font-weight: 600;
    color: #111;
    letter-spacing: -.5px;
    margin-bottom: 20px;
	position: relative;
}

.main-cont-left{margin-right:20px}

.calendern-area {position: relative; /*min-height: 494px; max-height: 494px;9*/}
.cal-date-wrap {min-height: 300px;}

.calendern-area{
	/*background:#fff;
	padding:25px 35px;
	border:1px solid #d2d2d2;*/
	box-sizing:border-box;
	
}

.notice-area,
.news-area{
	background:#fff;
	padding:25px 35px;
	border:1px solid #d2d2d2;
	box-sizing:border-box;
	
}
.notice-area,
.news-area{min-height: 237px;}

.notice-area{margin-bottom:20px}

.main-center{margin:20px -10px;}
.main-center:after{content:""; display:block; clear:both;}
.main-center > div{position:relative; float:left; margin:0 10px; padding:30px 25px; height:286px; background:#f9f9f9; border:1px solid #c5c5c5;}
.webgine-box{width:calc(50% - 20px);}
.notice-box{width:calc(25% - 20px);}
.notice-box .more-btn{position:absolute; top:25px; right:20px;}
.affilates-box{width:calc(25% - 20px);}


.quick-bnr-area{padding:50px 0 ; margin:0 auto; width:1200px;}
.quick-bnr-area ul:after{
	content:'';
	display:block;
	clear:both;
}	
.quick-bnr-area ul li{
    float: left;
    text-align: center;
    /*border-right: 1px solid #ddd;*/
    padding: 0px 20px;
    box-sizing: border-box;
	width: calc(100% / 6);
}
.quick-bnr-area ul li h3{
	font-size: 20px;
    color: #000;
    margin: 27px 0 7px;
    font-weight: 600;
    letter-spacing: -1px;
}
.quick-bnr-area ul li p{
	font-size: 12px;
    color: #666;
}
.quick-bnr-area ul li span{
	border-radius:50%;
	width:130px;
	height:130px;
	line-height:130px;
	display:inline-block;
	background: #eae8e5;
    border: 1px solid #cccbc9;
    box-sizing: border-box;
	position: relative;
    border-radius: 50%;
    overflow: hidden;
	z-index:-2;
	transition:.4s
	
}
.quick-bnr-area ul li:nth-child(1){
    padding-left: 0;
}
.quick-bnr-area ul li:nth-child(6){
	border-right: 0;
    padding-right: 0;
}
/* .quick-bnr-area ul li:nth-child(1) span{background:#9fd3e2}
.quick-bnr-area ul li:nth-child(2) span{background:#51abd1}
.quick-bnr-area ul li:nth-child(3) span{background:#0e569b}
.quick-bnr-area ul li:nth-child(4) span{background:#1d3f5f} */

/*.quick-bnr-area ul li a{
    border: 1px solid #c8c8c8;
    border-radius: 50px;
    height: 37px;
    line-height: 34px;
    box-sizing: border-box;
    font-size: 15px;
    color: #ccc;
    letter-spacing: .5px;
	position:relative;
	overflow:hidden;
	margin: 20px auto 0;
}
.quick-bnr-area ul li a:after{
	background: url(/images/arrow-half.png) no-repeat;
    content: '';
    display: inline-block;
    width: 15px;
    height: 7px;
    margin: 0px 0 3px 10px;
}

 .quick-bnr-area ul li a:before{
	content: '';
    background: #f3f3f3;
    width: 0;
    height:100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
	transition: all 0.5s ease;
	z-index: -1;
}
.quick-bnr-area ul li a:hover:before{
	width:100%;
} */
.quick-bnr-area ul li a i{
    border: 1px solid #c8c8c8;
    border-radius: 50px;
    height: 35px;
    line-height: 33px;
    box-sizing: border-box;
    font-size: 13px;
    color: #ccc;
    letter-spacing: .5px;
	position:relative;
	overflow:hidden;
	margin: 20px auto 0;
	display:block;
	transition:.4s
}
.quick-bnr-area ul li a i:after{
	background: url(/res/home/images/arrow-half.png) no-repeat;
    content: '';
    display: inline-block;
    width: 15px;
    height: 7px;
    margin: 0px 0 3px 10px;
}
.quick-bnr-area ul li a:hover i{background: #333;    color: #fff;}
.quick-bnr-area ul li a:hover span{background:#064989}
/* .quick-bnr-area ul li a span:before{
	* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#063189+0,009dd7+100
	background: #063189; Old browsers
	background: -moz-linear-gradient(-45deg, #063189 0%, #009dd7 100%); FF3.6-15
	background: -webkit-linear-gradient(-45deg, #063189 0%,#009dd7 100%); Chrome10-25,Safari5.1-6
	background: linear-gradient(135deg, #063189 0%,#009dd7 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#063189', endColorstr='#009dd7',GradientType=1 ); IE6-9 fallback on horizontal gradient
	content: '';
    width: 0;
    height:100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
	transition: all 0.5s ease;
	z-index: -1;
}
.quick-bnr-area ul li a:hover span:before{
	width:100%
} */
.more-btn{
	font-size: 11px;
    color: #999;
    position: absolute;
    right: 0;
    top: 5px;
    font-weight: 400;
    border-bottom: 1px solid #ccc;
}
.more-btn b{
	color: #064989;
    font-size: 16px;
    vertical-align: -2px;
    font-weight: bold;
}

/* 메인 달력 */

.cal-date-wrap>ul:after{
	content:'';
	display:block;
	clear:both;
}
.cal-date-wrap>ul>li{
    float: left;
    width: calc(100%/7);

}
.cal-date-wrap>ul>li,
.cal-date-wrap>ul>li>a{
    text-align: center;
    font-size: 16px;
    color: #555;
    font-weight: 600;
}
.cal-weekday li{text-align:center}


.cal-date-wrap>ul .sunday,
.cal-date-wrap>ul .holiday{color:#ff5c5d}
.cal-date-wrap>ul .saturday{color:#3c88fa}
.cal-date-wrap>ul .other-date{color:#ccc }

.cal-date li{
    margin: 5px 0;
    position: relative;
}
.cal-date li a{
	width: 26px;
    line-height: 26px;
	margin:0 auto;
}
.has a{
    border-radius: 50%;
    background: #eae8e5;
}


.cal-date-wrap h1{
    position: relative;
	text-align: center;
    line-height: 1;
    margin-bottom: 20px;
}
.cal-date-wrap h1 a{
    background: url(/res/home/images/cal-arrow.png) no-repeat center/12px 19px;
    width: 40px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    line-height: 45px;
}
.cal-date-wrap h1 .last-month{transform: rotate(180deg);}
.cal-date-wrap h1 span{
    display: inline-block;
    vertical-align: bottom;
    font-size: 35px;
    font-weight: 500;
    color: #ff5c5d;
    margin: 0 25px;
    line-height: 45px;
}

.cal-year {
    position: absolute; 
    top: 12px; 
    left: 2%;
    margin: 0; 
    font-size: 16px; 
    font-weight: bold; 
    line-height: 20px; 
    color: #848484; 
    border-bottom: 1px solid #e1e1e1;
}

.cal-schedule-wrap{
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    background: #ebe9e6;
    padding: 20px 20px 20px 0;
    margin-top: 15px;
    min-height: 125px;
}

.cal-schedule-wrap dl:after{
	clear:both;
	content:'';
	display:block;
}
.cal-schedule-wrap dt{
	float: left;
    width: 110px;
    text-align: center;
    font-size: 30px;
    color: #333;
    border-right: 1px solid #ccc;
    margin-right: 25px;
    line-height: 85px;
    box-sizing: border-box;
}
.cal-schedule-wrap dd{
    overflow: hidden;
    margin-left: 135px;
    font-size: 13px;
    line-height: 20px;
}
.cal-schedule-wrap dd ul li{
	position: relative;
    padding-left: 12px;
	margin-bottom: 3px;
}
.cal-schedule-wrap dd ul li:before{
    content: '';
    display: inline-block;
    background: #111;
    width: 3px;
    height: 3px;
    vertical-align: middle;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}
.cal-schedule-wrap .more-btn{
	right: 20px;
    top: 10px;
}




@media only screen and (max-width: 1200px){
	#mainContainer{padding:80px 0px 0px; width:100%;}

	.main-top ul, .main-bottom ul{margin:0 -5px;}
	.main-top li, .main-bottom li{margin:0 5px; width:calc(25% - 10px);}

	.main-center{margin:10px -5px;}
	.main-center > div{margin:0 5px;}
	.webgine-box{width:calc(50% - 10px);}
	.notice-box{width:calc(25% - 10px);}
	.affilates-box{width:calc(25% - 10px);}

	.quick-bnr-area {
		padding: 0 20px;
		margin: 0 auto;
		width: auto;
	}
	.quick-bnr-area ul li {
		padding: 3% 2%;
		width: calc(33%);
		margin-bottom: 50px;
	}
	
	.quick-bnr-area ul li h3{font-size: 19px;}

	.main-cont-wrap{width:100%;    padding: 70px 20px;}
	
	

}
@media only screen and (max-width: 980px){
	#mainContainer{padding:100px 0px 0px;}
	.main-top ul, .main-bottom ul{margin:-10px;}
	.main-top li, .main-bottom li{margin:10px; width:calc(50% - 20px);}

	.main-center{margin:20px -10px;}
	.main-center > div{margin:0 10px;}
	.webgine-box{margin-bottom:20px !important; width:calc(100% - 20px);}
	.notice-box{width:calc(50% - 20px);}
	.affilates-box{width:calc(50% - 20px);}

	.quick-bnr-area ul li p{font-size: 13px;}
	.quick-bnr-area ul li a{  font-size: 13px;margin:0 auto}
	.quick-bnr-area ul li {
		padding: 0;
		width: calc(100%/2);
		border: 0;
	}
	.quick-bnr-area ul li a i{
	    width: 70%;
		height: 32px;
		line-height: 30px;
		font-size: 13px;
	}
	
	
}

@media only screen and (max-width: 880px){
	.main-cont-wrap>div{width: 100%;}
	.main-cont-right{margin-top: 20px;}
	.main-cont-left {margin-right: 0;}
	.calendern-area, .notice-area, .news-area{
		width: calc(100%/2 - 10px);
		float: left;
	}
	.notice-area {
		margin-bottom: 0;
		margin-right: 20px;
	}
	
		
}

@media only screen and (max-width: 768px){
	#mainContainer{ width:100%;}

	.main-top ul, .main-bottom ul{margin:-5px;}
	.main-top li, .main-bottom li{margin:5px; width:calc(50% - 10px);}

	.main-center{margin:10px -5px;}
	.main-center > div{margin:0 5px;}
	.webgine-box{margin-bottom:10px !important; width:calc(100% - 10px); height:468px !important;}
	.notice-box{width:calc(50% - 10px);}
	.affilates-box{width:calc(50% - 10px);}

	.notice-area {
		margin-bottom: 20px;
		margin-right: 0;
	}
	
	.calendern-area, .notice-area, .news-area {
		width: 100%;
		float: none;
	}

}
@media only screen and (max-width: 480px){
	.main-top ul, .main-bottom ul{margin:0;}
	.main-top li{margin:10px 0 0 0; width:100%;}
	.main-bottom li{margin:10px 0 0 0; width:100%; border:1px solid #c5c5c5; border-top:3px solid #ff4e00;}
	.main-top li:first-child, .main-bottom li:first-child{margin-top:0;}
	
	.main-center{margin:10px 0;}
	.main-center > div{margin:10px 0 0 0;}
	.main-center > div:first-child{margin-top:0;}
	.webgine-box{margin-bottom:0 !important; width:100%;}
	.notice-box{width:100%;}
	.affilates-box{width:100%;}

	.quick-bnr-area ul li span {
		width: 130px;
		height: 130px;
		line-height: 130px;
	}
	
	.cal-schedule-wrap dt {
		width: 90px;
		margin-right: 10px;
		font-size:23px
	}
	.cal-schedule-wrap dd {
		margin-left: 105px;
		font-size: 12px;
		line-height: 18px;
	}
	.cal-schedule-wrap .more-btn {
		right: 0;
		top: 0;
		text-indent: -9999px;
		border: 0;
		background: #bbb8b3;
		width: 25px;
		height: 25px;
		color: #fff;
	}
	.cal-schedule-wrap .more-btn:before,
	.cal-schedule-wrap .more-btn:after{
		content: '';
		display: inline-block;
		background: #fff;
		width: 14px;
		height: 1px;
		position: absolute;
		top: 12px;
		left: 6px;
	}
	
	.cal-schedule-wrap .more-btn:after{
		    transform: rotate(90deg);
	}
	/*.quick-bnr-area ul li:nth-child(1) span img{width: 70px;}
	.quick-bnr-area ul li:nth-child(2) span img{width: 100px;}
	.quick-bnr-area ul li:nth-child(3) span img{width: 85px;}
	.quick-bnr-area ul li:nth-child(4) span img{width: 65px;}*/

	.main-visual .carousel-caption .slogan h2{font-size:50px; letter-spacing:0}
	.main-visual .carousel-caption .slogan p{font-size:13px;}
	.main-visual .carousel-caption .slogan h5{font-size:21px;}

}






