Home / test
test
Four Core Solution Modules
Integrated Application
- Robot Integrated
- Injection Molding
- Peripheral Automation
Application Scenarios
3C & Optical
Automotive
Home Appliances
Medical
/* 全局背景与容器 */
body { background-color: #f4f7f9; margin: 0; font-family: 'Segoe UI', sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
/* 1. 深色模组区:采用深蓝色渐变背景 */
.solution-modules {
background: linear-gradient(135deg, #1a2a3a 0%, #0a1520 100%);
color: #fff;
padding: 60px 0;
}
.section-title {
text-align: center;
font-size: 28px;
margin-bottom: 50px;
text-transform: uppercase;
letter-spacing: 1px;
}
/* 六边形卡片效果 */
.module-grid {
display: flex;
justify-content: space-between;
gap: 15px;
}
.hexagon-card {
flex: 1;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); /* 六边形裁切 */
padding: 40px 20px;
transition: all 0.3s ease;
text-align: center;
}
.hexagon-card:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* 2. 金属拉丝应用场景条 */
.brushed-metal-bar {
display: flex;
justify-content: space-around;
align-items: center;
/* 金属拉丝渐变效果 */
background: linear-gradient(180deg, #e0e0e0 0%, #bdbdbd 50%, #e0e0e0 100%);
border-radius: 10px;
padding: 30px;
box-shadow: inset 0 2px 5px rgba(255,255,255,0.8), 0 5px 15px rgba(0,0,0,0.1);
border: 1px solid #999;
position: relative;
}
/* 给金属条增加高光线 */
.brushed-metal-bar::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0; height: 100%;
background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.1) 3px); /* 模拟拉丝纹理 */
pointer-events: none;
}
.scenario-item {
text-align: center;
z-index: 1;
}
.scenario-item span {
display: block;
font-weight: bold;
color: #333;
margin-top: 10px;
text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}
/* 3. 楼层规划图部分(响应式 Flex) */
.floor-plan-row {
display: flex;
align-items: center;
margin-bottom: 40px;
}
.plan-text { flex: 1; padding-right: 40px; }
.plan-img { flex: 1.5; }
.plan-img img { width: 100%; height: auto; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }