/* 网格背景 */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* 扫描线动画 */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    animation: scan 8s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* 粒子背景 */
.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: float 20s infinite linear;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* 滚动条样式*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 212, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.4);
}


#app, .page {
    max-width: 100%;
    min-width: 1440px;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
}

/*header*/
.page-header {
    height: 60px;
    background-color: rgba(10, 20, 40, 0.8);
    border-bottom: 1px solid #093249;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    animation: logoPulse 3s infinite;
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.system-title {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.system-title span {
    display: block;
    font-size: 10px;
    color: rgba(0, 212, 255, 0.5);
    letter-spacing: 2px;
    margin-top: 2px;
}

.header-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.header-nav-item:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
}

.header-nav-item.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
}

.header-nav-item i {
    font-size: 14px;
}

.header-time {
    font-size: 15px;
    color: #00d4ff;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/*page body*/
.page-body {
    padding-top: 60px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.page-body-H {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-body-H-nav {
    padding: 20px;
}

.page-body-content {
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
    flex: 1;
}

/*station-select*/
.station-select-box {
    display: flex;
    flex-direction: column;
    padding: 0 10px 20px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.station-select-box .card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 310px;
    overflow: hidden;
}

.station-select-box .card-container .el-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 310px;
}

.station-select-box .card-container .el-card .el-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 310px;
    overflow: hidden;
}

.station-select-box .card-container .el-card .el-card__body .station-select-box-query {
    padding-left: 20px;
}

.station-select-box .card-container .el-card .el-card__body .tree-box {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: 20px;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .el-tree-node__content {
    display: flex;
    align-items: center;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .is-current .el-tree-node__content {
    background-color: #0A2946;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .el-tree-node__children .el-tree-node__expand-icon {
    display: none;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .tree-one {
    display: inline-block;
    cursor: pointer;
    padding-top: 4px;
    padding-bottom: 4px;
    flex: 1;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .tree-one-active {
    display: inline-block;
    cursor: pointer;
    padding-top: 4px;
    padding-bottom: 4px;
    flex: 1;
    background-color: #0A2946;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .tree-one .tree-name {
    display: flex;
    align-items: center;
    height: 20px;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .tree-one .tree-name .icon-img {
    width: 20px;
    height: 20px;
}

.station-select-box .card-container .el-card .el-card__body .tree-box .tree-one .tree-name .text {
    height: 20px;
    display: flex;
    align-items: center;
}

.online-yuan {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E43D30;
}

.online-yuan-in {
    background-color: #239342;
}

/*page-body-content-h*/
.page-body-content-h {
    flex: 1;
    padding: 0 20px 20px 10px;
    display: flex;
    flex-direction: column;
    min-width: 770px;
}

.page-body-content-h .card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-body-content-h .card-container .el-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-body-content-h .card-container .el-card .el-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.show-content {

}

.list-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/*screen-body*/
.screen-H {
    flex: 1;
    display: flex;
}

.screen-H-nav {
    height: 100%;
    width: 64px;
    border-right: 1px solid #093249;
    display: flex;
    flex-direction: column;
    background-color: #0A1429;
}

.screen-H-nav .screen-H-nav-item {
    padding: 10px;
}

.screen-H-nav-item-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #0A1429;
    margin-top: 20px;
    padding: 6px 0;
    cursor: pointer;
}

.screen-H-nav-item-one-ac {
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    background-color: rgba(0, 212, 255, 0.12);
}

.screen-H-nav-item-icon {
    color: #B6B9C0;
    font-size: 16px;
}

.screen-H-nav-item-text {
    color: #B6B9C0;
    font-size: 10px;
    margin-top: 4px;
}

.screen-H-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screen-body {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px;
}

.screen-body-row {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.screen-body-col {
    height: 50%;
    display: flex;
    flex-direction: column;
}

.screen-card {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screen-card .card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screen-card .card-container .el-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screen-card .card-container .el-card .el-card__body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.screen-card .card-container .el-card .el-card__body .chart {
    width: 100%;
    flex: 1;
}

/*map-body*/
.map-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.map-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
}

.map-box #mapDiv {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.map-box .query-box {
    width: 240px;
    height: 80%;
    position: absolute;
    left: 2%;
    top: 2%;
    background: #0A1429;
    color: #B6B9C0;
    z-index: 2;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-box .query-box .query-box-search {
    padding-left: 10px;
    padding-top: 10px;
}

.map-box .query-box .query-box-select {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.map-box .query-box .query-box-select .query-box-select-org {
    font-size: 12px;
    color: #B6B9C0;
}

.map-box .map-data {
    width: 400px;
    height: 80%;
    position: absolute;
    right: 6%;
    top: 2%;
    background: #0A1429;
    color: #B6B9C0;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
}

/*big-show*/
.big-show {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.big-show .card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-show .card-container .el-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-show .card-container .el-card .el-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-show .card-container .el-card .el-card__body .big-show-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-show .card-container .el-card .el-card__body .big-show-box .el-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-show .card-container .el-card .el-card__body .big-show-box .el-carousel .el-carousel__container {
    flex: 1;
    height: 100%;
}

.big-show .card-container .el-card .el-card__body .big-show-box .el-carousel .el-carousel__container .el-carousel__item {
    flex: 1;
    height: 100%;
}

/*zhuye*/
.main-content {
    padding: 60px 50px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title h1 {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 12px;
    color: rgba(0, 212, 255, 0.5);
    letter-spacing: 4px;
}

.modules-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-btn {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.module-btn:hover::before {
    background: rgba(0, 212, 255, 0.15);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.module-btn::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.module-btn:hover::after {
    border-color: rgba(0, 212, 255, 0.4);
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        clip-path: polygon(0 0, 0 0, 0 0);
    }
    25% {
        clip-path: polygon(0 0, 100% 0, 100% 0);
    }
    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }
    75% {
        clip-path: polygon(0 0, 0 0, 100% 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }
}

.module-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    margin-bottom: 18px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 2;
}

.module-icon i {
    font-size: 30px;
    transition: all 0.4s ease;
}

.module-btn:hover .module-icon {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.module-btn:hover .module-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.module-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.module-btn:hover .module-label {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.data-stream {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-btn:hover .data-stream {
    opacity: 1;
}

.data-bit {
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    animation: bitPulse 0.8s infinite;
}

.data-bit:nth-child(2) {
    animation-delay: 0.2s;
}

.data-bit:nth-child(3) {
    animation-delay: 0.4s;
}

.data-bit:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes bitPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.scan-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid transparent;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.module-btn:hover .scan-circle {
    opacity: 1;
    animation: scanExpand 1.5s infinite;
}

@keyframes scanExpand {
    0% {
        width: 200px;
        height: 200px;
        opacity: 0.8;
        border-color: rgba(0, 212, 255, 0.6);
    }
    100% {
        width: 280px;
        height: 280px;
        opacity: 0;
        border-color: rgba(0, 212, 255, 0);
    }
}

.connector-line {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), transparent);
}

.module-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2), transparent);
}

/*profile-box*/
.profile-box {
    display: flex;
    align-items: center;
}

.logout-btn {
    margin-left: 10px;
    font-size: 14px;
    border: 1px solid #542635;
    background-color: #0B142A;
    color: #542635;
    cursor: pointer;
}

.profile-info {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.profile-info-name {
    font-size: 14px;
}

.profile-info-org {
    font-size: 12px;
    color: #B1B4BA;
}

/*login*/
.login-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 450px;
    max-height: 600px;
    background: rgba(10, 25, 45, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    margin: auto;
    border: 1px solid rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 登录页面特有的科技感装饰 */
.login-container .tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.login-container .tech-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 212, 255, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.login-container .tech-dot:nth-child(1) {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.login-container .tech-dot:nth-child(2) {
    top: 10px;
    right: 10px;
    animation-delay: 0.5s;
}

.login-container .tech-dot:nth-child(3) {
    bottom: 10px;
    left: 10px;
    animation-delay: 1s;
}

.login-container .tech-dot:nth-child(4) {
    bottom: 10px;
    right: 10px;
    animation-delay: 1.5s;
}

/* 左侧装饰区域 */
.decoration-section {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 150, 255, 0.1) 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(0, 212, 255, 0.15);
}

/* 装饰背景 */
.decoration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* 图标容器 */
.icon-container {
    margin-bottom: 40px;
}

.icon-container .logo-icon {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

/* 系统信息 */
.system-info {
    text-align: center;
    z-index: 1;
}

.system-info h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.system-info p {
    font-size: 13px;
    color: rgba(0, 212, 255, 0.7);
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 0;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 80px;
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.feature-item i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.feature-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* 右侧登录区域 */
.login-section {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 登录头部 */
.login-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 20px;
}

.logo-area {
    margin-bottom: 15px;
}

.logo-area .logo-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.login-header h1 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 14px;
    color: rgba(0, 212, 255, 0.6);
}

/* 登录方式切换 */
.login-tabs {
    display: flex;
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 0;
    padding: 4px;
    margin-bottom: 30px;
    position: relative;
}

.login-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    border: 1px solid transparent;
}

.login-tab i {
    font-size: 16px;
}

.login-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 212, 255, 0.1);
}

.login-tab.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 150, 255, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* 登录表单容器 */
.login-form-container {
    position: relative;
    min-height: 380px;
}

.login-form-panel {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(20px);
}

.login-form-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 微信扫码登录样式 */
.wechat-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 20px;
}

.qr-code-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 0;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.qr-code {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #07c160, #06ae56);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.qr-code i {
    font-size: 80px;
    color: #fff;
}

.qr-code-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.qr-code-wrapper:hover .qr-code-overlay {
    opacity: 1;
}

.refresh-qr {
    text-align: center;
}

.refresh-qr i {
    font-size: 40px;
    color: #00d4ff;
    margin-bottom: 10px;
    display: block;
}

.refresh-qr span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.scan-tips {
    text-align: center;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 0;
    max-width: 300px;
}

.scan-tips h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.scan-tips p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.scan-tips i {
    color: #07c160;
}

/* 短信验证码按钮 */
.send-code-btn {
    position: absolute;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.send-code-btn:hover:not(:disabled) {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.send-code-btn:disabled {
    color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 20, 40, 0.6);
    border-color: rgba(0, 212, 255, 0.1);
    cursor: not-allowed;
}

/* 登录表单 */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 表单样式 */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: rgba(0, 212, 255, 0.5);
    z-index: 1;
}

.form-group input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    font-size: 14px;
    color: #fff;
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    background: rgba(0, 20, 40, 0.8);
}

.form-group input:hover:not(:focus) {
    border-color: rgba(0, 212, 255, 0.4);
}

/* 密码切换按钮 */
.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.toggle-password:hover {
    opacity: 0.7;
}

.eye-icon {
    width: 18px;
    height: 18px;
    color: #999;
}

/* 验证码样式 */
.captcha-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.captcha-wrapper .input-wrapper {
    flex: 1;
}

.captcha-display {
    width: 110px;
    height: 44px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    background: rgba(0, 20, 40, 0.6);
}

.captcha-display:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

#captchaCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* 表单选项 */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0;
    position: relative;
    transition: all 0.2s ease;
    background: rgba(0, 20, 40, 0.6);
}

.checkbox-label input:checked + .checkbox-custom {
    background: rgba(0, 212, 255, 0.8);
    border-color: rgba(0, 212, 255, 0.8);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    font-size: 13px;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.forgot-password:hover {
    color: #40a9ff;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* 登录按钮 */
.login-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(0, 150, 255, 0.8));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 1px;
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 1), rgba(0, 150, 255, 1));
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.login-btn:active {
    transform: translateY(0);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* 系统页脚 */
.system-footer {
    text-align: center;
    margin-top: 25px;
}

.system-footer p {
    font-size: 12px;
    color: rgba(0, 212, 255, 0.5);
}

/* 加载动画 */
.login-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.login-btn.loading span::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

/* 输入错误状态 */
.form-group input.error {
    border-color: #ff4d4f;
    box-shadow: 0 0 10px rgba(255, 77, 79, 0.3);
}

.form-group input.success {
    border-color: #52c41a;
    box-shadow: 0 0 10px rgba(82, 196, 26, 0.3);
}

/* 表单错误提示 */
.error-message {
    font-size: 12px;
    color: #ff4d4f;
    margin-top: 4px;
    display: none;
    text-shadow: 0 0 5px rgba(255, 77, 79, 0.5);
}

.error-message.show {
    display: block;
}


/*sys-h*/
.sys-h {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.sys-h-nav {
    width: 258px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.sys-h-nav-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-right: 10px;
}

.sys-h-nav-box .card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sys-h-nav-box .card-container .el-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sys-h-nav-box .card-container .el-card .el-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.sys-h-content {
    flex: 1;
    padding: 20px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.sys-h-content-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sys-h-content .card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sys-h-content .card-container .el-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sys-h-content .card-container .el-card .el-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/*nav*/
.sidebar-header {
    background: rgba(0, 20, 40, 0.8);
    color: #fff;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.sidebar-header i {
    margin-right: 10px;
    color: #00d4ff;
}

.sidebar-menu {
    padding: 10px 0;
}

.menu-item {
    padding: 12px 20px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 212, 255, 0);
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
}

.menu-item:hover::before {
    background: rgba(0, 212, 255, 0.05);
}

.menu-item.active {
    background: rgba(0, 212, 255, 0.15);
    border-left-color: #00d4ff;
    color: #00d4ff;
    font-weight: 600;
}

.menu-item.active::before {
    background: rgba(0, 212, 255, 0.1);
}

.menu-item i {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    color: rgba(0, 212, 255, 0.6);
}

.menu-item.active i,
.menu-item:hover i {
    color: #00d4ff;
}

/*map-address-select*/
.map-address-select {
    padding: 10px;
}