@charset "utf-8";
/* CSS Document */


body {
	overflow-x: hidden;
	overflow-y: auto;
	font-family: 'Roboto', 'sans-serif';
	font-size: 16px;
}

#header{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 78px;
	box-shadow: 5px -9px 11px 10px #888888;
	z-index: 99999;
	background: white;
}

#header .nav{
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex: 1;
	order: 2;
}

#header .util{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   order: 3;
   width:250px;
   padding:10px 15px 10px 10px;
}

#header .util .mininav{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
}



#header .nav > li {
	width:23%;
	padding:0 15px;
	cursor: pointer;
	position: initial !important;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;

}


#header .nav > li:hover {
	border-top:2px solid #FF0000;
}

#header .nav > li:not(:first-child){
	border-left:1px solid #ddd;
}


#header .nav .subnav {
	display: none;
	position:absolute;
	left: 0;
	right: 0;
	top: 78px;
	width:100%;
	max-width: 100%;
	padding:30px;
	z-index:91;
	opacity:0;
	background-color: white;
	background: white;
	-webkit-box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.75);

}

#header .subnav > ul {
   float: left;
   width: 33%;
}


#header .subnav > ul > li {
	 padding-bottom: 10px;
 }
 #header .subnav > ul > li.mheader{
	 font-weight: bold !important;
	 border-bottom: 1px solid #ddd;
	 margin-bottom: 10px;
 }
 #header .subnav > ul > li.mheader *{
	font-weight: bold !important;
}


#mobile_menu{
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: none;
}

#mobile_nav_close{
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: block;
	float: right;

}
.close_icon{
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: block;
	float: right;	
}

.close_icon > .line{
	width: 30px;
	height: 2px;
	background-color: #333;
	margin: 9px 0;
	transition: 0.4s;

}

#mobile_menu > .line , #mobile_nav_close > .line{
	  width: 35px;
	  height: 5px;
	  background-color: #333;
	  margin: 6px 0;
	  transition: 0.4s;
 }

 #mobile_nav_close > .line:first-child, .close_icon > .line:first-child{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
  }
  
#mobile_nav_close > .line:last-child, .close_icon > .line:last-child{
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
  }


#header .nav li:hover .subnav {
	display:block;
	opacity:1;
}


/* Home body */

.body_container{
	display: flex;
	flex-direction: column;
    position: relative;
}

.body_container > .top_banner{
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin-bottom: 15px; */
}
.body_container > .top_banner > img{
	width: 100%;
	height: auto;
}

.body_container > .sided_banners{
	display: flex;
	flex-direction: row;
	padding: 0 15px 15px 15px;
	position: relative;

}

.body_container .slider_container{
    display: flex;
	flex-direction: column;
	flex: 4;
}

.body_container .nav_container{
    display: flex;
	flex: 1;
	flex-direction: column;
	background: #FF0000;
	padding: 10px;
	margin-right: 15px;
}

.body_container .nav_container .nav_inner{
    display: flex;
	flex: 1;
	flex-grow: 1;
	flex-direction: column;
	padding: 10px;
	cursor: pointer;
	margin-bottom: 10px;
	transition: all 0.6s, opacity 1s;
	-moz-transition: all 0.6s, opacity 1s;
	-webkit-transition: all 0.6s, opacity 1s;
	-o-transition: all 0.6s, opacity 1s;
}

.body_container .nav_container .nav_inner:not(:last-child){
	border-bottom: 1.5px solid #fff;
}

.body_container .nav_container .nav_inner .arrow_icon {
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #fff;
	transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
  }

