body {
    background-color: #000000; /* 深色背景 */
    /*background-image: radial-gradient(circle at top, #1e1e1e, #0a0a0a); /* 微弱渐变 */
    background-image: url('../../img/publics/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -50px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.publics-content{
   width: 100%;
   padding: 0 15px;
}
.publics-content .logo{
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
}
.publics-content .logo img{
    width: 100%;
}
.publics-content .title-small{
    color: #FFF;
    font-size: 22px;
    text-align: left;
}
.publics-content .input{
    margin-top: 30px;
    position: relative;
}
.publics-content .input label{
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}
.publics-content .input p{
    width: 100%;
    margin: auto;
}
.publics-content .input .mima-icon{
    color: #fff;
    position: absolute;
    right: 5%;
    margin-top: 15px;
    font-size: 20px;
}
.publics-content .input input{
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, rgba(27, 28, 28, .4) 0%, rgba(255, 255, 255, .4) 100%);
    border:solid 1px rgba(255,255,255,.4);
    font-size: 13px;
    outline: none;
    border-radius: 100px;
    color: rgba(255,255,255,.4);
}
.publics-content .input.focus{

}
.publics-content .input input::placeholder{

}
.publics-content .input .ver-code{
    display: block;
    position: absolute;
    height: 50px;
    line-height: 50px;
    margin-top: -50px;
    right: 5%;
    width: max-content;
}
.publics-content .input .ver-code a{
    color: #00F0FF;
    font-size: var(--font-size);
    letter-spacing: 2px;
    font-weight: 600;
}
.publics-content .input .ver-code img{
    height: 30px;
    display: none;
}
.publics-content .publics-btn{
    margin: auto;
    margin-top: 20px;
}
.publics-content .publics-btn p{
    width: 100%;
}
.publics-content .publics-tips{
    display: flex;
    height: 30px;
    line-height: 30px;
    align-items: center;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--font-color);
    font-size: 13px;
}
.publics-content .publics-tips a{
    color: #00F0FF;
    font-size: 13px;
}
.publics-back{
    display: flex;
    width: 50px;
    height: 50px;
    margin: 20px auto 30px auto;
    border-radius: 100px;
    background: var(--background-color);
    justify-content: center;
    align-items: center;
}
.publics-back i{
    color: var(--font-color);
    font-size: 20px;
}
/* 隐藏原生的checkbox */
.checkbox-label{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
/* 创建一个圆形的span标签，用于展示checkbox状态 */
.checkbox-label .checkmark {
    display: inline-block;
    width: 15px; /* 设置宽度 */
    height: 15px; /* 设置高度 */
    background: #eee; /* 设置背景色 */
    border-radius: 50%; /* 设置为圆形 */
    cursor: pointer;
    border: solid 1px #ccc;
}
/* 当checkbox被选中时，显示一个白色的圈表示选中 */
.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #00F0FF; /* 选中时的背景色 */
}

/* 在.checkmark内部添加一个白色的圈表示选中 */
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 50%; /* 水平居中 */
    top: 50%; /* 垂直居中 */
    margin-top: -3px;
    margin-left: -4px;
    transform: translate(-50%, -50);
    width: 7px; /* 小圆形宽度 */
    height: 7px; /* 小圆形高度 */
    background: white; /* 小圆形的颜色 */
    border-radius: 50%; /* 小圆形设置为圆形 */
}

#hui-dialog-in{
    background: #000;
    border-radius: 20px;
    width: 80%;
    height:500px;
    overflow: scroll;
    padding: 20px 5px;
}
#hui-dialog-title{
    padding: 15px 10px;
    font-size: 15px;
    text-align: center;
    line-height: 32px;
    padding-bottom: 0px;
}
#hui-dialog-btn-line{
    border: none;
}
#hui-dialog-msg{
    padding: 0px 15px;
    font-size: 13px;
    text-align: left;
    line-height: 32px;
    padding-bottom: 22px;
}
#hui-dialog-msg p{
    font-size: 13px;
}
#hui-dialog-btn-line{
    height: 38px;
    line-height: 38px;
}
#hui-dialog-btn-line > div {
    width: 50%;
    color: #FFFFFF;
    float: left;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 15px;
    background: #00F0FF;
}
/* 遮罩层初始状态 */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* 必须为 none */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-container {
    background: #fff;
    width: 90%;
    max-width: 550px;
    max-height: 75vh;
    border-radius: 16px;
    overflow: hidden; /* 确保圆角切齐 */
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* 滚动条美化 (仅限 Webkit 内核浏览器如 Chrome/Edge/Safari) */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

/* 其他样式同前... */
.modal-header { padding: 20px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.modal-header h2{color: #000;}
.modal-header span{color: #000;}
.modal-content { padding: 25px; overflow-y: auto; font-size: 14px; color: #000; }
.modal-content p{
    color: #000;
    font-size: 13px;
}
.modal-footer { padding: 15px 20px; background: #fafafa; text-align: right; }
.btn-primary { background: #00F0FF; color: #fff; border: none; padding: 10px 24px; border-radius: 8px; cursor: pointer; }
.btn-secondary { background: transparent; color: #888; border: none; padding: 10px 20px; cursor: pointer; }