/* 复用首页的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; } /* 页面标题区域 */ .page-header {background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; } .page-header::before {content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; } .page-header::after {content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; } .page-header h1 {font-size: 2.5rem; margin-bottom: 20px; position: relative; z-index: 2; } .page-header p {max-width: 700px; margin: 0 auto; font-size: 1.2rem; opacity: 0.9; position: relative; z-index: 2; } /* 产品与服务模块优化 */ .section-title {text-align: center; margin-bottom: 3rem; padding: 0 20px; } .section-title h2 {font-size: 2.2rem; color: var(--dark); margin-bottom: 1.5rem; 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; font-size: 1.1rem; } /* SWS服务卡片样式 */ .sws-services {padding: 4rem 0; background: white; } .sws-cards {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 3rem; } .sws-card {background: white; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s ease; display: flex; flex-direction: column; height: 100%; position: relative; border: 1px solid var(--border); } .sws-card:hover {transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .sws-card-header {background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 25px; text-align: center; } .sws-card-header h3 {font-size: 1.6rem; margin-bottom: 10px; } .sws-card-header p {opacity: 0.9; font-size: 1rem; } .sws-card-body {padding: 25px; flex-grow: 1; } .sws-features {list-style: none; margin-bottom: 25px; } .sws-features li {padding: 12px 0; padding-left: 30px; position: relative; border-bottom: 1px solid #eee; font-size: 0.95rem; } .sws-features li:last-child {border-bottom: none; } .sws-features li::before {content: '✓'; position: absolute; left: 0; top: 12px; color: var(--success); font-weight: bold; font-size: 1.1rem; } .sws-card-footer {padding: 0 25px 25px; text-align: center; } .contact-btn {display: inline-block; background-color: var(--primary); color: white; padding: 14px 40px; border-radius: 30px; text-decoration: none; font-weight: 600; text-align: center; transition: all 0.3s ease; border: 2px solid var(--primary); font-size: 1rem; width: 100%; } .contact-btn:hover {background-color: transparent; color: var(--primary); } /* 增值服务样式 */ .value-added {padding: 4rem 0; background: linear-gradient(135deg, #f0f9ff 0%, #e0f7ff 100%); position: relative; overflow: hidden; } .value-added::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%; } .value-added::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%; } .pricing-table {background: white; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); margin-top: 3rem; position: relative; z-index: 2; } .pricing-header {background: var(--primary); color: white; padding: 20px 30px; } .pricing-header h3 {font-size: 1.8rem; } .pricing-items {padding: 0; } .pricing-item {display: grid; grid-template-columns: 1fr 2fr 1fr; padding: 20px 30px; border-bottom: 1px solid var(--border); align-items: center; transition: all 0.3s ease; } .pricing-item:last-child {border-bottom: none; } .pricing-item:hover {background: var(--primary-light); } .product-name {font-weight: 600; color: var(--dark); } .description {color: var(--gray); padding: 0 20px; } .price {text-align: right; font-weight: 700; color: var(--primary); } .note {padding: 20px 30px; background: #fffbeb; border-top: 1px solid #fef3c7; color: #92400e; font-size: 0.95rem; } /* 底部区域优化 */ footer {background-color: var(--dark); color: white; padding: 4rem 0 2rem; margin-top: 0; } .footer-content {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 2rem; } .footer-column h3 {margin-bottom: 25px; font-size: 1.4rem; position: relative; padding-bottom: 15px; } .footer-column h3::after {content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background-color: var(--primary); } .footer-column ul {list-style: none; } .footer-column ul li {margin-bottom: 12px; } .footer-column a {color: #cbd5e1; text-decoration: none; transition: color 0.3s ease; display: block; padding: 5px 0; font-size: 0.95rem; } .footer-column a:hover {color: white; padding-left: 5px; } .contact-info p {display: flex; align-items: flex-start; margin-bottom: 15px; line-height: 1.8; font-size: 0.95rem; } .contact-info i {margin-right: 15px; min-width: 20px; color: var(--primary); } .copyright {text-align: center; padding-top: 30px; border-top: 1px solid #334155; color: #94a3b8; font-size: 0.9rem; margin-top: 30px; } /* 响应式设计 */ @media (max-width: 992px) {.pricing-item {grid-template-columns: 1fr 1.5fr 1fr; } } @media (max-width: 768px) {.navbar {flex-direction: column; gap: 20px; } .nav-links {flex-wrap: wrap; justify-content: center; } .page-header h1 {font-size: 2rem; } .page-header p {font-size: 1.1rem; } .section-title h2 {font-size: 2rem; } .pricing-item {grid-template-columns: 1fr; gap: 10px; text-align: center; } .description {padding: 0; } .price {text-align: center; } } @media (max-width: 576px) {.sws-cards {grid-template-columns: 1fr; } .page-header {padding: 60px 0 40px; } .page-header h1 {font-size: 1.8rem; } .section-title h2 {font-size: 1.8rem; } } /* 动画效果 */ @keyframes fadeInUp {from {opacity: 0; transform: translateY(30px); } to {opacity: 1; transform: translateY(0); } } .animate {animation: fadeInUp 0.6s ease forwards; } .delay-1 {animation-delay: 0.2s; } .delay-2 {animation-delay: 0.4s; } .delay-3 {animation-delay: 0.6s; }