     * {
            margin: 0;
            padding: 0;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
        }
        body {
            background: #f0f2f5;
            min-height: 100vh;
            padding: 20px 10px;
           
            height: 100%;
        } 
        .core-title {
            max-width: 1600px;
            margin: 0 auto 10px;
            text-align: center;
            font-size: 5rem;
            font-weight: 800;
            color: #2c5282;
            letter-spacing: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .core-title1 {
            max-width: 100px;
            margin: 0 auto 10px;
            text-align: center;
            font-size: 2rem;
            font-weight: 100;
            color: #2c5282;
            letter-spacing: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .core-title {
                font-size: 2rem;
                letter-spacing: 2px;
            }
        }
.top-school-header {
    max-width: 1600px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.school-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.school-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.school-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .top-school-header {
        justify-content: center;
        text-align: center;
    }
    .school-logo {
        width: 50px;
        height: 50px;
    }
    .school-name {
        font-size: 1.2rem;
    }
}
        .tab-container {
            max-width: 1600px;
            margin: 0 auto 20px;
            display: flex;
            gap: 10px;
            border-bottom: 2px solid #e0e7ff;
            padding-bottom: 0;
        }
        .tab-btn {
            padding: 12px 30px;
            background: #e0e7ff;
            border: none;
            border-radius: 8px 8px 0 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.3s;
        }
        .tab-btn.active {
            background: #2c5282;
            color: #fff;
        }
        .tab-btn:hover:not(.active) {
            background: #c7d2fe;
        }
        /* 标签 */
         .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }

        .top-header {
            max-width: 1600px;
            margin: 0 auto 30px;
            background: #2c5282;
            color: #fff;
            padding: 20px 30px;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            border-radius: 12px;
            -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
            -moz-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 15px;
        }
        .header-title {
            font-size: 2rem;
            font-weight: 700;
        }
        .header-sub {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        .stats-group {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            gap: 25px;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }
        .stats-item {
            text-align: center;
        }
        .stats-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 3px;
        }
        .stats-num {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fcd34d;
        }
        .reset-btn {
            background: #f87171;
            border: none;
            color: #fff;
            padding: 10px 22px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }
        .reset-btn:hover {
            background: #ef4444;
            -webkit-transform: translateY(-2px);
            -moz-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
            -o-transform: translateY(-2px);
            transform: translateY(-2px);
        }
         /* 清零 */
        .clear-all-btn {
            background: #f59e0b;
            border: none;
            color: #fff;
            padding: 10px 22px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            margin-left: 10px;
        }
        .clear-all-btn:hover {
            background: #d97706;
            -webkit-transform: translateY(-2px);
            -moz-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
            -o-transform: translateY(-2px);
            transform: translateY(-2px);
        }
         /* 投票规则 */
        .vote-tip {
            max-width: 1600px;
            margin: 0 auto 20px;
            padding: 12px 20px;
            background: #e0f2fe;
            color: #0369a1;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            font-size: 1rem;
        }
       /* 菜品 - */
        .dish-container {
            max-width: 1600px;
            margin: 0 auto 30px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 18px;
            padding-bottom: 30px;
           /
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }
       /* 菜品 */
        .dish-container .dish-card {
            -webkit-flex: 1 1 calc(100% / 8 - 18px);
            -ms-flex: 1 1 calc(100% / 8 - 18px);
            flex: 1 1 calc(100% / 8 - 18px);
            min-width: 180px;
            margin-bottom: 10px;
        }
        /* 菜品 */
        .dish-card {
            background: #fff;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            overflow: hidden;
            -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            -moz-box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            text-align: center;
        }
        .dish-card:hover {
            -webkit-box-shadow: 0 8px 16px rgba(0,0,0,0.12);
            -moz-box-shadow: 0 8px 16px rgba(0,0,0,0.12);
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
            -webkit-transform: translateY(-5px);
            -moz-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            -o-transform: translateY(-5px);
            transform: translateY(-5px);
        }
        .dish-img {
            width: 100%;
            height: 200px;
            background: #f3f4f6;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            overflow: hidden;
        }
        .dish-img img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
        }
        .dish-card:hover .dish-img img {
            -webkit-transform: scale(1.05);
            -moz-transform: scale(1.05);
            -ms-transform: scale(1.05);
            -o-transform: scale(1.05);
            transform: scale(1.05);
        }
        .dish-name {
            padding: 12px 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #1f2937;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .vote-btn {
            width: 90%;
            margin: 0 auto 15px;
            padding: 8px 0;
            border: none;
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }
        .vote-btn.normal {
            background: #3b82f6; 
            color: #fff; /*我喜欢*/
        }
        .vote-btn.normal:hover {
            background: #2563eb;
        }
        .vote-btn.voted {
            background: #9ca3af;
            color: #fff;
            cursor: not-allowed;
        }
        .vote-btn.full {
            background: #d1d5db;
            color: #6b7280;
            cursor: not-allowed;
        }
        .dish-vote-num {
            padding: 0 8px 12px;
            font-size: 0.85rem;
            color: #6b7280;
        }
        /*样式*/
        .page-btn-container {
             margin: 30px 0;
             text-align: center;
             margin-top: -20px;
        }
       .page-btn {
           padding: 6px 20px;
           margin: 0 4px;
           border: 1px solid #3b82f6;
           border-radius: 4px;
           background: #fff;
           color: #3b82f6;
           cursor: pointer;
        }
       .page-btn.active {
            background: #3b82f6;
            color: #fff;
        }
       .page-btn:disabled {
          opacity: 0.5;
          cursor: not-allowed;
        }
       .page-info {
          margin-left: 12px;
          color: #666;
        }          
  /* 员工 */
