* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:"Microsoft YaHei", Arial, sans-serif; }

:root {
    /* 第1、2、3个页签之间的间距（1-2、2-3之间），可独立调整 */
    --gap-group1: 18px;

    /* 其它分组（4-9、11-15、17-20）内部页签之间的间距，独立于上面那组 */
    --gap-other: 1px;

    /* 大间距分组之间的间距：3-4、10-11、16-17、21-22 */
    --gap-large: 36px;
}

.top-bar {
    display:flex;
    align-items:center;
    height:40px;
    padding:0 20px;
    background:linear-gradient(135deg, #a8e6cf 0%, #7fd1d6 50%, #8ec9ea 100%);
    box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.tabs {
    display:flex;
    flex:1;
    height:100%;
    overflow-x:auto;
}
.tab, .tab-line {
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2c6e63;
    cursor:pointer;
    font-size:13px;
    white-space:nowrap;
    padding:0 6px;
    border-radius:3px;
    transition:background .1s,color .1s;
    user-select:none;
}
.tab:hover { background:rgba(255,255,255,.4); color:#1d4f46; }
.tab.active {
    background:#ffffff;
    color:#2a9d8f;
    font-weight:bold;
    box-shadow:0 1px 3px rgba(0,0,0,.15);
}

/* 三套独立的间距控制类 */
.mr-g1     { margin-right: var(--gap-group1); }  /* 用于第1、2个页签后 */
.mr-normal { margin-right: var(--gap-other); }   /* 用于其它分组内部页签后 */
.mr-large  { margin-right: var(--gap-large); }   /* 用于分组之间的大间距 */

.user-info {
    margin-left:20px;
    white-space:nowrap;
    padding-left:16px;
    border-left:1px solid rgba(255,255,255,.5);
}
.user-info a {
    color:#1d4f46;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
}
.user-info a:hover { text-decoration:underline; color:#0d332c; }

.content-area { height:calc(100vh - 52px); background:#f0faf7; }
iframe { width:100%; height:100%; border:none; }


#alertNotice {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 80%;
    max-width: 400px;
    background: #FFE4B5;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
}

#confirmNotice {
    margin-top: 20px;
    margin-left: 20px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#alertNotice p {
    font-size: 16px;
    margin-top: 20px;
    color: #333;
}

.checkbox-container {
    display: flex;
    justify-content: flex-end; /* 将对齐方式改为底部对齐 */
    align-items: center;
}

.checkbox-container label {
    font-size: 0.7em !important; /* 字体大小 */
}