﻿
.container {
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.user-container {
    display: flex; /* 使用Flexbox布局 */
    flex-wrap: nowrap;
    align-items: center; /* 垂直居中 */
    justify-content: left; /* 左右分布 */
    padding: 2px; /* 添加一些内边距 */
    gap: 2vh; /* 添加一些间距 */
}

.img-container {
    display: flex; /* 使用Flexbox布局 */
    flex-wrap: wrap;
    align-items: center; /* 垂直居中 */
    justify-content: left; /* 左对齐 */
    padding: 2px; /* 添加一些内边距 */
    gap: 2vh; /* 添加一些间距 */
}

.circular-icon {
    border-radius: 50%; /* 设置为圆形 */
    width: 35px; /* 设置宽度 */
    height: 35px; /* 设置高度 */
    object-fit: cover; /* 确保图片填充整个区域 */
}

.unit-input {
    display: flex;
}
    .unit-input img {
        width: 45px;
        height: 45px;
        background-color: #E6F2F7;
        border-radius: 6px 0 0 6px;
    }
    .unit-input label {
        display: flex;
        align-items: center;
        width: 280px;
        height: 45px;
        border-radius: 0 6px 6px 0;
        cursor: pointer;
        background-color: #E6F2F7;
        background-repeat: no-repeat;
        background-position: right 5px center;
        background-size: 32px;
    }


/* 设置按钮容器的样式 */
.button-container {
    display: flex; /* 使用Flexbox布局 */
    justify-content: space-around; /* 平均分布按钮 */
    align-items: center; /* 垂直居中 */
    padding: 5px; /* 添加一些内边距 */
}

.button-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.dimen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    white-space: nowrap; /* 文字不自动换行 */
    background: linear-gradient(135deg,#3E9ACC 0%,#77BCD9 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    gap: 12px;
    cursor: pointer;
    transition: background .2s;
}
    .dimen-btn img {
        height: 22px;
        display: inline-block;
    }

    .dimen-btn:hover {
        background: linear-gradient(135deg,#127CBE 0%,#3E9ACC 100%);
    }

.tooltip {
    position: relative;
    display: block;
    cursor: pointer;
}
    .tooltip small {
        font-family: 'Source Han Sans CN', monospace; /* 等宽字符 */
        font-size: 14px;
        color: #434347;
        opacity: 0.6;
    }
    .tooltip .tooltiptext {
        visibility: hidden;
        width: auto;
        max-width: 400px;
        background-color: #fff8dc; /* 淡黄色 */
        color: #333;
        text-align: left;
        border-radius: 4px;
        padding: 6px 12px;
        position: absolute;
        z-index: 1;
        bottom: 120%;
        left: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        font-size: 13px;
        white-space: pre-line;
        word-break: break-all;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 5px;
    text-align: left;
}

.rightPanel {
    display: flex; /* 使用Flexbox布局 */
    font-family: 'Source Han Sans CN', sans-serif; /* 字体 */
    height: 100%;
    width: 570px;
    position: absolute;
    background: rgba(255,255,255,1); /* 半透明白色 */
    right: 0;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.right-caption {
    display: flex; /* 使用Flexbox布局 */
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 左右分布 */
    margin-top: 10px;
    margin-right: 15px;
}
    .right-caption nav {
        display: flex; /* 使用Flexbox布局 */
        align-items: center; /* 垂直居中 */
    }
        .right-caption nav img {
            width: 20px;
            height: 20px;
        }

        .right-caption nav label {
            font-size: 18px;
            margin-left: 10px;
            color: #0F4A60;
        }

    .right-caption img {
        cursor: pointer;
    }

.right-section {
    display: flex;
    flex-direction: column;
}
    .right-section .title {
        margin-top: 20px;
        color: #0F4A60;
    }
    .right-section .sectn {
        display: flex;
        margin-top: 10px;
        color: #0F4A60;
    }
    .right-section span {
        color: #0F4A60;
    }

/* 进度条样式 */
.easy-progress-container {
    display: flex; /* 使用Flexbox布局 */
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 左右分布 */
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
    height: 48px;
    border: 1px solid #e9ecef;
}

.easy-progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.easy-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 12px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

    .easy-progress-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: progress-shine 2s infinite;
    }

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