.staff-header {
    max-width: 1600px;
    margin: 0 auto 30px;
    background: #2c5282;
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.staff-header-title {
    font-size: 2rem;
    font-weight: 700;
}
.staff-stats-group {
    display: flex;
    gap: 25px;
    align-items: center;
}
.staff-stats-item {
    text-align: center;
}
.staff-stats-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 3px;
}
.staff-stats-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fcd34d;
}
/* 员工 */
.staff-container {
    max-width: 1480px;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
}
/* 员工 */
.staff-card {
    width: calc(15.5% - 16px);
    min-width: 150px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
    margin-bottom: 10px;
}
.staff-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
.staff-avatar {
    width: 50%;
    height: 150px;
    background: #f3f4f6;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
}
.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.staff-card:hover .staff-avatar img {
    transform: scale(1.05);
}
.staff-name {
    padding: 12px 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}
.staff-vote-btn {
    width: 90%;
    margin: 0 auto 15px;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background: #3b82f6;
    color: #fff;
}
.staff-vote-btn:hover {
    background: #059669;
}
.staff-vote-btn.voted {
    background: #9ca3af;
    color: #fff;
    cursor: not-allowed;
}
.staff-vote-num {
    padding: 0 8px 12px;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}
        /* 样式 */
        .result-section {
            max-width: 1600px;
            margin: 0 auto 10px;
            background: #fff;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            border-radius: 12px;
            padding: 25px;
            -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .result-title {
            font-size: 1.5rem;
            color: #2c5282;
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0f2fe;
        }
        .result-container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 30px;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
        .top10-list {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -moz-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            min-width: 280px;
            background: #f8fafc;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            padding: 20px;
        }
        .top10-title {
            font-size: 1.2rem;
            color: #2c5282;
            margin-bottom: 15px;
            text-align: center;
        }
        .top10-item {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
            -moz-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 10px 15px;
            margin-bottom: 8px;
            background: #fff;
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            border-radius: 6px;
            -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .top10-rank {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ef4444;
            width: 25px;
            text-align: center;
        }
        .top10-name {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -moz-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            margin: 0 10px;
            color: #1f2937;
        }
        .top10-votes {
            font-size: 0.9rem;
            color: #3b82f6;
            background: #e0f2fe;
            padding: 3px 8px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
        }
        /*样式*/
        .chart-box {
            -webkit-box-flex: 2;
            -webkit-flex: 2;
            -moz-box-flex: 2;
            -ms-flex: 2;
            flex: 2;
            min-width: 600px;
            height: 610px;
            background: #f8fafc;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            padding: 15px;
        } 
        /* 样式  */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 999;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            visibility: hidden;
            opacity: 0;
            -webkit-transition: opacity 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }
        .modal.show {
            visibility: visible;
            opacity: 1;
        }
        .modal-box {
            background: #fff;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            width: 90%;
            max-width: 450px;
            padding: 30px;
            text-align: center;
            -webkit-transform: translateY(-20px);
            -moz-transform: translateY(-20px);
            -ms-transform: translateY(-20px);
            -o-transform: translateY(-20px);
            transform: translateY(-20px);
            -webkit-transition: transform 0.3s;
            -moz-transition: transform 0.3s;
            -o-transition: transform 0.3s;
            transition: transform 0.3s;
        }
        .modal.show .modal-box {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
        }
        .modal-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .title-success { color: #10b981; }
        .title-warn { color: #f59e0b; }
        .title-error { color: #ef4444; }
        .modal-text {
            font-size: 1rem;
            color: #4b5563;
            margin-bottom: 25px;
        }
        .modal-btn-group {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            gap: 15px;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
        .modal-btn {
            padding: 10px 25px;
            border: none;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }
        .confirm-btn {
            background: #ef4444;
            color: #fff;
        }
        .confirm-btn:hover { background: #dc2626; }
        .cancel-btn {
            background: #d1d5db;
            color: #4b5563;
        }
        .cancel-btn:hover { background: #9ca3af; }

        /* 密码 */
        .pwd-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e7ff;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 20px;
            outline: none;
        }
        .pwd-input:focus {
            border-color: #3b82f6;
            -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            -moz-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        .rank-first { color: #ffd700; font-weight: bold; }
        .rank-second { color: #c0c0c0; font-weight: bold; }
        .rank-third { color: #cd7f32; font-weight: bold; }
        @media (max-width: 768px) {
            .top-header, .staff-header {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -webkit-flex-direction: column;
                -moz-box-orient: vertical;
                -moz-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                text-align: center;
            }
            .stats-group, .staff-stats-group {
                gap: 15px;
                -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-box-pack: center;
                -webkit-justify-content: center;
                -moz-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }
            .dish-container {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            .dish-container .dish-card {
                -webkit-flex: 1 1 calc(50% - 18px);
                -ms-flex: 1 1 calc(50% - 18px);
                flex: 1 1 calc(50% - 18px);
                min-width: 140px;
            }
            .staff-container .staff-card {
                flex: 1 1 calc(50% - 20px);
                min-width: 160px;
            }
            .chart-box {
                min-width: 100%;
                height: 300px;
            }
        }
   /* 固定 */
.fixed-top-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background: #f0f2f5;
    padding: 20px 10px 10px;
}
.main-scroll-content {
    margin-top: 420px; /* 高度 */
    padding-bottom: 50px;
}
@media (max-width:768px){
    .main-scroll-content{
        margin-top: 500px;
    }
}
/* 链接样式 */
.link-tab-btn {
    text-decoration: none;
    display: inline-block;
}
/* 弹窗 */
.modal-sm-box {
    max-width: 320px !important;
    padding: 20px !important;
}
.modal-sm-box .modal-title{
    font-size: 1.1rem !important;
}
.modal-sm-box .modal-text{
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
}
.modal-sm-box .pwd-input{
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
}
.modal-sm-box .modal-btn{
    padding: 8px 18px !important;
    font-size: 0.9rem !important;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}