/* ==================== 全局重置（清除浏览器默认样式） ==================== */
* {
    padding: 0;      /* 清除所有内边距，就像把包装盒里的泡沫都拿掉 */
    margin: 0;       /* 清除所有外边距，让元素紧贴边缘 */
    box-sizing: border-box;  /* 让padding和border不影响元素总宽度 */
}

body {
    font-family: Arial, Helvetica, sans-serif;  /* 设置全局字体 */
}

/* ==================== 导航栏（固定在顶部，像吸顶灯一样） ==================== */
header {
    background-color: black;   /* 黑色背景 */
    height: 80px;              /* 导航栏高度 */
    position: fixed;           /* 固定定位，滚动页面时不动 */
    top: 0;                    /* 贴在浏览器顶部 */
    left: 0;                   /* 贴在浏览器左边 */
    width: 100%;               /* 宽度占满整个屏幕 */
    z-index: 999;              /* 层级最高，永远在最上面 */
}

/* Logo图片（左上角） */
.logo {
    position: absolute;        /* 绝对定位，可以自由摆放 */
    left: 5vw;                 /* 距离左边5%屏幕宽度 */
    top: 50%;                  /* 距离顶部50%（先粗略定位） */
    transform: translateY(-50%);  /* 向上移动自身高度的一半（精确居中） */
    height: 50px;              /* Logo高度 */
}

/* 汉堡菜单复选框（隐藏，只用来控制菜单开关） */
.menu-toggle {
    display: none;  /* 完全隐藏 */
}

/* 汉堡菜单图标（三条横线，手机端才显示） */
.menu-icon {
    display: none;             /* 电脑端默认隐藏 */
    flex-direction: column;    /* 三条横线垂直排列 */
    cursor: pointer;           /* 鼠标移上去变成小手 */
    position: absolute;
    right: 5vw;                /* 在右上角 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;             /* 在菜单上面 */
}

/* 汉堡菜单的每条横线 */
.menu-icon span {
    width: 25px;                /* 横线宽度 */
    height: 3px;                /* 横线粗细 */
    background-color: white;    /* 白色 */
    margin: 3px 0;              /* 上下间距 */
    transition: 0.3s;           /* 动画过渡效果 */
}

/* 导航菜单（电脑端在右上角） */
header nav {
    position: absolute;
    right: 5vw;                /* 距离右边5% */
    line-height: 80px;         /* 文字垂直居中（和header高度一致） */
}

nav ul li a {
    font-size: 16px;
    font-weight: 600;
}

/* ==================== 导航下拉菜单 ==================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 10, 30, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 160px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.dropdown-menu a:hover {
    color: #c084fc;
    background: rgba(168, 85, 247, 0.1);
}

/* ==================== 导航栏 CONTACT US 按钮特效 ==================== */
nav ul li:last-child a {
    background: linear-gradient(to bottom left, #a855f7, #7c3aed, #6d28d9);
    padding: 8px 20px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
}

nav ul li:last-child a:hover {
    background: linear-gradient(to bottom left, #9333ea, #7c3aed, #6d28d9);
}

/* 流星光效 */
nav ul li:last-child a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 30px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    z-index: 2;
    animation: meteor 2s ease-in-out infinite;
}

nav ul li:last-child a:hover::after {
    animation: none;
    opacity: 0;
}

nav ul li:last-child {
    overflow: hidden;
    border-radius: 30px;
}

/* 去掉列表前面的小圆点 */
header ul {
    list-style: none;
}

/* 菜单项横向排列 */
header li {
    display: inline;           /* 横向排列（不换行） */
    margin-left: 4vw;          /* 每个菜单项间隔4%屏幕宽度 */
}

/* 导航链接样式 */
header a {
    color: white;              /* 白色文字 */
    text-decoration: none;     /* 去掉下划线 */
    font-size: 14px;
}

/* 鼠标悬停时加下划线 */
header a:hover {
    text-decoration: underline;
}

/* ==================== Banner横幅区域 ==================== */
.banner {
    margin-top: 80px;          /* 向下推80px，避免被固定导航栏遮挡 */
    background-color: #000;
    width: 100%;
    position: relative;       /* 相对定位，让h1可以叠加在图片上 */
    margin-bottom:0;   
    padding-bottom:0;
}

/* Banner图片（占满宽度） */
.banner img {
    width: 100%;               /* 宽度100% */
    height: auto;              /* 高度自适应，保持图片比例 */
    display: block;            /* 去掉图片底部默认空隙 */
}

/* Banner标题（叠加在图片上） */
.banner h1 {
    position: absolute;        /* 绝对定位，脱离文档流 */
    left: 5vw;                 /* 距离左边5% */
    bottom: 40px;              /* 距离图片底部40px */
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);  /* 文字阴影，让白字更清晰 */
}

