.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 20px;
    border-radius: 10px;
}

.popup-content {
    color: black;
    text-align: center;
}

.popup-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.popup-text {
    font-size: 15px;
}

.popup-buttons {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.popup-buttons button {
    width: 100%;
    font-size: 15px;
    color: #3676FC;
    background: #EBF1FF;
    padding: 10px;
    border: 0;
    border-radius: 20px;
    margin: 0 5px;
}

.popup-buttons > button:nth-child(2) {
    background: #3676FC;
    color: #ffffff;
}

.popup-message {
    width: 60%;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 999999999;
    background: rgb(0 0 0 / 60%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    display: none;
}

/* 加载样式 */
#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10000000;
    background: rgb(0 0 0 / 60%);
    text-align: center;
    top: 0;
    left: 0;
}

#loading .icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    margin-top: 40vh;
    border: 3px solid #ffffff;
    border-top: 3px solid #3676FC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#loading p {
    color: white;
    margin-top: 10px;
    font-size: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


 /* 加载容器居中 */
.loading-container { z-index: 999; width: auto; position: fixed; top:50%;left: 50%;background:#000000cf; padding:15px 20px; transform: translate(-50%,-50%);border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height:auto;
}


/* 加载文本样式 */
.loading-text {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px; margin-top:10px;
}

/*load8*/
.load-container{width:auto; height: auto; display:flex; align-items: center;}
.load8 .loader {
  	font-size: 10px;
  	position: relative;
 	text-indent: -9999em;
  	border-top:5px solid rgba(255, 255, 255, 0.2);
 	border-right:5px solid rgba(255, 255, 255, 0.2);
 	border-bottom:5px solid rgba(255, 255, 255, 0.2);
  	border-left: 5px solid #ffffff;
  	-webkit-animation: load8 1.1s infinite linear;
  	animation: load8 1.1s infinite linear;
}
.load8 .loader,
.load8 .loader:after {
  	border-radius: 50%;
  	width: 40px;
  	height: 40px;
}
@-webkit-keyframes load8 {
  	0% {
    	-webkit-transform: rotate(0deg);
    	transform: rotate(0deg);
  	}
  	100% {
    	-webkit-transform: rotate(360deg);
    	transform: rotate(360deg);
  	}
}
@keyframes load8 {
  	0% {
    	-webkit-transform: rotate(0deg);
    	transform: rotate(0deg);
  	}
  	100% {
    	-webkit-transform: rotate(360deg);
    	transform: rotate(360deg);
  	}
}
