/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}
/* 背景装饰元素 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}
/* 浮动粒子背景 */
.QYMC{
    background:linear-gradient(45deg, #667eea, #764ba2);
    padding:12px 30px;
    border-radius:12px;
}
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 9s; }
/* 顶部工具栏 */
.top_ {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.8s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.TBTS button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 8px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}
.TBTS button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}
.TBTS button:hover::before {
    left: 100%;
}
.TBTS button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
.TBTS button:active {
    transform: translateY(-1px) scale(1.02);
}
.lxdz {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: #666;
    animation: fadeInRight 1s ease-out 0.5s both;
}
.Phone {
    font-weight: bold;
    color: #667eea;
    transition: color 0.3s ease;
}
.Phone:hover {
    color: #764ba2;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}
/* Logo区域 */
.logo_ {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    /* padding: 30px; */
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.2s both;
    /* border-radius: 0 0 25px 25px; */
    position: relative;
    overflow: hidden;
}
.logo_::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
.logo_ table {
    margin: 30px auto;
    position: relative;
    z-index: 1;
}
.logo {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.logo:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}
.comeT {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-left: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}
/* 导航菜单 */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 0;
    display: flex;
    justify-content: center;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.4s both;
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 9998;
}
.CD {
    position: relative;
    margin: 0;
    z-index: 9998;
}
.CD button {
    background: transparent;
    border: none;
    padding: 25px 35px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}
.CD button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
    border-radius: 2px;
}
.CD button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}
.CD button:hover::before {
    width: 80%;
}
.CD button:hover::after {
    width: 100px;
    height: 100px;
}
.CD button:hover {
    color: #667eea;
    transform: translateY(-3px);
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}
/* 下拉菜单 */
.ZCD {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.CD:hover .ZCD {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.zcd {
    padding: 0;
}
.BTn {
    background: transparent;
    border: none;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.BTn::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}
.BTn:hover::before {
    left: 100%;
}
.BTn:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateX(15px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}
/* 内容区域 */
.cont {
    /* max-width: 1200px; */
    margin: 50px auto;
    padding: 0 5px;
    animation: fadeInUp 1s ease-out 0.6s both;
}
.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}
.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    border-radius: 3px;
}
.content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}
.PGO {
    margin-bottom: 25px;
    color: #333;
    position: relative;
    animation: slideInLeft 0.8s ease-out both;
}
#go_1 {
    font-size: 42px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 35px;
    animation: slideInLeft 0.8s ease-out 0.8s both;
    font-weight: 800;
    letter-spacing: 1px;
}
#go_2 {
    font-size: 32px;
    color: #667eea;
    border-left: 6px solid #667eea;
    padding-left: 25px;
    animation: slideInLeft 0.8s ease-out 1s both;
    font-weight: 600;
}
#go_3, #go_4 {
    font-size: 26px;
    color: #764ba2;
    margin-top: 35px;
    animation: slideInLeft 0.8s ease-out 1.2s both;
    font-weight: 500;
}
.content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #666;
    animation: fadeIn 1s ease-out 1.4s both;
    transition: all 0.3s ease;
}
.content p:hover {
    color: #333;
    transform: translateX(5px);
}
/* 底部区域 */
.endbar {
    height: 6px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    margin: 50px 0;
    animation: expandWidth 1.5s ease-out 1.6s both;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}
.foot_bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px 25px;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 1.8s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.foot_tab {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.youlian td {
    height: 25px;
}
.gongneng td {
    vertical-align: top;
    padding: 25px;
    transition: all 0.3s ease;
}
.gongneng td:hover {
    transform: translateY(-5px);
}
.WEBmap {
    display: block;
}
.PT_tab {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.PT_tab td {
    padding: 15px;
    border: 1px solid rgba(221, 221, 221, 0.5);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.8);
}
.PT_tab td:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.PT_tab a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 8px;
    font-weight: 500;
}
.ewm, .kflog {
    width: 130px;
    height: 130px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.ewm:hover, .kflog:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}
