﻿:root {
    /*--primary: #9333ea;
    --secondary: #7c3aed;
    --accent: #c026d3;
    --dark: #0f0a1f;
    --light: #faf5ff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --bg-primary: #0f0a1f;
    --bg-secondary: #1a152f;
    --border-color: rgba(255, 255, 255, 0.15);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(168, 85, 247, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --bg-card: rgba(15, 10, 31, 0.7);
    --modal-bg: rgba(15, 10, 31, 0.95);
    --gradient-start: #9333ea;
    --gradient-end: #a855f7;
    --gradient-accent: #ec4899;
    --shadow-color: rgba(147, 51, 234, 0.3);
    --grid-color: rgba(147, 51, 234, 0.05);*/
    --primary: #10b981;
    --secondary: #059669;
    --accent: #34d399;
    --dark: #0f1f17;
    --light: #f0fdf4;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --bg-primary: #0f1f17;
    --bg-secondary: #152f1f;
    --border-color: rgba(255, 255, 255, 0.15);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(52, 211, 153, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --bg-card: rgba(15, 31, 23, 0.7);
    --modal-bg: rgba(15, 31, 23, 0.95);
    --gradient-start: #10b981;
    --gradient-end: #34d399;
    --gradient-accent: #22d3ee;
    --shadow-color: rgba(16, 185, 129, 0.3);
    --grid-color: rgba(16, 185, 129, 0.05)
}

body {
    font-family: 'Inter', sans-serif;
    /*background: radial-gradient(circle at 0% 0%, var(--grid-color) 0%, transparent 50%), radial-gradient(circle at 100% 0%, rgba(192, 38, 211, 0.15) 0%, transparent 50%), radial-gradient(circle at 100% 100%, rgba(217, 70, 239, 0.15) 0%, transparent 50%), radial-gradient(circle at 0% 100%, rgba(244, 114, 182, 0.1) 0%, transparent 50%), linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, #1e172a 70%, #150d25 100%);
*/
    background: radial-gradient(circle at 0% 0%, var(--bg-gradient-accent-1) 0%, transparent 50%), radial-gradient(circle at 100% 0%, var(--bg-gradient-accent-2) 0%, transparent 50%), radial-gradient(circle at 100% 100%, var(--bg-gradient-accent-3) 0%, transparent 50%), radial-gradient(circle at 0% 100%, var(--bg-gradient-accent-4) 0%, transparent 50%), linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 30%, var(--bg-gradient-3) 70%, var(--bg-gradient-4) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.tech-grid {
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
}

.announcement-bar {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 25%, var(--accent) 50%, var(--gradient-start) 75%, #c084fc 100%);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}
.bg-primary-color {
    background-color: var(--primary);
}
bg-secondary {
    background-color: var(--secondary)
}
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.product-card {
    transition: all 0.3s ease;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px var(--shadow-color);
        border-color: rgba(168, 85, 247, 0.5);
        background: rgba(15, 10, 31, 0.9);
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
    }

.category-btn {
    transition: all 0.2s ease;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
}

    .category-btn:hover {
        background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(168, 85, 247, 0.2));
        border-color: rgba(147, 51, 234, 0.4);
        transform: translateY(-2px);
    }

    .category-btn.active {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-color: rgba(147, 51, 234, 0.8);
        box-shadow: 0 4px 12px var(--shadow-color);
    }

.hero-gradient {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(168, 85, 247, 0.1) 30%, rgba(192, 132, 252, 0.1) 70%, rgba(233, 213, 255, 0.05) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

    .hero-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
        z-index: 1;
    }

    .hero-gradient > * {
        position: relative;
        z-index: 2;
    }

.pulse-glow {
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {

    0% {
        box-shadow: 0 0 20px var(--shadow-color), inset 0 0 20px rgba(147, 51, 234, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(147, 51, 234, 0.5), inset 0 0 30px rgba(147, 51, 234, 0.2);
    }

    100% {
        box-shadow: 0 0 20px var(--shadow-color), inset 0 0 20px rgba(147, 51, 234, 0.1);
    }
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state {
    padding: 48px 24px;
    text-align: center;
    color: #64748b;
}

    .empty-state i {
        font-size: 48px;
        margin-bottom: 16px;
        color: #cbd5e1;
    }

.filter-panel {
    background: rgba(15, 10, 31, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

/* 响应式产品列表布局 - 左右布局 */

.orders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* PC端：一行两列 */

@media (min-width: 768px) {

    .orders-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* 产品卡片内部左右布局 */

.product-card-inner {
    display: flex;
    flex-direction: row;
    height: 100%;
}

/* 产品图片区域 - 左侧 */

.product-image-container {
    /*width: 200px;
    min-width: 200px;
    background: rgba(168, 85, 247, 0.1);
    border-right: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;*/
    width: 150px;
    min-width: 150px;
    /* background: rgba(59, 130, 246, 0.1);
    border-right: 1px solid rgba(59, 130, 246, 0.2);*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image {
    width: 120px;
    height: 120px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-image i {
        font-size: 48px;
    }

/* 产品内容区域 - 右侧 */

.product-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* 移动端调整 */

@media (max-width: 767px) {

    .product-card-inner {
        flex-direction: row;
        min-height: 180px;
    }

    .product-image-container {
        width: 120px;
        min-width: 120px;
        padding: 12px;
    }

    .product-image {
        width: 80px;
        height: 80px;
    }

        .product-image i {
            font-size: 32px;
        }

    .product-content {
        padding: 12px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-description {
        font-size: 12px;
    }
}
/* 添加背景动态粒子效果 */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
/* 新增背景线条 */
.bg-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, transparent 99%, var(--line-color) 100%), linear-gradient(0deg, transparent 99%, var(--line-color) 100%);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/**消息框*/

.ivu-modal {
    width: auto;
    margin: 0 auto;
    position: relative;
    outline: 0;
    top: 100px
}

.ivu-modal-hidden {
    display: none !important
}

.ivu-modal-wrap {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

    .ivu-modal-wrap * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent
    }

.ivu-modal-mask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(55, 55, 55, .6);
    height: 100%;
    z-index: 1000
}

.ivu-modal-mask-hidden {
    display: none
}

.ivu-modal-content {
    position: relative;
    background-color: #fff;
    border: 0;
    border-radius: 6px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.ivu-modal-content-no-mask {
    pointer-events: auto
}

.ivu-modal-content-drag {
    position: absolute
}

    .ivu-modal-content-drag .ivu-modal-header {
        cursor: move
    }

.ivu-modal-content-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ivu-modal-header {
    border-bottom: 1px solid #e8eaec;
    padding: 14px 16px;
    line-height: 1
}

    .ivu-modal-header p,
    .ivu-modal-header-inner {
        display: inline-block;
        width: 100%;
        height: 20px;
        line-height: 20px;
        font-size: 16px;
        color: #17233d;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

.ivu-modal-close {
    z-index: 1;
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 8px;
    overflow: hidden;
    cursor: pointer
}

    .ivu-modal-close .ivu-icon-ios-close {
        font-size: 31px;
        color: #999;
        -webkit-transition: color .2s ease;
        transition: color .2s ease;
        position: relative;
        top: 1px
    }

        .ivu-modal-close .ivu-icon-ios-close:hover {
            color: #444
        }

.ivu-modal-body {
    padding: 16px;
    font-size: 14px;
    line-height: 1.5
}

.ivu-modal-footer {
    border-top: 1px solid #e8eaec;
    padding: 12px 18px 12px 18px;
    text-align: right
}

    .ivu-modal-footer button + button {
        margin-left: 8px;
        margin-bottom: 0
    }

.ivu-modal-fullscreen {
    width: 100% !important;
    top: 0;
    bottom: 0;
    position: absolute
}

    .ivu-modal-fullscreen .ivu-modal-content {
        width: 100%;
        border-radius: 0;
        position: absolute;
        top: 0;
        bottom: 0
    }

    .ivu-modal-fullscreen .ivu-modal-body {
        width: 100%;
        overflow: auto;
        position: absolute;
        top: 51px;
        bottom: 61px
    }

.ivu-modal-fullscreen-no-header .ivu-modal-body {
    top: 0
}

.ivu-modal-fullscreen-no-footer .ivu-modal-body {
    bottom: 0
}

.ivu-modal-fullscreen .ivu-modal-footer {
    position: absolute;
    width: 100%;
    bottom: 0
}

.ivu-modal-no-mask {
    pointer-events: none
}

@media (max-width:576px) {
    .ivu-modal {
        width: auto !important;
        margin: 10px
    }

    .ivu-modal-fullscreen {
        width: 100% !important;
        margin: 0
    }

    .vertical-center-modal .ivu-modal {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.ivu-modal-confirm {
    padding: 6px 16px 8px
}

.ivu-modal-confirm-head {
    padding: 0 12px 0 0
}

.ivu-modal-confirm-head-icon {
    display: inline-block;
    font-size: 28px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.ivu-modal-confirm-head-icon-info {
    color: #2d8cf0
}

.ivu-modal-confirm-head-icon-success {
    color: #19be6b
}

.ivu-modal-confirm-head-icon-warning {
    color: #f90
}

.ivu-modal-confirm-head-icon-error {
    color: #ed4014
}

.ivu-modal-confirm-head-icon-confirm {
    color: #f90
}

.ivu-modal-confirm-head-title {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    font-size: 16px;
    color: #17233d;
    font-weight: 500
}

.ivu-modal-confirm-body {
    padding-left: 40px;
    font-size: 14px;
    color: #515a6e;
    position: relative
}

.ivu-modal-confirm-body-render {
    margin: 0;
    padding: 0
}

.ivu-modal-confirm-footer {
    margin-top: 20px;
    text-align: right
}

    .ivu-modal-confirm-footer button + button {
        margin-left: 8px;
        margin-bottom: 0
    }

.ivu-btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1.5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 32px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px;
    -webkit-transition: color .2s linear, background-color .2s linear, border .2s linear, -webkit-box-shadow .2s linear;
    transition: color .2s linear, background-color .2s linear, border .2s linear, -webkit-box-shadow .2s linear;
    transition: color .2s linear, background-color .2s linear, border .2s linear, box-shadow .2s linear;
    transition: color .2s linear, background-color .2s linear, border .2s linear, box-shadow .2s linear, -webkit-box-shadow .2s linear;
    color: #515a6e;
    background-color: #fff;
    border-color: #dcdee2
}

    .ivu-btn > i,
    .ivu-btn > span {
        display: inline-block
    }

    .ivu-btn,
    .ivu-btn:active,
    .ivu-btn:focus {
        outline: 0
    }

        .ivu-btn:not([disabled]):hover {
            text-decoration: none
        }

        .ivu-btn:not([disabled]):active {
            outline: 0
        }

.ivu-btn-primary {
    color: #fff;
    background-color: #2d8cf0;
    border-color: #2d8cf0
}

    .ivu-btn-primary > a:only-child {
        color: currentColor
    }

        .ivu-btn-primary > a:only-child:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: 0 0
        }

    .ivu-btn-primary:hover {
        color: #fff;
        background-color: #57a3f3;
        border-color: #57a3f3
    }

        .ivu-btn-primary:hover > a:only-child {
            color: currentColor
        }

            .ivu-btn-primary:hover > a:only-child:after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                background: 0 0
            }

    .ivu-btn-primary.active,
    .ivu-btn-primary:active {
        color: #f2f2f2;
        background-color: #2b85e4;
        border-color: #2b85e4
    }

        .ivu-btn-primary.active > a:only-child,
        .ivu-btn-primary:active > a:only-child {
            color: currentColor
        }

            .ivu-btn-primary.active > a:only-child:after,
            .ivu-btn-primary:active > a:only-child:after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                background: 0 0
            }

@font-face {
    font-family: Ionicons;
    src: url(/iview/fonts/ionicons.woff2?v=3.0.0) format("woff2"), url(/iview/fonts/ionicons.woff?v=3.0.0) format("woff"), url(/iview/fonts/ionicons.ttf?v=3.0.0) format("truetype"), url(/iview/fonts/ionicons.svg?v=3.0.0#Ionicons) format("svg");
    font-weight: 400;
    font-style: normal
}

.ivu-icon {
    display: inline-block;
    font-family: Ionicons;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    text-rendering: optimizeLegibility;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: -.125em;
    text-align: center
}

.ivu-icon-ios-information-circle-outline:before {
    content: "\f201"
}

.ivu-icon-ios-information-circle:before {
    content: "\f202"
}

.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    z-index: 50;
    animation: fadeIn 0.3s ease-in;
}

.notification.success {
    background-color: #10b981;
    color: white;
}

.notification.error {
    background-color: #ef4444;
    color: white;
}

.notification.info {
    background-color: #3b82f6;
    color: white;
}