/* 免责弹窗样式 */
.disclaimer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 122, 230, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.disclaimer-popup-box {
    background: white;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-popup-header {
    background: #0d7ae6;
    color: white;
    padding: 15px;
    text-align: center;
}

.disclaimer-popup-content {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.disclaimer-section {
    margin-bottom: 20px;
}

.disclaimer-section-title {
    color: #0d7ae6;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.disclaimer-popup-footer {
    padding: 15px;
    background: #f8f8f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
}

.disclaimer-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.disclaimer-buttons {
    display: flex;
    gap: 10px;
}

.disclaimer-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.disclaimer-btn-accept {
    background: #0d7ae6;
    color: white;
}

.disclaimer-btn-accept:hover {
    background: #0a6bc7;
}

.disclaimer-btn-decline {
    background: #f0f0f0;
    color: #666;
}

.disclaimer-btn-decline:hover {
    background: #e0e0e0;
}

.disclaimer-hidden {
    display: none;
}

/* 或者指定具体的粗细值 */
.bold-text {
    font-weight: bold;
}

p {
    /* 字体大小 */
    font-size: 10px;
    font-size: 1rem;

    /* 字体族 */
    /* font-family: "Microsoft YaHei", Arial, sans-serif; */

    /* 字体粗细 */
    font-weight: normal;

    /* 700 */

    /* 字体样式 */
    font-style: normal;
    font-style: italic;
    /* 斜体 */

    /* 字母间距 */
    letter-spacing: 1px;

    /* 单词间距 */
    word-spacing: 2px;
}