.loaderStyle {
	width: 50px;
	height: 50px;
	border: 5px solid transparent;
	border-left: 5px dashed rgb(73, 62, 195,0.5);
	border-right: 5px dashed rgb(73, 62, 195,0.5);
	border-radius: 50px;
	animation: rotate 1s linear infinite;	
	margin: 50px auto;
}

@keyframes rotate {
	0% {
	transform: rotate(0deg);
	}
	100% {
	transform: rotate(360deg);
	}
}

input:hover {
	opacity: 0.9;
	cursor: pointer;   
}

.hide{
	display: none;
}

.show{
	display: block;
}

.markDiv{
	height: 100%;
	width: 100%;
	background:#000; 
	opacity:0.8;            
	color:#fff; 
	text-align:center;
 
	position: fixed;
	left:0px;
	top:0px;

	z-index:99999;
	font-size: 32px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
}
   
     
.modal .container{
	z-index:999999;
	width: 400px;
	height: 430px;
	background-color: #fff;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	box-sizing: border-box;
	border-radius: 6px;
	padding: 1em;    
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
	text-align: center;
}
.modal .container .title {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	font-size: 32px;
	color: #000;
	font-weight: 700;        
	border-radius: 10px;
}
.modal .container .bottom {
	font-size: 24px;
	font-weight: 700;
	margin-top: 20px;
}
.modal .container .bottom span {
 color: #493ec3;
}
.modal .container.title::before {
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 10px;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}

.modal  .close{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	right: -10px;
	top: -10px;
	border: 2px solid #fff;
	cursor: pointer;
	background-color: #fff;
	text-align: center;
	line-height: 30px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1223px){
		@keyframes move-right {
			0% {
				right: -200;
				opacity: 0;
			}
			100% {
				right: 0px;
				opacity: 1;
			}
		}
.menu_mini{
	color: white;font-size: 40px;margin-top: 8;margin-right: 20px;
}
.sidebar{
	z-index: 10000000; width: 200px;position: fixed;height: 100%;right: 0;top: 0;background-color: rgba(0,0,0,0.8);
}
.hide{
	display: none;
}
.show{
	display: block; 
	animation: move-right 0.6s ease-out ; 
}
.sidebar .content1{
	color: white;line-height: 40px;
}

.sidebar .content1 .close{
	font-size: 30px; text-align: center;margin: 15px 0px;
}

.sidebar .content1 .item{
	background-color: rgba(243,243,255,0.3);padding-left: 10px;margin: 10px 0px;color:#fff;text-decoration:none;
	display:block;
}
.page1 .head .menu{
	display: none;
}
}

@media screen and (min-width: 1224px){
	.menu_mini{
		display: none;
	}
	.sidebar{
		display: none;
	}
.page1 .head{
	box-sizing: border-box;
	width: 1224px;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	font-size: 28px;	
	color: #ffffff;
}
.page1 .head .menu{
	display: flex;		
}
.page1 .head .menu-item{
	box-sizing: border-box;
	margin-top: 20px;
	margin-left: 20px;
	padding-top: 3px;
	font-size: 15px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 18px;
	width: 100px;
	text-align: center;
	height: 30px;
	vertical-align: middle;
	cursor: pointer;
	color:rgba(255, 255, 255,  0.9);
	text-decoration:none;
}
.page1 .head .menu-item:hover{
	color:rgba(255, 255, 255,0.8);
	border: 1px solid rgba(255, 255, 255, 0.8);
}
}