.el-tabs__nav-wrap::after {
    display: none;
}

.el-tabs__nav-wrap::after {
    height: 1px;
}

.el-tabs__nav-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
}

.el-dialog {
    border-radius: 16px;
}

.el-tabs__item {
    font-size: 16px;
}

.el-tabs__header {
    margin-bottom: 15px;
    border: none;
    background: transparent;
}

.el-tabs__nav-wrap::after {
    display: none !important;
}

.el-tabs__item {
    border: none !important;
    background: transparent !important;
}

/* 移除 border-bottom，使用 Element UI 自带的 el-tabs__active-bar 下划线 */
.el-tabs__item.is-active {
    color: #63065F;
    /* border-bottom handled by el-tabs__active-bar */
}

.el-dialog__body {
    padding: 20px 20px;
}

.link-paw {
    text-align: right;
}

.login-body {
    padding: 0 40px 10px;
}

.login-body .text-h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 30px;
    text-align: center;
    white-space: nowrap;
}

.el-form-item__label {
    text-align: right;
}

.checkbox-wrapper {
    margin-top: 20px;
}

.el-checkbox {
    display: flex;
    align-items: center;
}

.el-checkbox__label {
    display: flex;
    align-items: center;
}

.user-role {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 24px;
}

.login-code {
    text-align: center;
    font-size: 14px;
}

.login-code img {
    width: 260px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.el-input-group__append,
.el-input-group__prepend {
    color: #63065F;
}

.el-dropdown {
    font-size: 16px;
}

.personal-title {
    font-size: 24px;
    border-bottom: 1px solid #F7F7F7;
    padding-bottom: 24px;
    margin-bottom: 40px;
    color: #111827;
    display: flex;
    align-items: baseline;
    gap: 16px;
    width: 100%;
    white-space: nowrap;
}

.personal-title .span-text {
    font-size: 14px;
    color: #F41818;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.team-search {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-search-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-search-box {
    flex: 1;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.personal-content {
    display: flex;
    gap: 34px;
    align-items: flex-start;
}

.personal-sidebar {
    width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.user-info {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #F7F7F7;
    margin-bottom: 20px;
}

.user-info .avatar {
    width: 68px;
    height: 68px;
    margin: 0 auto 15px;
    background: #EFE6EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info .avatar-text {
    color: #63065F;
    font-size: 18px;
    font-weight: 600;
    width: 64px;
    text-align: center;
    line-height: 1.25;
    word-wrap: break-word;
}

/* 较长角色文本（如英文 Supervisor / Contact Person）：分级缩小字号，确保不超出圆形头像 */
.user-info .avatar-text.fs-md {
    font-size: 14px;
}

.user-info .avatar-text.fs-sm {
    font-size: 12px;
}

.user-info .user-phone {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 8px;
}

.user-info .user-school {
    font-size: 16px;
    color: #1F2937;
}

.user-info .switch-identity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 16px;
    padding: 9px 12px;
    border: 1px solid #63065F;
    background: #fff;
    color: #63065F;
    border-radius: 22px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s;
}

.user-info .switch-identity-btn:hover {
    background: #63065F;
    color: #fff;
}

.user-info .switch-identity-btn i {
    font-size: 15px;
}

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 3px;
    height: 14px;
    background-color: transparent;
    transition: all 0.3s;
}

.menu-item:hover {
    background: #f8fafc;
}

.menu-item.active {
    color: #63065F;
}

.menu-item.active::after {
    background-color: #63065F;
}

.menu-item.active .menu-text {
    color: #63065F;
    font-weight: 600;
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.unread-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #F56C6C;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    line-height: 1;
    box-sizing: border-box;
    white-space: nowrap;
}

.arrow-icon {
    font-size: 12px;
    color: #9ca3af;
}

.logout-area {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #9CA3AF;
    font-size: 16px;
    transition: all 0.3s;
}

.logout-btn:hover {
    color: #EF4444;
    background: #FEF2F2;
}

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

.personal-right {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    flex: 1;
}

.register-form .faq-content .faq-list {
    padding: 0;
}

.register-form .from-content {
    width: 75%;
}

.register-form .from-content .el-select {
    width: 100%;
}

.register-form .el-tabs__nav-scroll {
    justify-content: flex-start
}

.register-form .el-tabs__item {
    font-size: 18px;
    height: 58px;
}

.register-form .el-tabs__item.is-active {
    font-size: 24px;
}

.register-form .el-tabs__nav-wrap::after {
    display: block;
}

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

.register-form .tabs-header .el-tabs {
    flex: 1;
}

.register-form .tabs-header .personal-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex: 1;
}

.register-form .tabs-header .enroll-btn {
    margin-left: 20px;
    width: 100px;
}

