@charset "UTF-8";

/* 基本样式重置 */
* {
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

body, html {
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
}

body {
    overflow-x: hidden;
}

/* 通用显示样式 */
[hidden] {
    display: none !important;
}

/* uni-app 基础组件样式 */
uni-app {
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}

uni-page-head,
uni-page-wrapper,
uni-page-body,
uni-page {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

uni-view {
    display: block;
}

uni-view[hidden] {
    display: none;
}

uni-image {
    width: 320px;
    height: 240px;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

uni-image[hidden] {
    display: none;
}

uni-image > div,
uni-image > img {
    width: 100%;
    height: 100%;
}

uni-image > img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* LOGO图片显示 */
.app-logo img {
    opacity: 1 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* 确保背景图片正确显示 */
uni-image > div {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* 页面背景样式 - 科技风格 */
body.pages-szgf-index uni-page-body {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0e4b99 100%);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
}

body.pages-szgf-index {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0e4b99 100%);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
}

/* 科技风格动态背景 */
body.pages-szgf-index::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    animation: techBackground 20s ease-in-out infinite;
}

/* 网格背景效果 */
body.pages-szgf-index::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    pointer-events: none;
    z-index: -1;
    animation: gridMove 30s linear infinite;
}

/* 背景动画 */
@keyframes techBackground {
    0% {
        transform: translateX(0%) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateX(2%) rotate(1deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-1%) rotate(-0.5deg);
        opacity: 1;
    }
    75% {
        transform: translateX(1.5%) rotate(0.8deg);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0%) rotate(0deg);
        opacity: 1;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .top-wrap[data-v-bf20e0ec], .intro-image-wrap[data-v-bf20e0ec] {
        max-width: 90%;
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* 整体容器优化 */
    .container[data-v-bf20e0ec] {
        padding: 10px;
        min-height: 100vh;
    }
    
    /* 主要内容区域优化 */
    .top-wrap[data-v-bf20e0ec] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10px;
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .top-wrap .app-logo[data-v-bf20e0ec] {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .top-wrap .top-right-wrap[data-v-bf20e0ec] {
        margin-left: 0;
        margin-top: 0;
        align-items: center;
        width: 100%;
    }
    
    .top-wrap .top-right-wrap .app-logo-text[data-v-bf20e0ec] {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .top-wrap .top-right-wrap .intro[data-v-bf20e0ec] {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        max-width: 100%;
    }
    
    /* 手机端图片横向滑动布局 */
    .intro-image-wrap[data-v-bf20e0ec] {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        padding: 0 15px;
        gap: 20px;
        margin-top: 25px;
        margin-bottom: 100px;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .intro-image-wrap .intro-image[data-v-bf20e0ec] {
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        width: 70vw !important;
        min-width: 70vw !important;
        max-width: 300px !important;
        height: auto;
        object-fit: contain;
        border-radius: 15px;
    }
}

@media screen and (max-width: 480px) {
    /* 超小屏幕容器优化 */
    .container[data-v-bf20e0ec] {
        padding: 8px;
    }
    
    /* 主要内容区域 */
    .top-wrap[data-v-bf20e0ec] {
        margin-top: 8px;
        padding: 15px 12px;
    }
    
    .top-wrap .app-logo[data-v-bf20e0ec] {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    
    .top-wrap .top-right-wrap .app-logo-text[data-v-bf20e0ec] {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .top-wrap .top-right-wrap .intro[data-v-bf20e0ec] {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        padding: 0 5px;
    }
    
    /* 小屏幕图片滑动优化 */
    .intro-image-wrap[data-v-bf20e0ec] {
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 80px;
        padding: 0 12px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .intro-image-wrap .intro-image[data-v-bf20e0ec] {
        width: 75vw !important;
        min-width: 75vw !important;
        max-width: 280px !important;
        border-radius: 12px;
    }
    
    /* 底部版权信息优化 */
    .bottom-wrap[data-v-bf20e0ec] {
        padding: 10px 12px;
        font-size: 11px;
        line-height: 1.4;
    }
}

/* 主要样式 */
body[data-v-bf20e0ec] {
    -webkit-user-select: text;
    user-select: text;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
}

ul[data-v-bf20e0ec],
li[data-v-bf20e0ec] {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: initial;
}

ol[data-v-bf20e0ec],
ul[data-v-bf20e0ec] {
    list-style: none;
}

.container[data-v-bf20e0ec] {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.company-wrap[data-v-bf20e0ec] {
    display: flex;
    width: 1920px;
    height: 63px;
    max-width: 1200px;
    align-items: center;
}

.company-wrap .left-wrap[data-v-bf20e0ec] {
    display: flex;
    flex: 1;
}

.company-wrap .left-wrap .company-logo[data-v-bf20e0ec] {
    width: 28px;
    height: 28px;
    border-radius: 5px;
}

.company-wrap .left-wrap .company-name[data-v-bf20e0ec] {
    margin-left: 10px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
}

.company-wrap .right-wrap[data-v-bf20e0ec] {
    display: flex;
    font-size: 19px;
    font-weight: 700;
    color: hsla(0, 0%, 100%, .8);
}

.company-wrap .right-wrap .home[data-v-bf20e0ec] {
    margin-right: 25px;
    cursor: pointer;
}

.company-wrap .right-wrap .about-us[data-v-bf20e0ec] {
    margin-right: 10px;
    cursor: pointer;
}

.top-wrap[data-v-bf20e0ec] {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.top-wrap:hover[data-v-bf20e0ec] {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.3);
}

.top-wrap .app-logo[data-v-bf20e0ec] {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    flex: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.top-wrap .app-logo:hover[data-v-bf20e0ec] {
    transform: scale(1.05) rotate(3deg);
}

.top-wrap .top-right-wrap[data-v-bf20e0ec] {
    display: flex;
    padding: 10px 0 10px;
    margin-left: 25px;
    flex-direction: column;
    justify-content: center;
}

.top-wrap .top-right-wrap .app-logo-text[data-v-bf20e0ec] {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.top-wrap .top-right-wrap .intro[data-v-bf20e0ec] {
    font-size: 16px;
    color: hsla(0, 0%, 100%, .9);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.intro-image-wrap[data-v-bf20e0ec] {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

/* 桌面端保持原有布局 */
@media screen and (min-width: 769px) {
    .intro-image-wrap[data-v-bf20e0ec] {
        overflow: visible;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .intro-image-wrap .intro-image[data-v-bf20e0ec] {
        width: 220px;
        flex-shrink: 1;
        flex-grow: 0;
    }
}

/* 隐藏滚动条 */
.intro-image-wrap[data-v-bf20e0ec]::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* 确保在所有移动设备上隐藏滚动条 */
@media screen and (max-width: 768px) {
    .intro-image-wrap[data-v-bf20e0ec]::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}

/* 手机端滑动提示 */
@media screen and (max-width: 768px) {
    .intro-image-wrap[data-v-bf20e0ec]::after {
        content: '← 滑动查看更多 →';
        position: fixed;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.7);
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        white-space: nowrap;
        pointer-events: none;
        animation: slideHint 4s ease-in-out infinite;
        z-index: 100;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .intro-image-wrap[data-v-bf20e0ec] {
        position: relative;
    }
}

/* 滑动提示动画 */
@keyframes slideHint {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

.intro-image-wrap .intro-image[data-v-bf20e0ec] {
    width: 220px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: brightness(0.95);
}

.intro-image-wrap .intro-image:hover[data-v-bf20e0ec] {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.v-space[data-v-bf20e0ec] {
    flex: 1;
}

.bottom-wrap[data-v-bf20e0ec] {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: hsla(0, 0%, 100%, .9);
    padding: 15px 0;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-wrap[data-v-bf20e0ec] a {
    color: hsla(0, 0%, 100%, .9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 6px;
    border-radius: 4px;
}

.bottom-wrap[data-v-bf20e0ec] a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* 内联动画样式类 */
.fade-in-animation {
    animation: fadeIn 0.8s ease-out;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.fade-in-delay-03 {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-06 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-02 {
    animation: fadeIn 1s ease-out 0.2s both;
}

.fade-in-delay-04 {
    animation: fadeIn 1s ease-out 0.4s both;
}

.fade-in-delay-08 {
    animation: fadeIn 1s ease-out 0.8s both;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 1s both;
}

