body {
    font-family: 'Noto Sans SC', 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

html {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* 用户信息区域样式 */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    position: relative;
    cursor: pointer;
}

.user-avatar>i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.user-avatar:hover>i {
    color: var(--secondary);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 12px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-avatar:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown .user-email {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}

.user-dropdown .logout-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.user-dropdown .logout-btn:hover {
    background-color: #e74c3c;
    transform: translateY(-1px);
}

.logout-btn i {
    font-size: 12px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn.disabled,
.btn:disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn.disabled:hover,
.btn:disabled:hover {
    background-color: #cccccc !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--secondary);
}

.scenario-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.scenario-title {
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.scenario-title-tips {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.scenario-title i {
    background-color: var(--secondary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* 标签页样式 */
.tabs {
    margin-bottom: 50px;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--secondary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 评估系统样式 */
.evaluation-system {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 50px;
}

.form-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
}

.section-title i {
    background-color: var(--secondary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.section-status {
    vertical-align: middle;
}

.section-warning {
    background-color: #ff9800 !important;
    font-size: 12px;
    margin-left: 10px;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-success {
    background-color: #4caf50 !important;
    font-size: 10px;
    margin-left: 10px;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 输入框错误状态样式 */
.form-group input.error,
.form-group select.error {
    border: 2px solid #ff9800 !important;
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.3) !important;
}

.form-group input.error:focus,
.form-group select.error:focus {
    border-color: #ff9800 !important;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5) !important;
    outline: none !important;
}

/* 确保错误状态优先级最高 */
.form-group.error input,
.form-group.error select {
    border: 2px solid #ff9800 !important;
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.3) !important;
}

.form-group.error input:focus,
.form-group.error select:focus {
    border-color: #ff9800 !important;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5) !important;
    outline: none !important;
}

/* 错误提示文字样式 */
.error-message {
    color: #ff9800 !important;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-actions {
    padding: 30px;
    text-align: center;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.tips-icon {
    color: #2c3e50;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;

}

.tips-icon i {
    margin-right: 4px;
    color: #fff;
    font-style: normal;
    text-align: center;
    font-weight: bold;
}

/* 结果展示样式 */
.results-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.result-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.result-title {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}


.progress-container {
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.bg-success {
    background-color: var(--success);
}

.bg-warning {
    background-color: var(--warning);
}

.bg-info {
    background-color: var(--info);
}

.result-details {
    margin-top: 20px;
}

.result-details h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.result-details p {
    color: #666;
    line-height: 1.8;
}

.probability-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

.probability-box {
    background: rgba(52, 152, 219, 0.1);
    border-radius: var(--border-radius);
    padding: 15px;
    flex: 1;
    min-width: 140px;
    margin: 0 5px;
    text-align: center;
}

.probability-title {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.probability-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.probability-label {
    font-size: 0.8rem;
    color: #666;
}

/* 案例展示样式 */
.case-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.case-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.case-img {
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.case-content {
    padding: 20px;
}

.case-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.case-content p {
    color: #666;
    margin-bottom: 15px;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
}

.country-flags {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.country-flag {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.country-flag.active {
    border-color: var(--secondary);
    background-color: rgba(52, 152, 219, 0.1);
}

.country-flag i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.country-flag.active i {
    color: var(--secondary);
}

/* 导师团队样式 */
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.mentor-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mentor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mentor-header {
    padding: 25px;
    text-align: center;
    background-color: var(--secondary);
    color: white;
}

.mentor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2.5rem;
}

.mentor-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.mentor-title {
    font-size: 1rem;
    opacity: 0.9;
}

.mentor-body {
    padding: 25px;
}

.mentor-info {
    margin-bottom: 20px;
}

.mentor-info p {
    color: #666;
    margin-bottom: 8px;
    display: flex;
}

.mentor-info i {
    color: var(--secondary);
    min-width: 24px;
    margin-right: 10px;
}

.mentor-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background-color: #e1f0fa;
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.case-subtabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.case-subtab {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.case-subtab.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.case-content-section {
    display: none;
}

.case-content-section.active {
    display: block;
}

/* 页脚样式 */
footer {
    background-color: var(--dark);
    color: white;
    padding: 20px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.wechat-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
}

.wechat-icon {
    font-size: 1.5rem;
    color: #07C160;
    margin-bottom: 15px;
}

.wechat-info {
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.8;
}

.wechat-qrcode {
    width: 120px;
    height: 120px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
}

.wechat-qrcode span {
    color: #777;
    font-size: 0.9rem;
}

.wechat-btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
}

.wechat-btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

.contact-info {
    color: #bbb;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 10px;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* 放大评估按钮 */
#evaluate-btn {
    padding: 15px 39px;
    /* 放大30% */
    font-size: 1.3rem;
}

.success-rate-section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.rate-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

.rate-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.rate-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.pie-chart {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.pie-percentage {
    font-size: 18px;
    font-weight: bold;
    color: #2563eb;
}

.pie-percentage.green {
    color: #23c45f;
}

.pie-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pie-chart .progress-ring {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
}

.pie-chart .progress-ring {
    stroke: #e9ecef;
    stroke-width: 5;
}

.pie-chart-75 .progress-ring {
    stroke: #2563eb;
    stroke-dasharray: 235.6 314.2;
    stroke-dashoffset: 0;
}

.pie-chart-92 .progress-ring {
    stroke: #23c45f;
    stroke-dasharray: 289.4 314.2;
    stroke-dashoffset: 0;
}

.percentage-display {
    text-align: left;
}

.percentage {
    font-size: 32px;
    font-weight: bold;
    color: #2563eb;
    line-height: 1;
}

.percentage.green {
    color: #23c45f;
}

.percentage-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.range-text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.evaluation-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.evaluation-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.evaluation-text {
    line-height: 1.6;
    color: #555;
    font-size: 14px;
}

.highlight {
    color: #e74c3c;
    font-weight: 600;
}

.modules-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.module-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.module-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.module-icon.academic {

    color: #37db34;
}

.module-icon.research {

    color: #37db34;
}

.module-icon.documents {

    color: #ffc107;
}

.module-icon.network {

    color: #dc3545;
}

.module-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.module-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
}

.status-excellent {
    background-color: #37db34;
    color: white;
}

.status-good {
    background-color: #ffc107;
    color: #fff;
}

.status-poor {
    background: #f3604b;
    color: white;
}

.score-section {
    margin-bottom: 20px;
}

.score-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    text-align: right;
    display: flex;
    justify-content: space-between;
}

.score-value {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    float: right;
}

.score-bar {
    width: 100%;
    height: 8px;
    border: 1px solid #bcbcbc;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.score-fill.excellent {
    background: #37db34;
}

.score-fill.good {
    background: #ffc107;
}

.score-fill.poor {
    background: #eb0e0e;
}

.item-list {
    list-style: none;
}

.item-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.item-list li:last-child {
    border-bottom: none;
}

.item-status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.item-status.status-excellent {
    color: #37db34;
    font-weight: bold;
    background: #fff;
}

.item-status.status-good {
    color: #ffc107;
    font-weight: bold;
    background-color: #fff;
}

.item-status.status-poor {
    color: #eb0e0e;
    background-color: #fff;
    font-weight: bold;
}

.suggestion {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.suggestion-label {
    font-weight: 600;
    margin-bottom: 5px;
}

/* 辅助评分按钮和弹窗样式 */
.input-with-helper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-helper input {
    flex: 1;
}

.helper-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.helper-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 弹窗样式 */
/* 邀请码弹窗样式 */
.invitation-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.invitation-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.invitation-modal .modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.invitation-modal .form-group {
    margin-bottom: 20px;
}

.invitation-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.invitation-modal .form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.invitation-modal .form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.invitation-modal .error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.invitation-modal .error-message.show {
    display: block;
}

/* 详细评估规则样式 */
.detailed-rules-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.rule-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rule-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rule-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.rule-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.rule-status.status-excellent {
    background-color: #d4edda;
    color: #155724;
}

.rule-status.status-good {
    background-color: #fff3cd;
    color: #856404;
}

.rule-status.status-poor {
    background-color: #f8d7da;
    color: #721c24;
}


.helper-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.helper-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #333;
}

.modal-description {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.modal-body {
    padding: 20px 24px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.criteria-item:hover {
    border-color: #667eea;
    background-color: #f8f9ff;
}

.criteria-item.selected {
    border-color: #667eea;
    background-color: #f0f4ff;
}

.criteria-item.clicked {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.criteria-item.shake {
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.criteria-checkbox {
    display: none;
}

.criteria-item label {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.criteria-item label:before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.criteria-checkbox:checked+label:before {
    background-color: #667eea;
    border-color: #667eea;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath fill="white" d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
}

.criteria-desc {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin-left: 26px;
}

.modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid #eee;
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 汉堡菜单样式 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}


/* 提示图标样式 */
.tooltip-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    cursor: help;
    position: relative;
}

.tooltip-icon:hover {
    background-color: #0056b3;
}

.tooltip-content {
    visibility: hidden;
    width: 280px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -140px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-icon:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.wechat-qrcode img {
    width: 110px;
}

/* 移动端适配 - 评估系统 */
@media (max-width: 768px) {

    /* 评估系统容器 */
    .evaluation-system {
        margin-bottom: 30px;
    }

    /* 表单区域 */
    .form-section {
        padding: 20px 15px;
    }

    /* 表单网格布局 - 移动端单列 */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* 章节标题 */
    .section-title {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .section-title h2 {
        font-size: 1.3rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-title i {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        margin-bottom: 0;
    }

    .section-status {
        flex-shrink: 0;
    }

    /* 表单组 */
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    /* 辅助评分按钮 */
    .input-with-helper {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .helper-btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* 表单操作区域 */
    .form-actions {
        padding: 20px 15px;
    }

    #evaluate-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1rem;
    }

    /* 成功率展示区域 */
    .success-rate-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .rate-card {
        padding: 20px 15px;
    }

    .rate-content {
        flex-direction: column;
        gap: 15px;
    }

    .pie-chart {
        width: 80px;
        height: 80px;
    }

    .pie-percentage {
        font-size: 16px;
    }

    .percentage {
        font-size: 28px;
    }

    /* 模块评估区域 */
    .modules-section {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .module-card {
        padding: 20px 15px;
    }

    .module-header {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }

    .module-title {
        font-size: 15px;
        flex: 1;
        min-width: 120px;
    }

    .module-status {
        margin-left: 0;
        margin-top: 5px;
    }

    /* 评分条 */
    .score-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }

    .score-value {
        float: none;
        font-size: 16px;
    }

    /* 项目列表 */
    .item-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
    }

    .item-status {
        align-self: flex-end;
    }

    /* 建议区域 */
    .suggestion {
        padding: 12px;
        font-size: 11px;
        margin-top: 10px;
    }

    /* 评估标题 */
    .evaluation-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
    }

    /* 评估区域 */
    .evaluation-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .evaluation-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .evaluation-text {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* 小屏幕设备适配 */
@media (max-width: 480px) {


    .section-title h2,
    .scenario-title {
        font-size: 1.2rem;
    }

    .scenario-title i {
        width: 32px;
        height: 32px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .scenario-section {
        padding: 20px 15px;
    }

    .rate-card {
        padding: 15px 10px;
    }

    .module-card {
        padding: 15px 10px;
    }

    .pie-chart {
        width: 70px;
        height: 70px;
    }

    .pie-percentage {
        font-size: 14px;
    }

    .percentage {
        font-size: 24px;
    }

    .module-title {
        font-size: 14px;
    }

    .evaluation-title {
        font-size: 1.3rem;
    }

    .suggestion {
        padding: 10px;
        font-size: 10px;
    }
}