/* ==================== 首页 Banner 轮播 ==================== */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.banner-track {
    display: flex;
    transition: transform 0.6s ease;
}

.banner-track img {
    width: 100%;
    flex-shrink: 0;
    display: block;
}

.banner-track video {
    width: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}

.banner-carousel h1 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    transform: none;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 5;
    text-align: left;
}

/* 左右按钮 */
.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
    transition: color 0.3s ease;
    animation: arrowPulse 2s ease-in-out infinite;
}

.banner-btn:hover {
    color: #fff;
    animation: none;
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

/* 轮播圆点 */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.b-dot.active {
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.b-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* ==================== Main主要内容区域 ==================== */
main {
    padding: 60px 5vw 10px 5vw;  /* 上60px 左右5% 下10px */
    background:linear-gradient(to bottom,  /* 高端感（黑→深紫→黑） */
        #000000,
        #1a0a3e,
        #000000
    );
}

/* 每个section之间的间距 */
main section {
    margin-bottom: 40px;
}

/* 主标题 */
main h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* 段落文字 */
main p {
    font-size: 16px;
    line-height: 1.6;    /* 行高1.6倍，让文字更易读 */
    margin-bottom: 15px;
}

/* ==================== Who We Are & Our System（左右布局） ==================== */
/* 同时设置两个section的样式（逗号分隔 = 共享样式） */
.Crostars,
.C5Drones,
.contact-section {
    background-color:transparent; /* 透明，露出main的渐变 */
}

.Crostars,
.C5Drones {
    display: flex;           /* Flexbox布局，让子元素横向排列 */
    align-items: stretch;    /* 子元素高度一致（拉伸到最高的那个） */
    margin-bottom: 30px;
}

/* 图片容器（左右各占50%） */
.Crostars-image,
.C5Drones-image {
    flex: 1;  /* 占据剩余空间的1份（和content一起平分） */
}

/* 图片填满容器 */
.Crostars-image img,
.C5Drones-image img {
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15), 0 0 40px rgba(168, 85, 247, 0.05);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.Crostars-image img:hover,
.C5Drones-image img:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.25), 0 0 50px rgba(168, 85, 247, 0.1);
}

/* 文字内容容器（左右各占50%） */
.Crostars-content,
.C5Drones-content {
    flex: 1;                    /* 占据剩余空间的1份 */
    color: white;
    padding: 40px 50px;         /* 内边距让文字不贴边 */
    display: flex;
    flex-direction: column;     /* 子元素垂直排列 */
    justify-content: center;    /* 内容垂直居中 */
}

/* 标题 */
.Crostars-content h2,
.C5Drones-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: bold;
}

/* 段落 */
.Crostars-content p,
.C5Drones-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ==================== More按钮（圆角边框按钮） ==================== */
.more-btn-1,
.more-btn-2 {
    display: inline-block;       /* 让a标签可以设置宽高 */
    padding: 12px 35px;
    border: 2px solid white;     /* 白色边框 */
    color: white;
    background: transparent;  /* 透明背景 */
    text-decoration: none;       /* 去掉下划线 */
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;        /* 所有变化都有0.3秒过渡动画 */
    align-self: flex-start;      /* 按钮靠左对齐 */
    border-radius: 20px;         /* 圆角 */
    transition: background 3s ease, border-color 3s ease, color 2s ease;
}

