/* _content/yigesoft.com/Pages/Index.cshtml.rz.scp.css */
/* 设备展示容器 */
.device-showcase-container[b-1f4nhmoza0] {
    position: relative;
    min-height: 550px;
    display: flex;
    justify-content: center; /* 改为居中对齐 */
    align-items: center;
    z-index: 1;
    padding: 2rem 0;
    width: 100%; /* 确保容器占满父元素宽度 */
    max-width: 1200px; /* 限制最大宽度 */
    margin: 0 auto; /* 居中显示 */
}

    /* 图片优化全局样式 */
    .device-showcase-container img[b-1f4nhmoza0] {
        image-rendering: auto; /* 让浏览器选择最佳渲染方式 */
        -ms-interpolation-mode: bicubic; /* IE的图片平滑处理 */
        transition: opacity 0.3s ease; /* 平滑过渡效果 */
    }

        /* 图片加载状态 */
        .device-showcase-container img.loading[b-1f4nhmoza0] {
            opacity: 0;
        }

        .device-showcase-container img.loaded[b-1f4nhmoza0] {
            opacity: 1;
        }

/* 笔记本电脑样式 */
.laptop-device[b-1f4nhmoza0] {
    position: relative;
    width: 65%; /* 增加宽度，让电脑更大一些 */
    max-width: 750px; /* 增加最大宽度 */
    margin: 0 auto 0 0; /* 靠左对齐 */
    z-index: 1; /* 确保在手机下层 */
}

.laptop-screen[b-1f4nhmoza0] {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 62.5%; /* 16:10 屏幕比例 */
    background-color: #252525;
    border-radius: 12px 12px 0 0; /* 减小圆角 */
    border: 2px solid #444; /* 减小边框厚度 */
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* 减小阴影 */
}

    .laptop-screen[b-1f4nhmoza0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 24px; /* 减小顶部状态栏高度 */
        background-color: #1a1a1a;
        z-index: 1;
        border-radius: 10px 10px 0 0;
    }

    .laptop-screen[b-1f4nhmoza0]::after {
        content: '';
        position: absolute;
        top: 8px; /* 调整摄像头位置 */
        left: 12px;
        width: 8px; /* 减小摄像头尺寸 */
        height: 8px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        box-shadow: 16px 0 0 rgba(255, 255, 255, 0.3), 32px 0 0 rgba(255, 255, 255, 0.3);
        z-index: 2;
    }

.laptop-screen-img[b-1f4nhmoza0] {
    position: absolute;
    top: 24px; /* 为顶部状态栏留出空间 */
    left: 12px; /* 左边框 */
    width: calc(100% - 24px); /* 减去左右边框 */
    height: calc(100% - 36px); /* 减去顶部状态栏和底部边框 */
    object-fit: contain; /* 改为contain以保持图片比例 */
    object-position: center top; /* 图片从顶部开始显示 */
    border-radius: 4px;
    image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    image-rendering: crisp-edges;
    transform: translateZ(0); /* 启用GPU加速 */
    backface-visibility: hidden; /* 减少模糊 */
    will-change: transform; /* 提示浏览器优化渲染 */
}

.laptop-base[b-1f4nhmoza0] {
    position: relative;
    width: 100%;
    height: 24px; /* 减小底座高度 */
    background: linear-gradient(to bottom, #333, #444);
    border-radius: 0 0 12px 12px;
    transform: translateY(-1px);
    border: 2px solid #444;
    border-top: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* 减小阴影 */
}

    .laptop-base[b-1f4nhmoza0]::after {
        content: '';
        position: absolute;
        width: 30%;
        height: 4px; /* 减小触控板高度 */
        background-color: #2a2a2a;
        border-radius: 2px;
        bottom: 8px;
        left: 35%;
    }

/* 手机设备样式 */
.mobile-device[b-1f4nhmoza0] {
    position: absolute; /* 改回绝对定位 */
    width: 28%; /* 稍微增加宽度 */
    max-width: 320px;
    right: 5%; /* 靠右放置 */
    top: 50%; /* 垂直居中 */
    transform: translateY(-50%); /* 垂直居中 */
    z-index: 2; /* 确保在笔记本电脑上层 */
}

.mobile-screen[b-1f4nhmoza0] {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 216.15%; /* 保持手机屏幕比例 1290:2796 */
    background-color: #252525;
    border-radius: 30px;
    border: 2px solid #444;
    overflow: hidden;
    box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.3); /* 增强阴影效果 */
}

    .mobile-screen[b-1f4nhmoza0]::before {
        content: '';
        position: absolute;
        top: 16px; /* 调整刘海位置 */
        left: 50%;
        transform: translateX(-50%);
        width: 35%;
        height: 5px; /* 减小刘海尺寸 */
        background-color: #1a1a1a;
        border-radius: 3px;
        z-index: 2;
    }

