.web-notice {
    display: none; /* 初始状态下隐藏弹窗 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99999;
}

.popup-container {
    width: 90%;
    max-width: 600px;
    background-color: #fafeff;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    position: relative;
    height: 10rem;
    background-image: url('img/ggao.jpg'); /* 设置背景图片 */
  	background-size: cover;                         /* 背景图片覆盖整个div区域 */
 	background-position: center;                    /* 背景图片居中 */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background-color: transparent;
    border: none;
}

.popup-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.popup-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    overflow: auto;
    height: 7.2rem;
}

.popup-link {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background-color: #00a151;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 20px;
}

.checkbox-container {
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding-left: 3.6rem;
    padding-top: 0.0rem;
}

.checkbox-container input[type="checkbox"] {
    display: none; /* 隐藏复选框本身 */
}

.checkbox-container .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #666;
    border-radius: 4px;
    margin-right: 8px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #00a151;
    border-radius: 2px;
}

.checkbox-container label {
    font-size: 14px;
    color: #666;
}