.register-form .tabs-header .work-btns {
    display: flex;
    gap: 10px;
}

.register-form .tabs-header .history-btn,
.enroll-card-bg .history-btn,
.personal-right .history-btn {
    border: none;
    background: #63065F;
    color: #fff;
    min-width: 100px;
}

/* 历史信息入口：恢复展示（如需统一隐藏入口，在此处加 display: none） */

.register-form .tabs-header .history-btn--outline,
.enroll-card-bg .history-btn--outline,
.personal-right .history-btn--outline {
    background: #fff;
    color: #63065F;
    border: 1px solid #63065F;
}

.enroll-card-bg .award-btns,
.personal-right .award-btns {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.no-data-text {
    color: #909399;
    font-size: 14px;
    padding: 20px 0;
}

.register-form .from-content .work-text {
    font-size: 14px;
    color: #63065F;
    margin-top: 10px;
    background: rgba(99, 6, 95, 0.1);
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-left: 150px;
    width: calc(100% - 150px);
    box-sizing: border-box;
}

.register-form .from-content .work-text .work-suggest {
    width: 100%;
    text-align: left;
    color: #374151;
    word-break: break-all;
    margin-top: 10px;
}

.register-form .from-content .tips-text {
    color: #ef4444;
    font-size: 14px;
}

.history-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
}

.history-header .back-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #63065F;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
        /* 关键1：禁止被父容器压缩，不会挤成竖排 */
    flex-shrink: 0;
    /* 强制横向文字，杜绝全局竖排样式污染 */
    writing-mode: horizontal-tb
}

.history-header .back-btn:hover {
    background: rgba(99, 6, 95, 0.1);
}

.history-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    /* 兜底：任何内容都不允许溢出卡片边界 */
    overflow: hidden;
}

.history-card-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.history-year {
    font-weight: bold;
    font-size: 16px;
    color: #63065F;
}

.history-team {
    font-size: 16px;
    color: #1f2937;
    font-weight: 500;
}

.award-tag {
    font-size: 14px;
    color: #fff;
    background: #ef4444;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: auto;
}

.history-card-body {
    margin-bottom: 16px;
}

.history-card-body .info-row {
    display: flex;
    padding: 8px 0;
    font-size: 14px;
}

.history-card-body .info-row .label {
    color: #6b7280;
    width: 100px;
    flex-shrink: 0;
}

