* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #000; /* 改为黑色背景 */
    color: #fff; /* 文字颜色改为白色 */
    line-height: 1.6;
    padding: 10px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* 顶部导航栏 */
.navbar {
    background: #1a1a1a; /* 改为深灰色背景 */
    border-radius: 12px;
    padding: 12px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08); /* 调整阴影颜色 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px; /* 增加导航栏栏目间距 */
}

.nav-links a {
    text-decoration: none;
    color: #e2e8f0; /* 改为浅灰色文字 */
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 5px;
    position: relative;
}

.nav-links a:hover {
    color: #4f46e5;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4f46e5;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Banner区域 */
.banner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 37.5%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15); /* 调整阴影颜色 */
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.banner-text p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 二维码联系方式区块 - 已修改 */
.contact-section {
    background: white; /* 保持白色背景 */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center; /* 新增：居中内容 */
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50; /* 保持原有颜色 */
    font-size: 1.8rem;
}

.qr-codes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    width: 100%; /* 新增：确保宽度100% */
    justify-content: center; /* 新增：居中内容 */
}

.qr-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* 新增：居中内容 */
}

.qr-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    display: flex; /* 新增：弹性布局 */
    justify-content: center; /* 新增：居中内容 */
    align-items: center; /* 新增：居中内容 */
}

.qr-image img {
    max-width: 100%; /* 修改：最大宽度100% */
    max-height: 100%; /* 新增：最大高度100% */
    object-fit: contain; /* 修改：保持比例 */
}

.qr-label {
    font-size: 0.9rem;
    color: #495057; /* 保持原有颜色 */
    font-weight: 500;
    text-align: center; /* 新增：文字居中 */
    word-break: break-all; /* 新增：长文本换行 */
}

/* 底部联系信息 */
.bottom-contact {
    background: white; /* 保持白色背景 */
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-call {
    font-size: 1.8rem;
    color: #FFD700; /* 黄色 */
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hotline {
    font-size: 1.5rem;
    color: #FF1493; /* 粉色 */
    font-weight: 600;
    margin: 15px 0;
}

.features {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #ced4da;
}

.features p {
    font-size: 1.4rem;
    color: #e63757;
    font-weight: 600;
    margin: 12px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* 图片区块标题 */
.gallery-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px;
    position: relative;
}

.gallery-title {
    font-size: 1.8rem;
    color: #fff; /* 改为白色文字 */
    font-weight: 600;
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
    border-radius: 3px;
}

/* 图片网格布局 - 已修改 */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.image-card {
    background: #1a1a1a; /* 改为深灰色背景 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08); /* 调整阴影颜色 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12); /* 调整阴影颜色 */
}

.image-container {
    position: relative;
    width: 100%;
    height: 280px; /* 修改：增加高度使图片更大 */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover .image-container img {
    transform: scale(1.05);
}

/* 修改水印样式 - 缩短长度 */
.watermark {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    color: white;
    padding: 5px 8px; /* 减少左右内边距 */
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: auto; /* 移除最小宽度 */
    width: auto; /* 宽度自适应 */
}

/* 修改off状态的水印样式 - 缩短长度 */
.watermark.off {
    background: linear-gradient(135deg, #999, #666);
    padding: 5px 8px; /* 减少左右内边距 */
    min-width: auto; /* 移除最小宽度 */
    width: auto; /* 宽度自适应 */
}

.image-info {
    padding: 10px; /* 修改：减少内边距使区块更矮 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 50px; /* 修改：减少最小高度 */
}

.image-info h3 {
    font-size: 1.1rem;
    color: #fff; /* 改为白色文字 */
    text-align: center;
    margin: 0;
    line-height: 1.2; /* 新增：调整行高 */
}

/* 响应式设计 - 平板 */
@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .qr-codes {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .banner-text h1 {
        font-size: 5.5rem;
    }
    
    .banner-text p {
        font-size: 1.8rem;
    }
    
    .image-container {
        height: 350px;
    }
    
    .image-info h3 {
        font-size: 1.2rem;
    }
}

/* 响应式设计 - 桌面 */
@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .banner {
        padding-bottom: 30%;
    }
    
    .image-container {
        height: 350px;
    }
    
    .image-info h3 {
        font-size: 1.25rem;
    }
}

/* 响应式设计 - 手机端 */
@media (max-width: 767px) {
    .banner {
        padding-bottom: 56.25%;
    }
    
    .banner-text h1 {
        font-size: 3rem;
    }
    
    .banner-text p {
        font-size: 1.2rem;
        max-width: 90%;
    }
    
    .navbar {
        padding: 15px 15px; /* 增加顶部和底部内边距 */
        flex-direction: column;
        gap: 20px; /* 增加导航栏元素之间的间距 */
    }
    
    .logo {
        height: 60px; /* 增加手机端Logo高度 */
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 1rem; /* 稍微增大导航链接字体 */
        padding: 10px 8px; /* 增加链接内边距 */
    }
    
    .contact-call {
        font-size: 1.4rem;
    }
    
    .hotline {
        font-size: 1.2rem;
    }
    
    .features p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* 手机端图集显示优化 - 增加高度 */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .image-container {
        height: 280px; /* 修改：手机端增加高度到280px */
    }
    
    .image-info {
        padding: 8px; /* 修改：手机端减少内边距 */
        min-height: 40px; /* 修改：手机端减少最小高度 */
    }
    
    .image-info h3 {
        font-size: 0.9rem; /* 修改：手机端减小字体大小 */
    }
}

/* 超小屏幕手机优化 */
@media (max-width: 480px) {
    .logo {
        height: 70px; /* 在超小屏幕上进一步增大Logo */
    }
    
    .nav-links {
        gap: 15px; /* 减小超小屏幕上的导航链接间距 */
    }
    
    .nav-links a {
        font-size: 0.95rem; /* 调整超小屏幕上的字体大小 */
    }
    
    /* 超小屏幕二维码优化 */
    .qr-codes {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .qr-image {
        width: 120px;
        height: 120px;
    }
    
    .qr-label {
        font-size: 0.8rem;
    }
    
    /* 超小屏幕图集显示优化 - 增加高度 */
    .image-container {
        height: 250px; /* 修改：超小屏幕增加高度到250px */
    }
    
    .image-info {
        min-height: 35px;
    }
    
    .image-info h3 {
        font-size: 0.8rem;
    }
}

/* 超大屏幕手机优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    /* 平板设备图集显示优化 */
    .image-container {
        height: 320px; /* 修改：平板设备增加高度 */
    }
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #a0aec0; /* 改为浅灰色文字 */
    font-size: 0.9rem;
    border-top: 1px solid #2d3748; /* 改为深灰色边框 */
}

/* 苹果设备优化 */
@supports (-webkit-touch-callout: none) {
    .image-card {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

/* 添加一些额外的样式用于后台管理 */
.status-available {
    color: green;
    font-weight: bold;
}

.status-off {
    color: #999;
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
}

.watermark.off {
    background: linear-gradient(135deg, #999, #666);
}

/* 新增：iOS设备详情页图片显示优化 */
.ios-device .slider-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.ios-device .main-image {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* 新增：iOS设备详情页容器优化 */
.ios-device .detail-container {
    padding: 10px 5px;
}

/* 新增：iOS设备图片加载指示器 */
.image-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: #fff;
    font-size: 16px;
}