.body_container .nav_container .nav_title{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.body_container .nav_container .nav_title .arrow_icon{
	margin: 10px 0 0 5px;
}

.body_container .nav_container .nav_title > span:first-child{
	font-size: 20px;
	font-weight: bold;
	color: white;

}


.body_container .nav_container .nav_value{
	display: none;
	flex-direction: column;
	
}

.body_container .nav_container .nav_value > span{
    display: block;
}
.body_container .nav_container .nav_value > span:first-child{
	font-size: 20px;
	font-weight: bold;
	color: black;
}

.body_container .slider_container .main_slider{
	margin-bottom: 15px;
 }

 .bottom_banner{
	display: flex;
	flex: 1;
    margin-top: 15px;
 }
.body_container img{
   width: 100%;
   height: auto;
}

.body_container .nav_container .nav_inner.is_open{
	background: #fff !important;

}
.body_container .nav_container .nav_inner.is_open * {
   color: #000 !important;
}

.body_container .nav_container .nav_inner.is_open .arrow_icon{
	color: #000 !important;
	border-top-color: #000 !important;
	transform: rotate(180deg);
 }

.main_divider{
	width: 100%;
	height: 2px;
	background: #FF0000;
}


#media{
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	margin: 15px 0;
	padding: 15px;
	flex-wrap: nowrap;

}

#media > a{
	width: 25%;
}

#media .mbox {
	float:left;
	height:170px;
	overflow:hidden;
	width: 100%;
}

.show_sm{
	display: none;
}




/*footer*/
	
#footer {
    width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 15px;
	row-gap: 10px;
	flex-wrap: wrap;
	background-color: #ddd;

}

#footer > .util{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

#footer > .notice, #footer > a{
	width:calc(50% - 10px);
}
#footer > .notice{
	display: flex;
	justify-content: flex-end;
	margin-right: 15px;
}

#footer > a{
	display: flex;
	justify-content: flex-start;
}



 @media screen and (min-width:1050px){
	#header > .nav{
		display: flex !important;
	}
}

@media screen and (max-width:1050px){

	#mobile_menu{
      display: block;
	}
	#header{
		position: relative;
		justify-content: space-between;

	}

	#header .boss{
		flex:1;
	}

	#header img{
		max-width: 110px;
		height: auto;
	}

	#header > .nav{
	   display: none;
       position: absolute;
	   left: 0;
	   right: 0;
	   top: 0;
	   background-color: #FF0000;
	   z-index: 999999;
	   height: 100vh;
	   width: 100vw;
	   overflow-x: hidden;
	   overflow-y: auto;
	   padding: 30px 20px 20px 20px;
	
	}
	 #header > .nav > li{
		 display: block;
		 border: none !important;
		 width: 100%;
		 padding: 10px 0 0 0;
		 height: auto;
		 font-size: 20px;
		 background-color: #ddd;
	}

	#mobile_nav_close + li{
		margin-top: 60px;
	}

	#header > .nav > li::before{
		content: "";
		display: inline-block;
		height: 0;
		width: 10px;
	}
	#header > .nav > li p{
		font-size: 18px;
	}

	#header > .nav > li > br, #header > .nav > li > .subnav > ul > li br{
     display: none;
	}

	#header > .nav > li > .subnav{
		display: block;
		position: relative;
		opacity: 1;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		top: 0;
		background-color: #FF0000;
		padding: 20px;
		margin-top: 10px;
		
	
	}

	#header > .nav > li > .subnav > ul > li *{
		color: white;
	}

	#header > .nav > li > .subnav > ul{
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}

	#header .subnav > ul > li{
		padding-bottom: 20px;
	}

	#header > .nav > li > .subnav > ul > li:not(.mheader){
		padding-left: 20px;
	}
}


@media screen and (max-width:1150px){
	.body_container > .sided_banners{
		flex-direction: column;
	}

	.body_container .slider_container{
		flex: 1;
		order: 1;
		margin-top: 15px;
	}

	.body_container .nav_container{
		flex: 1;
		order: 4;
		margin: 15px 0;
	}
	.ann_container{
		position: initial !important;
		display: flex !important;
		/* background-color:#fce4ec !important; */
		width: 100% !important;
		height: initial !important;
		max-width: 100% !important;
		max-height: initial !important;
		font-size: 14px;
		order: 3;
		margin-top: 15px;

	}
	.ann_container #ann_body{
		display: block !important;
	}
	.ann_container #close_ann, .ann_container #open_ann{
		display: none !important;
	}
	.bottom_banner{
		order:5;

	}
	.hide_sm{
		display: none;
	}

	.show_sm{
		display: flex;
	}

}


@media screen and (max-width: 850px) {

	#media{
		flex-wrap: wrap;
	}
	#media > a {
		width:48%;

	}
	#media .floater {
		top:110px;
	}
}