/* 鼠标悬停效果 */
.more-btn-1:hover,
.more-btn-2:hover {    /* ★ 用 background 而不是 background-color，才能写渐变 */
    background: linear-gradient(to bottom left, #a855f7, #7c3aed, #6d28d9);
    border-color: #a855f7;
    color: #fff;
    /* 悬停时快速变紫 */
    transition: background 0.4s ease, border-color 0.4s ease, color 0.3s ease;
}

/* ==================== Selected Clients（客户墙，纯背景图） ==================== */
.ClientsWall {
    background-image: url(/public/image/home%20page-3.png);  /* 背景图 */
    background-size: contain;         /* 完整显示图片（不裁切） */
    background-position: center bottom;  /* 图片居中靠底部 */
    background-repeat: no-repeat;     /* 不重复 */
    background-color: transparent;  /* 加这个，让渐变透出来 */
    height: 800px;                    /* 固定高度 */
    min-height: 400px;                /* 最小高度 */
}

/* 客户墙标题 */
.ClientsWall-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

/* ==================== Contact联系区域（左右两栏） ==================== */
.contact-section {
    display: flex;                 /* Flexbox左右布局 */
    gap: 0;                        /* 左右间距0（用padding控制） */
    padding: 10px 5vw 10px 5vw;   /* 上10px 左右5% 下10px */
    background-color: transparent;
    color: white;
}

/* 左栏：表单容器 */
.form-container {
    flex: 1;               /* 占50% */
    padding-right: 60px;   /* 右边留出间距 */
}

/* Contact区域的Logo */
.contact-logo {
    height: 60px;
    margin-bottom: 40px;
}

/* 介绍文字 */
.form-container p {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
    color: #ccc;  /* 浅灰色 */
}

/* ===== Leave Message 按钮 ===== */
.message-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid #a855f7;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    /* 默认就是紫色渐变背景 */
    background: linear-gradient(to bottom left, #a855f7, #7c3aed, #6d28d9);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

/* --- 鼠标悬停：停止动画，只保留紫色 --- */
.message-btn:hover {
    border-color: #7c3aed;
    background: linear-gradient(to bottom left, #9333ea, #7c3aed, #6d28d9);
}

/* --- 流星光效 --- */
.message-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30px;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    z-index: 2;
    /* 默认无限循环播放 */
    animation: meteor 2s ease-in-out infinite;
}

/* --- 鼠标悬停时停止流星 --- */
.message-btn:hover::after {
    animation: none;
    opacity: 0;
}

/* --- 流星运动轨迹 --- */
@keyframes meteor {
    0% {
        left: -60%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

/* ==================== 底部导航栏 ==================== */
.site-footer {
    background: linear-gradient(to bottom, #0a0a14, #050508);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* 四栏网格 */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5% 40px;
}

/* --- 第1栏：Logo + 简介 --- */
.footer-about {
    padding-right: 20px;
    text-align: left;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-about .message-btn {
    font-size: 0.85rem;
    padding: 10px 28px;
}

/* --- 第2/3栏：Quick Links + Insights --- */
.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: #c084fc;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c084fc;
}

/* --- 第4栏：联系方式 --- */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: left;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #c084fc;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- 社交媒体图标 --- */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    color: #1CE9FF;
    border-color: #1CE9FF;
    background: linear-gradient(135deg, rgba(28, 233, 255, 0.1), rgba(179, 79, 255, 0.1));
    box-shadow: 0 0 12px rgba(28, 233, 255, 0.3), 0 0 12px rgba(179, 79, 255, 0.15);
    transform: scale(1.15);
}

/* 第二层：航空管理机构 */
.footer-authorities {
    text-align: center;
    padding: 30px 5%;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
}

.footer-authorities p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-authorities .authority-logos img {
    max-width: 700px;
    width: 100%;
    opacity: 0.6;
}

/* 第三层：版权信息 */
.footer-bottom {
    text-align: center;
    padding: 20px 5%;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    margin: 0;
}

/* 响应式 */
@media screen and (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==================== Cookie 提示栏（左下角浮动） ==================== */
.cookie-bar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: rgba(20, 15, 40, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 12px;
    padding: 20px 40px 20px 20px;   /* 右边留出关闭按钮的空间 */
    z-index: 9998;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 弹出动画 */
.cookie-bar.active {
    opacity: 1;
    transform: translateY(0);
}

/* 手动关闭动画（0.4秒） */
.cookie-bar.closing {
    opacity: 0;
    transform: translateY(20px);
}

.cookie-bar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-bar a {
    color: #c084fc;
    text-decoration: none;
}

.cookie-bar a:hover {
    color: #a855f7;
    text-decoration: underline;
}

/* 右上角关闭按钮 */
.cookie-close {
    position: absolute;
    top: 10px;
    right: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: #a855f7;
}
/* Cookie 按钮区 */
.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.cookie-btn {
    padding: 7px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: none;
}

.cookie-btn-accept,
.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-accept:hover,
.cookie-btn-reject:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
}

/* 手机端适配 */
@media screen and (max-width: 480px) {   
    .cookie-bar {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
    }
}

/* ==================== 响应式设计：平板和手机（768px以下） ==================== */
@media(max-width: 768px) {
    /* 显示汉堡菜单按钮 */
    .menu-icon {
        display: flex;
    }

.Crostars-image img,
    .C5Drones-image img {
        width: 100%;
        height: auto;
    }

    .banner-carousel h1 {
        font-size: 32px;
    }
    
/* 手机端下拉菜单改为点击展开 */
    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        display: none;
        backdrop-filter: none;
        min-width: auto;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:active .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 30px 12px 50px;
        border-bottom: 1px solid #333;
    }

    /* 导航菜单变成侧边栏（从右边滑出） */
    header nav {
        position: fixed;               /* 固定定位 */
        top: 80px;                     /* 在header下方 */
        right: -100%;                  /* 默认隐藏在右边外面 */
        width: 250px;                  /* 菜单宽度 */
        height: calc(100vh - 80px);    /* 高度 = 视口高度 - header高度 */
        background-color: #1a1a1a;     /* 深灰色背景 */
        transition: right 0.3s;        /* 滑动动画 */
        padding: 20px 0;
    }
    
    /* 点击汉堡按钮后，菜单滑出 */
    .menu-toggle:checked ~ nav {
        right: 0;  /* 移到屏幕内 */
    }
    
    /* 菜单项改为垂直排列 */
    header ul {
        display: flex;
        flex-direction: column;  /* 垂直排列 */
    }
    
    /* 菜单项样式 */
    header li {
        display: block;            /* 块级元素 */
        margin: 0;
        padding: 15px 30px;
        border-bottom: 1px solid #333;  /* 底部分隔线 */
    }
    
    header a {
        font-size: 16px;
    }
    
    /* Who We Are & Our System 改为上下布局 */
    .Crostars,
    .C5Drones {
        flex-direction: column;  /* 垂直排列（图片在上，文字在下） */
    }
    
    /* 缩小文字内边距 */
    .Crostars-content,
    .C5Drones-content {
        padding: 30px 20px;
    }
    
    /* 缩小标题 */
    .Crostars-content h2,
    .C5Drones-content h2 {
        font-size: 28px;
    }
    
    /* 缩小段落 */
    .Crostars-content p,
    .C5Drones-content p {
        font-size: 16px;
    }
    
    /* 缩小客户墙高度 */
    .ClientsWall {
        height: 300px;
    }
    
    .ClientsWall-title {
        font-size: 28px;
    }
    
    /* Contact区域改为上下布局 */
    .contact-section {
        flex-direction: column;  /* 垂直排列 */
        padding: 60px 5vw 40px 5vw;
    }
    
    /* 去掉左右padding */
    .form-container,
    .contact-info {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* 右栏向下推 */
    .contact-info {
        margin-top: 50px;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
    
    /* 按钮占满宽度 */
    .message-btn {
        max-width: 100%;
    }
    
    /* 社交图标向下推 */
    .social-icons {
        margin-top: 30px;
    }
    
    .authorities p {
        font-size: 16px;
    }
}

/* ==================== 响应式设计：小屏手机（480px以下） ==================== */
@media (max-width: 480px) {
    /* Logo缩小 */
    .logo {
        height: 40px;
    }

    .banner-carousel h1 {
        font-size: 24px;
        bottom: 10%;
    }

    .banner-btn {
        font-size: 2rem;
        padding: 10px;
    }

    .banner-dots {
        bottom: 8px;
    }
    
    /* Banner标题缩小 */
    .banner h1 {
        font-size: 24px;
        bottom: 15px;
        left: 3vw;
    }
    
    /* Main区域缩小padding */
    main {
        padding: 40px 3vw;
    }
    
    /* 内容区域缩小 */
    .Crostars-content,
    .C5Drones-content {
        padding: 20px 15px;
    }
    
    .Crostars-content h2,
    .C5Drones-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .Crostars-content p,
    .C5Drones-content p {
        font-size: 14px;
    }
    
    /* 按钮缩小 */
    .more-btn-1,
    .more-btn-2 {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* 客户墙进一步缩小 */
    .ClientsWall {
        height: 200px;
    }
    
    .ClientsWall-title {
        font-size: 24px;
    }
    
    /* Contact区域 */
    .contact-section {
        padding: 40px 3vw 30px 3vw;
    }
    
    .contact-logo {
        height: 50px;
        margin-bottom: 30px;
    }
    
    .form-container p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-info h3 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 25px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    /* 社交图标缩小 */
    .social-icons {
        gap: 20px;
    }
    
    .social-icons img {
        width: 30px;
        height: 30px;
    }
    
    /* 航空机构区域 */
    .authorities {
        padding: 30px 3vw;
    }
    
    .authorities p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .authority-logos img {
        max-width: 100%;
    }
    
    /* 页脚 */
    footer {
        padding: 10px 20px;
        margin-top: 0;
        font-size: 12px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about .message-btn {
        display: inline-block;
    }

    .footer-social {
        justify-content: center;
    }
}