/* ==================== 轮播图区域 ==================== */
/* 
 * 轮播图容器
 * 全屏高度，隐藏溢出内容
 */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* 轮播图幻灯片容器 */
.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

/* 单张幻灯片 */
.slide {
    min-width: 100%;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* 幻灯片图片 */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 幻灯片内容区域 */
.slide-content {
    position: absolute;
    bottom: 120px;
    left: 50px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 
 * 轮播图导航按钮
 * 左右切换按钮样式
 */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}

/* 轮播图导航按钮悬停效果 */
.carousel-prev:hover, .carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #ffcc00;
}

/* 上一张按钮位置 */
.carousel-prev {
    left: 20px;
}

/* 下一张按钮位置 */
.carousel-next {
    right: 20px;
}

/* 
 * 轮播图指示器
 * 显示当前幻灯片位置
 */
.carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

/* 指示器样式 */
.carousel-indicators span {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 当前活动指示器样式 */
.carousel-indicators span.active {
    background: var(--primary-color);
}
/* ==================== 英雄区域 ==================== */
/* 
 * 英雄区域容器
 * 用于展示主要内容和行动号召按钮
 */
 .hero {
    background-color: var(--light-gray);
    text-align: center;
    padding: 100px 20px;
}

/* 英雄区域主标题 */
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* 
 * 行动号召按钮(CTA)
 * 使用品牌主色调突出显示
 */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* 暗黑模式下的英雄区域背景色 */
.dark .hero {
    background-color: var(--dark-bg);
}
/* ==================== 公司介绍区域 ==================== */
/* 公司介绍区域
 * 全屏高度，使用背景图
 */
 .about-company {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 公司介绍背景图 */
.about-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/service-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* 公司介绍内容区域
 * 居中显示，添加文字阴影
 */
.about-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}

/* 公司介绍主标题 */
.about-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* 公司介绍副标题 */
.about-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* 了解更多按钮 */
.learn-more-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    width: 160px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 340;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 40px;
    border: 1px solid var(--white);
}

.learn-more-btn:hover {
    background-color: transparent;
    background-color: var(--E6BC);
    border-color: var(--E6BC) !important;
}
/* ==================== 技术与服务区块 ==================== */

/* 技术与服务区块 */    
.tech-services {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.tech-row {
    display: flex;
    margin-bottom: 40px;
}

.tech-text {
    width: 33.33%;
    padding-right: 10px;
}

.tech-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.tech-text p {
    font-size: 18px;
    color: #666;
}

.tech-image {
    width: 66.66%;
    position: relative;
}

.tech-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.tech-image .learn-more-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--white);
    border-color: var(--white);
}

.tech-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.tech-item {
    width: calc(100% / 3 - 14px);
    text-align: center;
}

.tech-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    width: 100%;
}

.tech-item-content .learn-more-btn{
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    margin-right: 24px;
}

.tech-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.tech-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 330;
}
/* ==================== 应用展示区域 ==================== */
/* 应用展示区域 */
.app-showcase {
    background-color: var(--light-gray);
    padding-top: 50px;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
}

.app-features {
    width: calc(100% / 3);
}

.app-features h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.app-features ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.app-features li {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.app-features li:hover {
    color: var(--primary-color);
}




/* 应用图片展示区域
 * 占据1/3宽度，居中显示
 */
.app-image {
    width: calc(100% / 3);
    text-align: center;
}

/* 应用图片样式 */
.app-image img {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
    margin-bottom: -10px;
}

/* 二维码展示区域
 * 使用flex布局实现水平排列
 */
.qr-codes {
    width: calc(100% / 3);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* 单个二维码项 */
.qr-item {
    text-align: center;
}

/* 二维码展示区域
 * 使用flex布局实现水平排列
 */
.qr-codes {
    width: calc(100% / 3);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* 单个二维码项 */
.qr-item {
    text-align: center;
}

/* 二维码图片样式
 * 添加白色背景和阴影效果
 */
.qr-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 二维码描述文字 */
.qr-item p {
    font-size: 14px;
    color: var(--secondary-color);
}

.dark .app-showcase {
    background-color: var(--dark-bg);
}