@media screen and (max-width: 620px) {

	#media > a {
		width:100%;
	}
	.main_slider .left .glyphicon{
		margin-left: -20px !important;
	}

	.main_slider .right .glyphicon{
		margin-right: -20px !important;
	}
}




  /* old code  */

/*general*/
#extras {display:none;}
.steer {display:none;}
div, li {
	transition: top 0.3s, opacity 1s;
	-moz-transition: top 0.3s, opacity 1s; /* Firefox 4 */
	-webkit-transition: top 0.3s, opacity 1s; /* Safari and Chrome */
	-o-transition: top 0.3s, opacity 1s; /* Opera */
}
html, body, ul, li, div, h1, h2, h3 {
	position:relative;
	display:block;
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	width:100%;
	list-style:none;
}


h1, h2, h3, p {
	margin:0px;
	padding:0px;
	opacity:1;
}
.thumb {
	position:absolute;
	top:0px;
	cursor:pointer;
}

.fill {
	height:100%;
	background-position:center;
	background-size:cover;
}
.floater {
	opacity:0.9;
	padding:10px;
	color:white;
	cursor:pointer;
}
.floater:hover {
	opacity:1;
}
/*header*/

/* #header {
	height:60px;
} */
#header .boss {
	float:left;
	width:200px;
	padding:10px;
	z-index:999;
}
#header .boss .icap-logo {
	text-align: top;
}

.steer {
	position:absolute;
	right:0px;
	top:-30px;
}
.steer img {
	float:right;
	display:block;
	padding-left:5px;
	opacity:0.7;
}
.steer img:hover {
	opacity:1;
}


/*media*/
	

#media h3 {
	height:30px;
	margin-top: 17px;
}
#media .slide {
	height:140px;
}
#media .thumb {
	height:260px;
}
#media .floater {
	height: 100px;
	background-color:#ED1C24;
}
#media a {
	color:white;
}


@media (min-width: 850px) {
/*header-pc*/
	


/*main-pc*/
#main {
	padding-top:10px;
}
/*media-pc*/
#media {
	height:170px;
}

#media .floater {
	top:160px;
}
#media .thumb:hover {
	top:-50px;
}
/*footer-pc*/

}

div#myCarousel2 p > a {
	color: #ff0000;
	text-decoration: underline;
}

/*Side announcemebt */

.side_ann_container{
  position: fixed;
  display: flex;
  flex-direction: column;
  background-color:#fff;
  opacity: 0.95;
  font-size:13px;
  top: 150px;
  right: 0;
  max-width: 30%;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.75);
  z-index: 1000;
}

.side_ann_container > #open_side_ann{
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.side_ann_container .head{
  font-size: 22px;
  font-weight: bold;
  padding: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(0,0,0,.1);
}
.side_ann_container .ann_text{
  padding: 0 15px 15px 15px;

}
.side_ann_container .ann_text *{
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.side_ann_container .ann_text .ann_item_title{
   font-size: 1.3rem !important;
   font-weight: bold;
   margin-bottom: 10px;
}
.side_ann_container::-webkit-scrollbar {
  width: 5px;
  
}

.side_ann_container::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 

.side_ann_container::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px;
}

.side_ann_container::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.side_ann_container.is_close{
  background-color:#fff;
  width: 60px;
  height: 60px;
  padding: 10px;
  overflow:hidden;
}

.side_ann_container .ann_item_container{
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.side_ann_container .ann_item_container:not(:last-child){
  border-bottom: 2px solid rgba(0,0,0,.1);
}

.jiggle_ann_bill {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.side_ann_container .close_icon{
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: block;
  float: right;   
}

.side_ann_container .close_icon > .line{
  width: 30px;
  height: 2px;
  background-color: #333;
  margin: 9px 0;
  transition: 0.4s;

}

.side_ann_container .close_icon > .line:first-child{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.side_ann_container .close_icon > .line:last-child{
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}


@media screen and (max-width:1200px){
  .side_ann_container{
      max-width: 50%;
  }
}

@media screen and (max-width:768px){
  .side_ann_container{
      max-width: 80%;
  }
}

/*End side announcement*/