
:root {
    --main-color: #315EFB; 
    --bg: #fff;
    --color-1: #333; 
    --color-2: #666; 

    --width: 170px; 
    --opacity: 0.8; 

}

.menuBtn {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width:30px;
    height:40px;
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
    z-index: 999999;
    color: #fff;
    background:#c20a14;


}

.menuBtn .icon {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px #fff solid;
    border-right: 2px #fff solid;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu.open .menuBtn {
    right: 100%;
}


.menu .bt{
	font-weight:700;
	color:#1a2223;
	font-size:18px;
	text-align:center;
	padding-bottom:10px;
}
.menu .bt:before{
	display:none;
}
.menu .transparent {
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    display: none
}

.menu .menuCon {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    width: var(--width);
    height: 100%;
    border-left: 1px rgba(255, 255, 255, 0.5) solid;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 2;
    position: fixed;
    z-index: 9;
    top: 0;
    bottom: 0;
    right: 0;
    right: calc(var(--width)*-1);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu .menuCon::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
    opacity: 0.8;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;


}

.menu .menuWrap {
    overflow-y: auto;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.menu.open .transparent {
    display: block
}

.menu.open .closeBtn {
    display: block
}

.menu.open .menuCon {
    right: 0
}

.menu .closeBtn {
    display: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
     background: linear-gradient(to right, #81b2df, #147fc3);
    color: #fff;
    position: absolute;
    z-index: 999;
    right: -40px;
    top: 0
}

.menu .closeBtn:before,
.menu .closeBtn:after {
    content: "";
    display: block;
    background: #fff;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.menu .closeBtn:before {
    width: 15px;
    height: 1px
}

.menu .closeBtn:after {
    width: 1px;
    height: 15px
}

.menu .titleBig {
    text-align: center;
    padding: 10px 0;
    display: none
}

.menu .menuWrap > .list{
	 padding-top:17vw;
}
.menu .menuWrap>.list em {
    font-style: initial
}

.menu .menuWrap>.list li {
	text-align:center;
    padding:15px 0;
    position: relative
}


.menu .menuWrap > .list > li {
	position:relative;
	font-size:18px;
	margin-bottom: 10px;
}
.menu .menuWrap>.list .cur,.menu .menuWrap>.list li:hover{
	background: var(--main-color);
    border-radius: 10px;
    color: #fff;
}

.menu .menuWrap > .list > li a{
	color:#1a2223;
}
.menu .menuWrap > .list > li:before{
	content:"";
	top:28px;
	left:-20px;
	opacity:0;
	position:absolute;
	border-left:solid 8px #c20a14;
	border-top:solid 6px transparent;
	border-bottom:solid 6px transparent;
	transition:all 500ms ease;
}
.menu .menuWrap>.list li:hover:before,
.menu .menuWrap>.list .cur:before{
	opacity:1;
}
.menu .menuWrap>.list .cur a,
.menu .menuWrap>.list li:hover a{
	color:#c20a14;
	text-decoration:underline;
	color:#fff;
}


.menu .menuWrap>.list>li> {
    font-size: 18px
}



@media(max-width:1024px) {
	.menu{
		display:none;
	}
}