.kef_qq {
    color: #667eea;
    font-weight: bold;
    margin: 8px 0;
    transition: color 0.3s ease;
}
.kef_qq:hover {
    color: #764ba2;
}
.BQBA td {
    padding: 25px;
    text-align: center;
}
.bang {
    color: #666;
    font-size: 14px;
}
.fg {
    border: none;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    margin: 25px 0;
    border-radius: 1px;
}
.WJBA a {
    color: #667eea;
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 15px;
}
.WJBA a:hover {
    color: #764ba2;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}
/* 新增动画关键帧 */
@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    25% { transform: translateY(-100px) translateX(20px); opacity: 1; }
    50% { transform: translateY(-200px) translateX(-10px); opacity: 0.8; }
    75% { transform: translateY(-150px) translateX(30px); opacity: 0.4; }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes textGlow {
    0% { filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6)); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}
@keyframes fadeInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* 原有动画关键帧保持不变 */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.hidden{
    display:none;
}
/* 响应式设计增强 */
@media (max-width: 768px) {
    .top_ {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .TBTS button {
        margin: 8px;
        font-size: 12px;
        padding: 8px 16px;
    }
    .lxdz {
        flex-direction: row;
        gap: 15px;
        text-align: center;
    }
    .comeT {
        font-size: 20px;
        margin-left: 15px;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .CD button {
        padding: 18px 25px;
        font-size: 14px;
    }
    .content {
        padding: 30px;
        margin: 25px 15px;
    }
    #go_1 {
        font-size: 28px;
    }
    #go_2 {
        font-size: 22px;
    }
    #go_3, #go_4 {
        font-size: 20px;
    }
    .foot_bar {
        padding: 30px 15px;
    }
    .gongneng td {
        padding: 15px;
    }
    .ewm, .kflog {
        width: 100px;
        height: 100px;
    }
    .particle {
        display: none;
    }
}
@media (max-width: 480px) {
    .TBTS button {
        font-size: 11px;
        padding: 6px 12px;
        margin: 5px;
    }
    .comeT {
        font-size: 18px;
    }
    .CD button {
        padding: 15px 20px;
        font-size: 13px;
    }
    .content {
        padding: 3px;
    }
    #go_1 {
        font-size: 24px;
    }
    .foot_bar {
        padding: 20px 10px;
    }
    .particle {
        display: none;
    }
}
/* 滚动条美化增强 */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
}
/* 加载动画增强 */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    border-top-color: #667eea;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* 悬停效果增强 */
.content:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav:hover {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}
/* 文字选择样式增强 */
::selection {
    background: rgba(102, 126, 234, 0.4);
    color: #333;
}
::-moz-selection {
    background: rgba(102, 126, 234, 0.4);
    color: #333;
}
/* 新增：卡片悬停效果 */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}
/* 新增：渐变文字动画 */
.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* 新增：呼吸灯效果 */
.breathing-light {
    animation: breathing 2s ease-in-out infinite;
}
@keyframes breathing {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}
/* 新增：3D翻转效果 */
.flip-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}
.flip-3d:hover {
    transform: rotateY(180deg);
    transition: transform 0.6s;
}
/* 新增：波浪动画 */
.wave {
    position: relative;
    overflow: hidden;
}
.wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: wave 2s linear infinite;
}
@keyframes wave {
    0% { left: -100%; }
    100% { left: 100%; }
}
/* 新增：企业级动效样式 */
/* 企业级波纹效果 */
.enterprise-ripple {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.6), rgba(118, 75, 162, 0.6));
    transform: scale(0);
    animation: enterprise-ripple-animation 0.8s linear;
    pointer-events: none;
}
@keyframes enterprise-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* 企业级滚动进度条 */
.enterprise-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    z-index: 101;
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
}
/* 导航隐藏动画 */
.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* 页面加载状态 */
body:not(.page-loaded) {
    /* opacity: 0; */
}
body.page-loaded {
    opacity: 1;
    transition: opacity 0.6s ease;
}
/* 企业级图片模态框 */
.enterprise-image-modal {
    display: none;
    position: fixed;
    z-index: 102;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}
