* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    background: #fff;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 180px 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
	width: 46px;
	height: 46px;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #6426FF;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #8987F2;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-menu .active {
	color: #6426FF;
	font-weight: bold;
	font-size: 16px;
}

.nav-menu a:hover {
    color: #6426FF;
}

.content-box{
	padding: 20px;
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 4px;
	position: absolute;
	right: 155px;
	top: 55px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	display: none;
}
.content-box a {
    text-decoration: none;
    color: #8987F2;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.content-box a:hover {
    color: #6426FF;
}

/* 案例展示 */
.case-studies {
    padding-top: 80px;
    background: #ffffff;
}

.case-item {
    gap: 30px;
    margin-bottom: 120px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
	height: 550px;
	position: relative;
}

.case-image {
    width: 683px;
	height: 550px;
    border-radius: 0 12px 12px 0;
}

.case-content {
	width: 513px;
	height: 348px;
	background-color: #FBFBFB;
	padding: 60px 90px 60px 60px;
	position: absolute;
	top: 99px;
	font-size: 15px;
	color: #999999;
	line-height: 25px;
}
.case-content-title{
	font-size: 30px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 15px;
}

/* 服务内涵 */
.work-environment{
	max-width: 1218px;
	margin: 0 auto;
	padding-bottom: 100px;
}
.work-environment-title{
	color: #000000;
	font-weight: 500;
	font-size: 35px;
	margin-bottom: 42px;
	text-align: center;
}
.work-environment-list{
	width: 588px;
	font-size: 14px;
	font-weight: 400;
	color: #8D8D8D;
}
.list-title{
	font-size: 20px;
	font-weight: 500;
	color: #000000;
	margin: 20px 0 13px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .slide-image {
        padding-right: 0;
    }
    
    .slide-image img {
        width: 240px;
        height: 300px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .case-item,
    .case-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .innovation-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-phones {
        gap: 15px;
    }
    
    .architecture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 20px;
    }
    
    .hero-section {
        height: 350px;
    }
    
    .slide-image img {
        width: 200px;
        height: 250px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}
