@charset "utf-8";

/*=================================== layout Start ===================================*/


#wrap{
	display:flex;
	height: 100vh;
	overflow: hidden;
}

#container{
	width: calc(100% - 200px);
	 overflow-y: auto;
	  -ms-overflow-style: none;
}

#container::-webkit-scrollbar{
  display:none;
}

.section{
    padding: 50px 70px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/*=================================== layout End ===================================*/



/*=================================== Header Start ===================================*/

#header{
	height: 100%;
	position: relative;
	z-index:500;
}

#header .left-menu{
	width:200px;
    height: 100%;
    padding: 60px 0px;
    display: flex;
    flex-direction: column; 
    align-items: center;   
    justify-content: space-between;
    box-sizing: border-box; 
    color:#fff;
    background-color:#157CF4;
}

#header .left-menu div{
	display: flex;
	align-items: center; 
	cursor: pointer;  
}

#header .left-menu .logo a img{
	width:70px;
	max-width:100%;
}

#header .left-menu .logout-btn{
	font-size: 20px;
}

#header .left-menu .logout-btn img{
	width:40px;
	max-width:100%;
	margin-right: 10px;
}

#header .right-menu.menu-on{
	left:200px;
}

#header .right-menu{
    width: calc(100vw - 200px);
    height: 100%;
    z-index: 500;
    background-color: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: -100vw;
    transition: 0.6s;
    box-sizing: border-box;
}

#header .right-menu .right-bar{
	width: 300px;
    height: 100%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column; 
    align-items: center;   
    justify-content: space-between;
    box-sizing: border-box; 
    color:#fff;
    background-color:#157CF4;
    border-left: 2px solid rgba(225, 225, 225, 0.3);
   	overflow-y: auto;
   	overflow-x: hidden;
}


#header .right-menu .menu-list{
	width:100%;
	padding:20px 0px;
}


#header .right-menu .menu-site{
	width:100%;
}

#header .right-menu .menu-site p{
	color:rgba(225, 225, 225, 0.5);
	 font-size: 16px;
}


#header .right-menu .right-logo img{
	width:195px;
}


#header .right-menu .menu-list .main-menu li > span{
	font-size:22px;
	color:rgba(225, 225, 225, 0.5);
}


#header .right-menu .menu-list .main-menu li .sub-menu li a{
	color:#fff;
	font-weight: 600;
	font-size:30px;
}


#header .right-menu .menu-list .main-menu li .sub-menu li a.active{
	color: #FFFFFF80;
}

#header .right-menu .menu-list .main-menu > li{
	margin-bottom:40px;
}

#header .right-menu .menu-list .main-menu > li:last-child{
	margin-bottom:0px;
}


#header .right-menu .menu-site a{
	color:#fff;
	font-size:18px;
}

#header .right-menu .menu-site ul{
	display:none;
}

#header .open-btn .menu-wrap{
   position: relative;
   width: 50px;
   height: 55px;
   cursor: pointer;
}

#header .open-btn .menu-wrap .line{
  position: absolute;
  width: 5px;
  height: 100%;
  top:0;
  border-radius: 10px;
  background: #fff;
}

#header .open-btn .menu-wrap .line:first-child{
  transition: .3s;
  left: 0;
}

#header .open-btn .menu-wrap .line:nth-child(2){
  left: 50%;
  transform: translateX(-50%);
}

#header .open-btn .menu-wrap .line:last-child{
  transition: .3s;
  right: 0;
}

#header .open-btn .menu-wrap.open .line:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 70px;
}

#header .open-btn .menu-wrap.open .line:nth-child(2){
  opacity: 0;
}

#header .open-btn .menu-wrap.open .line:last-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 70px;
}

/*=================================== Header End ===================================*/


/*=================================== Footer Start ===================================*/

#footer{
	width: 100%;
    background: #157CF4;
    border-top: 2px solid rgba(225, 225, 225, 0.3);
    padding:0px 0px 0px 200px;
    box-sizing:border-box;
}

#footer .top-ftr{
	padding:50px 0px 25px 0px;
    box-sizing:border-box;
    border-bottom: 2px solid rgba(225, 225, 225, 0.3);
}

#footer .top-ftr .logo{
    width: 195px;
    max-width: 100%;
}

#footer .bottom-ftr{
	padding:25px 0px;
}

#footer .bottom-ftr .bftr{
	font-size:24px;
	color:#fff;
	margin-bottom:20px;
}

#footer .bottom-ftr .bftr:last-child {
	margin-bottom:0;
}

#footer .bottom-ftr .bftr p{
	margin-bottom:10px;
}

#footer .bottom-ftr .bftr.addr-info .addr-txt{
	display: flex;
    align-items: center;
}

#footer .bottom-ftr .bftr.addr-info .addr-txt h2{
	margin-right:15px;
}

#footer .bottom-ftr .bftr.ctus-info ul li{
	font-size:36px;
}

#footer .bottom-ftr .bftr.ctus-info ul li span{
	font-weight: 600;
	margin-right: 10px;
}

#footer .bottom-ftr .bftr.copy-info span{
	margin-right:5px;
}

/*=================================== Footer End ===================================*/


