  /* 隐藏的弹窗样式 */
.popup1 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 999;
}

/* 标题栏样式 */
.popup1-header {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    position: relative;
}

/* 关闭按钮样式 */
.popup1-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

/* 单选框容器样式 */
.radio-container {
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

/* 单选框样式 */
.radio-container input[type="radio"] {
    margin-right: 5px;
}

/* 输入框与确认按钮的容器样式 */
.input1-button-container {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content:space-between;
}

/* 输入框样式 */
.password-input1 {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 20px;
    width: 64%;
    margin-right: 8px;
    color: #ccc;
}

/* 确认按钮样式 */
.confirm1-button {
    padding: 4px 29px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(to right, #007BFF, #00BFFF);
    color: white;
    cursor: not-allowed;
    height: 34px;
}

/* 闪烁动画关键帧定义 */
@keyframes blink {
    0% {
        filter: brightness(120%) grayscale(10%) drop-shadow(0 0 5px rgba(0, 100, 255, 0.7));
    }
    50% {
        filter: brightness(100%) grayscale(10%) drop-shadow(0 0 3px rgba(0, 100, 255, 0.3));
    }
    100% {
        filter: brightness(120%) grayscale(10%) drop-shadow(0 0 5px rgba(0, 100, 255, 0.7));
    }
}

/* emoji-link的默认样式 */
a.emoji-link {
    text-decoration: none;
    font-size: 16px;
    color: inherit;
    cursor: pointer;
    /* 初始微发光及海蓝色光 */
    filter: brightness(120%) grayscale(10%) drop-shadow(0 0 5px rgba(0, 100, 255, 0.6));
    transition: filter 0.3s ease, box-shadow 0.3s ease;
    animation: blink 1s infinite;
}

/* emoji-link的鼠标悬停样式 */
a.emoji-link:hover {
    /* 鼠标悬停时强烈发光及更亮海蓝色光 */
    filter: brightness(200%) grayscale(0%) drop-shadow(0 0 10px rgba(0, 100, 255, 0.9));
    box-shadow: 0 0 8px rgb(42, 224, 18);
    border-radius: 50%;
}

.floating-windoww {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: 269px;
    height: 72px;
    z-index: 1001;
}

/* 标题栏样式 */
.title-barw {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 1px;
    border-bottom: 1px solid #ccc;
    flex-direction: row;
}

/* 关闭按钮样式 */
.close-buttonw {
    cursor: pointer;
    font-weight: bold;
}

/* 内容区域样式 */
.contentw {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

/* 输入框样式 */
.input-boxw {
    flex: 1;
    padding: 5px;
    margin-right: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

/* 确认按钮样式 */
.confirm-buttonw {
    padding: 7px 4px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 20px;
    cursor: pointer;
}