.mobile-screen-img[b-1f4nhmoza0] {
    position: absolute;
    top: 12px; /* 顶部边框 */
    left: 12px; /* 左边框 */
    width: calc(100% - 24px); /* 减去左右边框 */
    height: calc(100% - 24px); /* 减去上下边框 */
    object-fit: contain; /* 改为contain以保持图片比例 */
    object-position: center top; /* 图片从顶部开始显示 */
    border-radius: 20px;
    image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    image-rendering: crisp-edges;
    transform: translateZ(0); /* 启用GPU加速 */
    backface-visibility: hidden; /* 减少模糊 */
    will-change: transform; /* 提示浏览器优化渲染 */
}

/* 版本徽章 */
.version-badge[b-1f4nhmoza0] {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.version-badge-content[b-1f4nhmoza0] {
    background: linear-gradient(135deg, var(--secondary-color, #ff6b6b), #ff8e8e);
    color: white;
    padding: 12px 20px; /* 减小内边距 */
    border-radius: 12px; /* 减小圆角 */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1em; /* 减小字体大小 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 减小阴影 */
}

/* 响应式调整 */
@media (max-width: 1280px) {
    .device-showcase-container[b-1f4nhmoza0] {
        min-height: 500px;
    }

    .laptop-device[b-1f4nhmoza0] {
        width: 70%;
        max-width: 650px;
    }

    .mobile-device[b-1f4nhmoza0] {
        width: 30%;
        max-width: 280px;
        right: 3%;
    }
}

@media (max-width: 1024px) {
    .device-showcase-container[b-1f4nhmoza0] {
        min-height: 450px;
    }

    .laptop-device[b-1f4nhmoza0] {
        width: 75%;
        max-width: 580px;
    }

    .mobile-device[b-1f4nhmoza0] {
        width: 32%;
        max-width: 250px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .device-showcase-container[b-1f4nhmoza0] {
        min-height: 500px;
        flex-direction: column;
        position: relative;
        padding-bottom: 100px; /* 为手机留出空间 */
    }

    .laptop-device[b-1f4nhmoza0] {
        width: 85%;
        max-width: 500px;
        margin: 0 auto;
    }

    .mobile-device[b-1f4nhmoza0] {
        position: absolute;
        width: 40%;
        max-width: 220px;
        bottom: 0;
        right: 50%;
        transform: translateX(120%); /* 向右偏移 */
        top: auto;
    }
}

@media (max-width: 640px) {
    .device-showcase-container[b-1f4nhmoza0] {
        min-height: auto;
        padding: 1.5rem 0 80px; /* 减小底部内边距 */
    }

    .laptop-device[b-1f4nhmoza0] {
        width: 95%;
        max-width: 420px;
    }

    .mobile-device[b-1f4nhmoza0] {
        width: 38%;
        max-width: 180px;
        transform: translateX(100%); /* 减小向右偏移 */
    }

    .version-badge[b-1f4nhmoza0] {
        bottom: 15px;
        right: 15px;
    }

    .version-badge-content[b-1f4nhmoza0] {
        padding: 10px 16px;
        font-size: 0.9em;
    }
}
/* _content/yigesoft.com/Pages/Login.cshtml.rz.scp.css */
/* 现代化登录页面样式 */

/* 基础动画效果 */
.fade-in[b-i3me2tn301] {
    animation: fade-in-b-i3me2tn301 0.5s ease forwards;
}

@keyframes fade-in-b-i3me2tn301 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slide-up[b-i3me2tn301] {
    animation: slide-up-b-i3me2tn301 0.5s ease-out forwards;
}

@keyframes slide-up-b-i3me2tn301 {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 标签切换样式 */
.tab-active[b-i3me2tn301] {
    background-color: white;
    color: #3b82f6;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* 输入框焦点效果 */
input:focus[b-i3me2tn301] {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* 按钮悬停效果 */
button:hover[b-i3me2tn301] {
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* 卡片悬停效果 */
.hover-card[b-i3me2tn301] {
    transition: all 0.3s ease;
}

.hover-card:hover[b-i3me2tn301] {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 脉冲动画效果 */
.pulse[b-i3me2tn301] {
    animation: pulse-b-i3me2tn301 2s infinite;
}

@keyframes pulse-b-i3me2tn301 {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* 获取验证码按钮倒计时样式 */
.countdown[b-i3me2tn301] {
    background: linear-gradient(to right, #94a3b8, #cbd5e1) !important;
    cursor: not-allowed;
}

/* 表单组动画 */
.form-group[b-i3me2tn301] {
    transition: all 0.3s ease;
}

.form-group:focus-within label[b-i3me2tn301] {
    color: #3b82f6;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* 错误状态样式 */
.input-error[b-i3me2tn301] {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.input-error:focus[b-i3me2tn301] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* 成功状态样式 */
.input-success[b-i3me2tn301] {
    border-color: #10b981 !important;
}

.input-success:focus[b-i3me2tn301] {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
}

/* 响应式调整 */
@media (max-width: 640px) {
    .w-full.max-w-md[b-i3me2tn301] {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .dark-mode-support[b-i3me2tn301] {
        background-color: #1e293b;
        color: #f1f5f9;
    }
}

/* 自定义滚动条 */
[b-i3me2tn301]::-webkit-scrollbar {
    width: 8px;
}

[b-i3me2tn301]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

[b-i3me2tn301]::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

[b-i3me2tn301]::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* 在你的CSS文件中添加以下样式，或直接在页面的style标签内添加 */
@media (min-width: 1024px) {
    body[b-i3me2tn301] {
        background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        background-attachment: fixed;
    }

    /* 如果你的页面有特定容器，可以单独设置 */
    .main-container[b-i3me2tn301] {
        background-image: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
        background-blend-mode: overlay;
    }
}

/* 如果你使用的是类似上面登录页面的结构，可以这样优化 */
@media (min-width: 1024px) {
    .bg-gradient-to-br[b-i3me2tn301] {
        background-image: linear-gradient(135deg, #f0f4ff 0%, #e0ebff 50%, #d0e0ff 100%);
        background-size: 200% 200%;
        animation: gradientAnimation-b-i3me2tn301 15s ease infinite;
    }
}

@keyframes gradientAnimation-b-i3me2tn301 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
/* _content/yigesoft.com/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* _content/yigesoft.com/Pages/User/Group.cshtml.rz.scp.css */
/* 确保SVG图片在暗色主题下也能清晰显示 */
img[src$=".svg"][b-w4uduyleuh] {
    background-color: #f8fafc;
    border-radius: 0.5rem;
}
/* _content/yigesoft.com/Pages/User/Req.cshtml.rz.scp.css */
/* 定义颜色变量 */
:root[b-xyz4wq9cr8] {
    --primary: #165DFF;
    --success: #36D399;
    --error: #F87272;
    --warning: #FBBD23;
    --dark: #1E293B;
    --payment-wx: #07C160;
    --payment-alipay: #1677FF;
    --neutral-50: #F9FAFB;
    --neutral-100: #F3F4F6;
    --neutral-200: #E5E7EB;
    --neutral-300: #D1D5DB;
    --neutral-400: #9CA3AF;
    --neutral-500: #6B7280;
    --neutral-600: #4B5563;
    --neutral-700: #374151;
    --neutral-800: #1F2937;
    --neutral-900: #111827;
}

/* 覆盖使用 theme() 的样式 */
.bg-gradient-to-br.from-primary\/5.to-primary\/10[b-xyz4wq9cr8] {
    background: linear-gradient(to bottom right, rgba(22, 93, 255, 0.05), rgba(22, 93, 255, 0.1));
}

.border-primary\/10[b-xyz4wq9cr8] {
    border-color: rgba(22, 93, 255, 0.1);
}

.bg-primary\/10[b-xyz4wq9cr8] {
    background-color: rgba(22, 93, 255, 0.1);
}

.text-primary[b-xyz4wq9cr8] {
    color: #165DFF;
}

.bg-primary[b-xyz4wq9cr8] {
    background-color: #165DFF;
}

.bg-success\/10[b-xyz4wq9cr8] {
    background-color: rgba(54, 211, 153, 0.1);
}

.text-success[b-xyz4wq9cr8] {
    color: #36D399;
}

.bg-payment-wx[b-xyz4wq9cr8] {
    background-color: #07C160;
}

.bg-payment-alipay[b-xyz4wq9cr8] {
    background-color: #1677FF;
}

.border-primary[b-xyz4wq9cr8] {
    border-color: #165DFF;
}

.hover:border-primary\/50:hover[b-xyz4wq9cr8] {
    border-color: rgba(22, 93, 255, 0.5);
}

.shadow-md[b-xyz4wq9cr8] {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-soft[b-xyz4wq9cr8] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.shadow-medium[b-xyz4wq9cr8] {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bg-gradient-to-r.from-primary.to-primary\/80[b-xyz4wq9cr8] {
    background: linear-gradient(to right, #165DFF, rgba(22, 93, 255, 0.8));
}
/* 选中支付方式时的高亮样式示例 */
.payment-method-active[b-xyz4wq9cr8] {
    border-color: #165DFF !important; /* 例如 Tailwind 的 primary 色 */
    box-shadow: 0 0 0 2px #165DFF;
    background-color: #F8FAFC;
    transition: all 0.2s;
}
.duration-option-active[b-xyz4wq9cr8] {
    border-color: #165DFF !important; /* 例如 Tailwind 的 primary 色 */
   
    background-color: #F8FAFC;
    transition: all 0.2s;
}