.history-card-body .info-row .value {
    color: #374151;
    flex: 1;
    /* 关键：允许 flex 项收缩到内容最小宽度以下，否则长文本（作品简介等）
       会把整行撑出卡片外，全部内容溢出到页面右侧 */
    min-width: 0;
    /* 长单词 / URL / 连续数字可强制换行，数据多时自动折行而非溢出 */
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.history-card-footer {
    display: flex;
    justify-content: flex-end;
}

.history-card-footer .detail-btn {
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #63065F;
    color: #63065F;
    background: #fff;
}

.history-card-footer .detail-btn:hover {
    background: #63065F;
    color: #fff;
}

.no-data-text {
    text-align: center;
    color: #909399;
    font-size: 14px;
    padding: 60px 0;
}

.teacher-section,
.member-section {
    margin-bottom: 30px;
}

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


.section-header .section-title {
    font-size: 40px;
    color: #111827;
}

.section-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.section-header .header-right {
    display: flex;
    gap: 24px;
}

.limit {
    font-size: 14px;
    color: #ef4444;
    font-weight: normal;
    margin-left: 8px;
    margin-top: 8px;
    display: block;
    line-height: 1.5;
}

.teacher-select {
    width: 200px;
}

.add-btn {
    padding: 9px 20px;
    background: #63065F;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

.add-btn-text span {
    color: #63065F;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.teacher-card,
.member-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #EFEFFD;
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #EFEFFD;
    margin-bottom: 15px;
    gap: 8px;
    flex-wrap: wrap;
}

.card-header .name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.card-header .role {
    font-size: 12px;
    padding: 3px 10px;
    background: #f3f4f6;
    color: #666;
    border-radius: 4px;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.card-header .role.captain {
    background: #EFE6EF;
    color: #63065F;
}

.card-actions {
    margin-left: auto;
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.action-btn {
    font-size: 13px;
    cursor: pointer;
    color: #666;
}

.action-btn.edit {
    color: #666;
}

.action-btn.view {
    color: #666;
}

.action-btn.delete {
    color: #ef4444;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    min-width: 0;
}

.info-row .label {
    font-size: 14px;
    color: #6B7280;
    flex-shrink: 0;
    white-space: nowrap;
}

.info-row .value {
    font-size: 14px;
    color: #333;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    text-align: right;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.enroll-card {
    /* background: #F9FBFF; */
    border-radius: 16px;
    padding: 16px 24px;
    border: 1px solid #f3f4f6;
    margin-bottom: 30px;
    display: block;
}

.enroll-card-bg {
    background: #F9FBFF;
}

.enroll-card .card-header-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.team-dage {
    border-radius: 4px;
    background: rgba(99, 6, 95, 0.1);
    font-size: 12px;
    font-weight: normal;
    padding: 2px 10px;
    color: #63065F;
    margin-left: 10px;
}

.status {
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 4px;
    background: rgba(99, 6, 95, 0.05);
    color: #63065F;
}

.status.success {
    background: #f0f8f9;
    color: #00A88E;
}

.status.noaward {
    background: #f1f1f1;
    color: #666666;
}

.status.tj-text {
    background: #E7F3FF;
    color: #1890FF;
}

.card-info {
    /* margin-bottom: 16px; */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-info .school-text {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.card-info .school-text:last-child {
    color: #111827;
}

.work-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #111827;
    font-size: 14px;
}

.card-divider {
    height: 1px;
    background: #f3f4f6;
    margin-bottom: 16px;
    margin-top: 12px;
}

.card-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.time-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.time-text i {
    font-size: 16px;
}

.time-text p {
    display: flex;
    gap: 24px;
}

.personal-right .el-form-item__content {
    line-height: normal;
}

/* 统一个人中心所有输入框/下拉框宽度 */
.personal-right .from-content .el-input,
.personal-right .from-content .el-select {
    width: 100% !important;
}

/* label 与输入框的对齐 */
.personal-right .el-form-item__label {
    line-height: 40px;
    text-align: right;
    padding: 0 12px 0 0;
    white-space: nowrap;
    overflow: visible;
}

/* label-width="auto" 时标签自动撑开，不被输入框遮挡 */
.personal-right .el-form--label-auto .el-form-item__label {
    width: auto !important;
    min-width: auto;
}

.personal-right .el-form-item__content {
    white-space: nowrap;
}

.form-label {
    display: block;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-label span {
    color: #FF0000;
    font-size: 12px;
}

.form-label .required {
    color: #9333ea;
    font-weight: normal;
    margin-left: 8px;
}

.form-hint {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.form-hint.red {
    color: #ef4444;
}

.radio-group {
    display: flex;
    gap: 60px;
    padding-left: 24px;
}

.upload-hint {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

.team-info-card {
    background: #FAFAFF;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #f3f4f6;
    margin-bottom: 20px;
}

.team-info-card .team-header {
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 20px;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.award-details {
    grid-template-columns: repeat(1, 1fr) !important;
    row-gap: 16px !important;
    column-gap: 0px !important
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-grid .info-item {
    display: flex;
    gap: 6px;
}

.info-grid .info-item.full-width {
    grid-column: span 2;
}

.info-grid .info-item .label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    width: 80px;
    line-height: 1.6;
}

.info-grid .info-item .value {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.paw-tips {
    font-size: 12px;
    color: #666;
}

.tab-nav-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #F7F7F7;
    margin-bottom: 40px;
}

.tab-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 18px;
    color: #111827;
    cursor: pointer;
}

.tab-nav span {
    padding-bottom: 24px;
}

.tab-nav .active {
    color: #63065F;
    font-size: 22px;
    border-bottom: 2px solid #63065F;
    font-weight: bold;
}

.px-border {
    color: #63065F;
    border: 1px solid #63065F !important;
}

/* 作品信息列表 */
.production-info-section {
    margin-bottom: 30px;
}

.production-list {
    background: #fff;
    border: 1px solid #EFEFFD;
    border-radius: 12px;
    overflow: hidden;
}

.production-list-item {
    display: flex;
    padding: 20px 24px;
    border-bottom: 1px solid #F3F4F6;
}

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

.production-list-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    min-width: 100px;
    flex-shrink: 0;
    line-height: 1.6;
}

.production-list-value {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    flex: 1;
}

.production-list-value.pre-wrap {
    white-space: pre-wrap;
    word-break: break-word;
}

.process-item {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    position: relative;
}

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

.process-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    height: 100%;
    border-left: 1px dashed #63065F;
    margin-top: 10px;
}

.process-item:last-child::before {
    display: none;
}

.process-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #63065F;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #63065F;
    margin-top: 8px;
}

.process-content {
    flex: 1;
}

.process-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.process-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 8px 0;
}

.process-desc:last-child {
    margin-bottom: 0;
}

.width90 {
    width: 90%;
    margin: auto;
}

.pszp-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111827;
    display: flex;
    align-items: baseline;
    gap: 16px;
    width: 100%;
}

.judge-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.judge-container .judge-left {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 620px;
    box-sizing: border-box;
    float: left;
}

.judge-container .judge-right {
    flex: 1;
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
}

.card-body .info-item {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 8px;
}

.card-body .info-item .info-label {
    color: #6B7280;
}

.card-body .info-item.ai-check-item-row .info-label {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.card-body .info-item .info-value {
    color: #111827;
}

.ai-check-result {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ai-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-check-name {
    font-size: 14px;
    color: #6B7280;
}

.ai-risk-tag {
    font-size: 14px;
    font-weight: 600;
}

.ai-risk-tag.risk-low {
    color: #8ef393;
}

.ai-risk-tag.risk-medium {
    color: #D97706;
}

.ai-risk-tag.risk-high {
    color: #e63333;
}

/* AI查重：无记录时的提示样式 */
.ai-check-empty {
    font-size: 14px;
    color: #9CA3AF;
}

/* ============ AI查重结果样式 ============ */
.ai-check-card {
    margin-top: 20px;
}

.ai-check-section {
    margin-bottom: 16px;
}

.ai-check-section:last-child {
    margin-bottom: 0;
}

/* .ai-check-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #fafafa;
} */

.ai-check-item:last-child {
    margin-bottom: 0;
}

.ai-check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ai-check-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    min-width: 60px;
    margin-right: 8px;
}

.ai-check-info {
    font-size: 13px;
    color: #6B7280;
    flex: 1;
}

/* 风险等级标签通用样式 */
.ai-risk-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* 高风险 - 红色 */
.ai-risk-badge.risk-high {
    background: #FA5151;
}

/* 中风险 - 橙色 */
.ai-risk-badge.risk-medium {
    background: #FF9800;
}

/* 低风险 - 绿色 */
.ai-risk-badge.risk-low {
    background: #71DB34;
}

/* ============ 视频对比弹窗 ============ */
.video-compare-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.video-compare-item {
    flex: 1;
    min-width: 380px;
}

.video-compare-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    text-align: center;
}

/* ============ 文档对比弹窗 ============ */
.doc-compare-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.doc-compare-item {
    flex: 1;
    min-width: 380px;
}

.doc-compare-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    text-align: center;
}

.judge-right .score-header {
    font-size: 18px;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.el-collapse {
    border: none;
}

.el-collapse-item__header {
    border: none;
    background-color: transparent;
}

.el-collapse-item__wrap {
    border: none;
    background-color: transparent;
}

.el-collapse-item__content {
    padding-bottom: 0;
}

.work-from .form-label {
    margin-bottom: 0;
}

.year-select .el-input__inner {
    border: none;
    box-shadow: none;
    background: transparent;
}

/* 队员只读模式：禁用表单控件不显示灰色（保持正常外观，仅阻止交互） */
.from-content .el-input.is-disabled .el-input__inner,
.from-content .el-textarea.is-disabled .el-textarea__inner {
    background-color: #fff !important;
    color: #606266 !important;
    cursor: default !important;
}
.from-content .el-input.is-disabled .el-input__inner::-webkit-input-placeholder,
.from-content .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder {
    color: #C0C4CC !important;
}
.from-content .el-select .el-input.is-disabled .el-input__inner {
    cursor: default !important;
}
.from-content .el-radio.is-disabled .el-radio__label,
.from-content .el-radio__input.is-disabled + .el-radio__label {
    color: #606266 !important;
    cursor: default !important;
}
/* 上传组件禁用时不改变外观 */
.from-content .el-upload--disabled {
    cursor: default !important;
}

/* 评委页面禁用按钮样式：主题色淡化 */
.el-button--primary.is-disabled,
.el-button--primary.is-disabled:active,
.el-button--primary.is-disabled:focus,
.el-button--primary.is-disabled:hover {
    color: #FFF;
    background-color: rgba(99, 6, 95, 0.4);
    border-color: rgba(99, 6, 95, 0.4);
}

@media (max-width: 768px) {
    .el-dialog {
        width: 90% !important;
    }
}

/* ===== 文档预览弹窗 ===== */
.doc-preview-container {
    display: flex;
    flex-direction: column;
    height: 78vh;
    min-height: 500px;
}
.doc-preview-toolbar {
    display: flex;
    gap: 8px;
    padding: 0 0 12px 0;
    border-bottom: 1px solid #ebeef5;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.doc-preview-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #f5f7fa;
    border-radius: 4px;
}
.doc-preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
    background: #fff;
}
.doc-preview-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #f5f7fa;
}
.doc-preview-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.doc-preview-unsupported {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 8px;
}

.v-modal {
    /* 浅色半透明遮罩：保留轻微遮罩感，不用黑色，弹框下方内容仍隐约可见 */
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.55) !important;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}