.enterprise-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 30px;
    width: 85%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.enterprise-modal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.enterprise-modal-content h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 24px;
}
.enterprise-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
}
.enterprise-close:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: rotate(90deg);
}
/* 企业级通知样式 */
.enterprise-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 103;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
}
.enterprise-notification.show {
    transform: translateX(0);
}
.enterprise-notification-success {
    border-left: 4px solid #28a745;
}
.enterprise-notification-error {
    border-left: 4px solid #dc3545;
}
.enterprise-notification-warning {
    border-left: 4px solid #ffc107;
}
.enterprise-notification-info {
    border-left: 4px solid #17a2b8;
}
.notification-icon {
    font-size: 20px;
    font-weight: bold;
}
.enterprise-notification-success .notification-icon {
    color: #28a745;
}
.enterprise-notification-error .notification-icon {
    color: #dc3545;
}
.enterprise-notification-warning .notification-icon {
    color: #ffc107;
}
.enterprise-notification-info .notification-icon {
    color: #17a2b8;
}
.notification-message {
    color: #333;
    font-weight: 500;
}
/* 动态粒子样式 */
.dynamic-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 200;
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}
.mouse-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #f093fb, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 300;
    opacity: 0.8;
}
/* 企业数据统计样式 */
.company-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: numberPulse 2s ease-in-out infinite;
}
.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}
@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* 企业服务展示样式 */
.service-showcase {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.service-title {
    text-align: center;
    font-size: 32px;
    color: #667eea;
    margin-bottom: 30px;
    font-weight: 600;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
}
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}
.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.service-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
.service-card p {
    color: #666;
    line-height: 1.6;
}
/* 企业新闻动态样式 */
.company-news {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.news-title {
    text-align: center;
    font-size: 32px;
    color: #764ba2;
    margin-bottom: 30px;
    font-weight: 600;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #764ba2;
    transition: all 0.3s ease;
}
.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.2);
}
.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}
.news-content {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
/* 企业帮助模态框样式 */
.enterprise-help-modal {
    display: none;
    position: fixed;
    z-index: 103;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}
.enterprise-help-content {
    position: relative;
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.enterprise-help-content h3 {
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 15px;
}
.help-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.help-section h4 {
    color: #764ba2;
    margin-bottom: 15px;
    font-size: 18px;
}
.help-section ul {
    list-style: none;
    padding: 0;
}
.help-section li {
    margin: 10px 0;
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}
.help-section li:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}
.help-section kbd {
    background: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 3px 8px;
    font-family: monospace;
    font-size: 12px;
    margin-right: 8px;
}
.enterprise-help-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
}
.enterprise-help-close:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: rotate(90deg);
}
/* 表格行悬停效果增强 */
.table-row-hover {
    background: rgba(102, 126, 234, 0.1) !important;
    transform: scale(1.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cell-highlight {
    background: rgba(102, 126, 234, 0.15) !important;
    transition: all 0.3s ease;
}
/* 导航项悬停效果 */
.nav-item-hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
/* 滚动动画触发 */
.scroll-animate {
    animation: scrollReveal 0.8s ease-out both;
}
@keyframes scrollReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 响应式优化 */
@media (max-width: 768px) {
    .company-stats {
        flex-direction: column;
        padding: 30px 20px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .help-sections {
        grid-template-columns: 1fr;
    }
    .enterprise-notification {
        right: 15px;
        left: 15px;
        min-width: auto;
    }
    .enterprise-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    .enterprise-help-content {
        width: 95%;
        margin: 15% auto;
        padding: 25px;
    }
}
