/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    text-align: center;
}

/* 关键：固定容器宽高并居中 */
.fixed-container {
    width: 1920px;  /* 标准固定宽度 */
    height: 1080px; /* 标准固定高度 */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    background: #03050C;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 234, 255, 0.1);
}

.content_wrap {
    width: 100%;
    height: 100%;
    padding: 35px;
    box-sizing: border-box;
}

/* 头部样式 */
.title_wrap {
    height: 60px;
    background-image: url('../img/top.png');
    background-size: cover;
    background-position: center center;
    position: relative;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.guang {
    position: absolute;
    bottom: -26px;
    background-image: url('../img/guang.png');
    background-position: 80px center;
    width: 100%;
    height: 56px;
    background-size: contain;
    background-repeat: no-repeat;
}

.zuojuxing,
.youjuxing {
    position: absolute;
    top: -2px;
    width: 140px;
    height: 6px;
    background-image: url('../img/headers/juxing.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.zuojuxing {
    left: 11%;
}

.youjuxing {
    right: 11%;
}

.title {
    position: relative;
    text-align: center;
    height: 60px;
    line-height: 46px;
}

.title-text {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 6px;
    width: 100%;
    background: linear-gradient(92deg, #0072ff 0%, #00eaff 48.8525390625%, #01aaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: brightness(1) drop-shadow(0 0 10px rgba(0, 234, 255, 0.2));
    }
    to {
        filter: brightness(1.1) drop-shadow(0 0 20px rgba(0, 234, 255, 0.4));
    }
}

.timers {
    position: absolute;
    right: 0;
    top: 30px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.timers span:first-child {
    margin-right: 8px;
}

.setting_icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: 12px;
}

.setting_icon img {
    width: 100%;
    height: 100%;
}

/* 轮播样式 */
.el-carousel {
    height: calc(100% - 20px);
    position: relative;
    overflow: hidden;
}

/* 轮播项样式 - 修复轮播功能的关键 */
.el-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.el-carousel-item.active {
    opacity: 1;
    z-index: 1;
}

/* 作战群进度卡片样式 */
.group-progress-card {
    background: #150639;
    border-radius: 16px;
    border: 1px dashed #6c3b7e;
    padding: 40px 80px;
    margin-top: 45px;
    position: relative;
    height: calc(100% - 140px);
}

.progress-content {
    margin-top: 60px;
    height: 80%;
}

.progress-left {
    width: 40%;
    min-width: 320px;
    float: left;
}

.progress-titles {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    margin-left: 90px;
    letter-spacing: 1px;
}

.progress-titles img {
    margin-right: 8px;
}

.progress-title {
    font-size: 32px;
    color: #00eaff;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.progress-title img {
    margin-right: 8px;
}

.progress-title.right {
    color: #ffb6b6;
}

.circle-progress {
    position: relative;
    width: 480px;
    height: 480px;
    margin: auto ;
}

.circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
}

.circle-bg {
    stroke: #007088;
    cx: 60;
    cy: 60;
    r: 50;
    stroke-width: 16;
    fill: none;
}

.circle-bar {
    stroke: #00FFF5;
    cx: 60;
    cy: 60;
    r: 50;
    stroke-width: 16;
    fill: none;
    transition: stroke-dashoffset 0.6s;
}

.circle-center {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    text-align: center;
    padding-top: 160px;
}

.circle-percent {
    font-size: 76px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}

.circle-label {
    font-size: 22px;
    color: #b6b6ff;
    margin-top: 12px;
    letter-spacing: 2px;
}

.progress-right {
    width: 55%;
    min-width: 320px;
    padding-left: 32px;
    float: right;
}

.depart-list {
    margin-top: 60px;
    height: calc(100% - 120px); /* 调整高度计算 */
    overflow: hidden;
}

.depart-row {
    margin-bottom: 60px;
    height: 70px;
}

.depart-label {
    width: 106px;
    font-size: 24px;
    color: #fff;
    text-align: right;
    margin-right: 20px;
    float: left;
    line-height: 64px;
}

.depart-bar-bg {
    height: 64px;
    background: #5B233F;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-left: 126px;
}

.depart-bar {
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    padding-right: 16px;
    position: relative;
    transition: width 0.6s ease-out;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.depart-bar-text {
    position: absolute;
    z-index: 2;
    right: 16px; /* 文字位置调整 */
}

.depart-bar-text-active {
    position: absolute;
    z-index: 2;
    left: 100px;
}

.progress-footer {
    font-size: 17px;
    color: #b6b6ff;
    padding-left: 80px;
    padding-right: 80px;
    clear: both;
    text-align: left;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.footer-right {
    text-align: right;
    flex-shrink: 0;
}

.footer-right {
    font-size: 15px;
}

/* 项目进度样式 */
.progress-board {
    background: #150639;
    padding: 35px;
    margin-top: 45px;
    height: calc(100% - 140px);
    border-radius: 16px;
    border: 1px dashed #6c3b7e;
    overflow: hidden;
}

.progress-flex {
    margin: 0 25px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.progress-row {
    margin-bottom: 32px;
}

.progress-group-half {
    width: 46%;
    margin-right: 8%;
    margin-bottom: 35px;
    border-radius: 12px;
    border: 1px dashed #6c3b7e;
    background: rgba(34, 20, 56, 0.8);
    padding: 20px 24px;
    box-sizing: border-box;
    float: left;
}

.progress-group-half:nth-child(2n) {
    margin-right: 0;
}

.progress-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.progress-main {
    width: 100%;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

.progress-main > div:first-child {
    margin-bottom: 8px;
}

.progress-desc {
    font-size: 17px;
    color: #fff;
    margin-bottom: 6px;
    margin-left: 10px;
    font-weight: 500;
}

.progress-version {
    font-size: 17px;
    color: #fff;
    margin-bottom: 6px;
}

.progress-date {
    font-size: 17px;
    color: #fff;
    margin-bottom: 4px;
}

.progress-bar-wrap {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.progress-bar-bg {
    flex: 1;
    height: 16px;
    background: #134B4B;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-right: 12px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #01D78A 0%, #00B9E1 100%);
    border-radius: 8px;
    transition: width 0.6s ease-out;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar.done {
    background: linear-gradient(90deg, #00B9E1 0%, #0072ff 100%);
}

.progress-percent {
    font-size: 16px;
    color: #00eaff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.2);
}

/* 超时项目样式 */
.progress-group-half.overdue {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
}

.progress-group-half.overdue .progress-title span {
    color: #ff6b6b;
}

.progress-bar.overdue {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e8e 100%);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.progress-percent.overdue {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

/* 无数据提示 */
.no-data {
    text-align: center;
    padding: 50px;
    font-size: 24px;
    color: #b6b6ff;
}

