 /* 使用与首页一致的CSS变量和基础样式 */ :root {--primary: #2563eb; --primary-dark: #1d4ed8; --primary-light: #dbeafe; --secondary: #4f46e5; --light: #f8fafc; --dark: #0f172a; --gray: #64748b; --success: #10b981; --border: #e2e8f0; --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } * {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif; } body {background-color: #f9fafb; color: var(--dark); line-height: 1.6; overflow-x: hidden; font-size: 1rem; } a {text-decoration: none; color: var(--primary); } /* 产品头部区域 */ .product-header {padding: 10rem 0; text-align: center; background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%); position: relative; overflow: hidden; } .product-header::before {content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%); border-radius: 50%; } .product-header::after {content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%); border-radius: 50%; } .product-title {font-size: 2.5rem; color: #fff; margin-bottom: 1.5rem; position: relative; display: inline-block; } .product-title::after {content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: #fff; border-radius: 2px; } .product-description {color: #fff; max-width: 800px; margin: 0 auto 2rem; font-size: 1.1rem; } .product-highlights {display: flex; justify-content: center; gap: 10px; margin-top: 2rem; flex-wrap: wrap; } .highlight-item {background: white; border-radius: 15px; padding: 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 15px; transition: all 0.3s ease; width: 100%; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); } .highlight-icon {width: 50px; height: 50px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .highlight-icon img {width: 30px; height: 30px; object-fit: contain; } .highlight-content h3 {font-size: 1.1rem; margin-bottom: 5px; color: var(--dark); } .highlight-content p {color: var(--gray); font-size: 0.9rem; } /* 服务介绍模块 */ .service-intro {padding: 3rem 0; } .section-title {text-align: center; margin-bottom: 3rem; } .section-title h2 {font-size: 2.2rem; color: var(--dark); margin-bottom: 1rem; position: relative; display: inline-block; } .section-title h2::after {content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--primary); border-radius: 2px; } .section-title p {color: var(--gray); max-width: 800px; margin: 0 auto; } .service-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 2rem; } .service-card {background-color: white; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s ease; display: flex; flex-direction: column; height: 100%; } .service-card:hover {transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .service-img {height: 320px; background-size: contain; background-position: center; background-repeat: no-repeat; } .service-content {padding: 25px; flex-grow: 1; display: flex; flex-direction: column; } .service-content h3 {margin-bottom: 15px; color: var(--primary); font-size: 1.5rem; } .service-content p {margin-bottom: 20px; color: var(--gray); flex-grow: 1; } .features-list {list-style: none; margin-bottom: 20px; } .features-list li {padding: 8px 0; padding-left: 30px; position: relative; border-bottom: 1px solid #eee; font-size: 0.95rem; } .features-list li:last-child {border-bottom: none; } .features-list li::before {content: '✓'; position: absolute; left: 0; top: 8px; color: var(--success); font-weight: bold; } /* 核心产品功能模块图片样式 */ .service-img-container {position: relative; height: 200px; overflow: hidden; border-top-left-radius: 15px; border-top-right-radius: 15px; } .service-img-container img {width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .service-card:hover .service-img-container img {transform: scale(1.05); } .image-overlay {position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; } .service-card:hover .image-overlay {opacity: 1; } /* 优势展示模块 */ .advantages-section {padding: 4rem 0; background: linear-gradient(135deg, #f0f9ff 0%, #e0f7ff 100%); position: relative; overflow: hidden; } .advantages-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 2rem; } .advantage-card {background: white; border-radius: 15px; padding: 30px; box-shadow: var(--shadow); transition: all 0.4s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; text-align: center; } .advantage-card:hover {transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .advantage-icon {width: 70px; height: 70px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.4s ease; } .advantage-icon img {width: 35px; height: 35px; object-fit: contain; } .advantage-card:hover .advantage-icon {background: var(--primary); transform: rotate(10deg) scale(1.1); } .advantage-card:hover .advantage-icon img {filter: brightness(0) invert(1); } .advantage-title {font-size: 1.4rem; color: var(--dark); margin-bottom: 15px; font-weight: 700; } .advantage-content p {color: var(--gray); line-height: 1.7; } /* 应用场景模块 */ .application-section {padding: 4rem 0; } .scene-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 2rem; } .scene-card {background: white; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s ease; text-align: center; } .scene-card:hover {transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .scene-img {height: 180px; background-size: cover; background-position: center; } .scene-content {padding: 20px; } .scene-content h3 {color: var(--dark); margin-bottom: 10px; font-size: 1.3rem; } .scene-content p {color: var(--gray); font-size: 0.95rem; } /* CTA区域 */ .cta-section {padding: 5rem 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; text-align: center; } .cta-section h2 {font-size: 2.2rem; margin-bottom: 1.5rem; } .cta-section p {max-width: 700px; margin: 0 auto 2rem; font-size: 1.1rem; opacity: 0.9; } .cta-btn {display: inline-block; background: white; color: var(--primary); padding: 15px 40px; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; border: 2px solid white; } /* 响应式设计 */ @media (max-width: 768px) {.page-header h1 {font-size: 2rem; } .section-title h2 {font-size: 1.8rem; } .service-grid, .advantages-grid, .scene-grid {grid-template-columns: 1fr; } .cta-section {padding: 3rem 1.5rem; } .cta-section h2 {font-size: 1.8rem; } }