* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body::-webkit-scrollbar {
width:5px;
height:6px;
}
body::-webkit-scrollbar-thumb {
background: #006db9;
border-radius:2px;
}
body::-webkit-scrollbar-track {
background: #eef0f2;
}
:root {
--primary: #005ca8;
--primary-dark: #004a87;
--primary-light: #1a75c2;
--primary-lighter: #4a9fd8;
--primary-bg: #e3eaf2;
--white: #ffffff;
--text: #333333;
--text-light: #666666;
--text-lighter: #999999;
--border: #d9e2ef;
--gold: #d4af37;
--gold-light: #ffd700;
--shadow: 0 4px 20px rgba(0, 92, 168, 0.08);
--shadow-hover: 0 12px 40px rgba(0, 92, 168, 0.15);
--radius: 8px;
--transition: all 0.3s ease;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "Microsoft YaHei", "微软雅黑", -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
color: var(--text);
background-color: var(--primary-bg);
background-image: 
radial-gradient(circle at 20% 50%, rgba(0, 92, 168, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(0, 92, 168, 0.03) 0%, transparent 50%);
background-attachment: fixed;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
}
@media (max-width: 768px) {
.breadcrumb {
padding: 12px 0;
margin-bottom: 20px;
}

body {
padding-bottom: 60px;
}
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
ul {
list-style: none;
}
img {
max-width: 100%;
display: block;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
/* 页面切换动画 */
.page {
display: none;
animation: fadeIn 0.4s ease;
}
.page.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}

/* 面包屑导航 */
.breadcrumb {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--border);
}
.breadcrumb .container {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--text-light);
}
.breadcrumb a {
color: var(--text-light);
}
.breadcrumb a:hover {
color: var(--primary);
}
.breadcrumb .current {
color: var(--primary);
font-weight: 500;
}
/* 页面横幅 */
.page-banner {
height: 280px;
background: linear-gradient(135deg, var(--primary-dark), var(--primary));
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}
.page-banner::before {
content: '';
position: absolute;
inset: 0;
background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920&q=80') center/cover;
opacity: 0.2;
}
.page-banner::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(0,74,135,0.9), rgba(0,92,168,0.8));
}
.page-banner-content {
position: relative;
z-index: 2;
}
.page-banner h1 {
font-size: 36px;
font-weight: 700;
margin-bottom: 10px;
}
.page-banner p {
font-size: 16px;
opacity: 0.9;
letter-spacing: 2px;
}
/* 通用区块 */
.section {
padding: 60px 0;
}
.section-header {
text-align: center;
margin-bottom: 40px;
}
.section-subtitle {
color: var(--primary);
font-size: 12px;
font-weight: 600;
letter-spacing: 3px;
margin-bottom: 8px;
opacity: 0.8;
text-transform: uppercase;
}
.section-desc {
color: var(--text-light);
font-size: 14px;
margin-top: 20px;
}
/* 新的统一section标题样式 */
.section-title {
text-align: center;
margin-bottom: 45px;
}
.section-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 22px;
background: rgba(0, 92, 168, 0.06);
border-radius: 24px;
font-size: 12px;
color: var(--primary);
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 18px;
border: 1px solid rgba(0, 92, 168, 0.2);
}
.section-tag::before {
content: '⚙';
font-size: 14px;
line-height: 1;
}
.section-title h2 {
font-size: 42px;
font-weight: 900;
color: #162338;
margin-bottom: 14px;
position: relative;
display: inline-block;
letter-spacing: 0;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
}
.section-title h2 span {
color: var(--primary);
font-weight:500;
margin-left: 10px;
letter-spacing: 1px;
font-family: Arial, sans-serif;
}
.section-title-line {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 18px;
}
.section-title-line span {
width: 48px;
height: 2px;
background: #c8d3e3;
border-radius: 1px;
}
.section-title-line .dot {
width:10px;
height:10px;
background: var(--gold);
border-radius: 50%;
box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.section-title p {
color: #5c6e8a;
font-size: 14px;
margin: 0;
letter-spacing: 0.5px;
}
/* 走进锐步页面 */
.about-intro {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}
.about-intro-img {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-hover);
}
.about-intro-img img {
width: 100%;
height: 400px;
object-fit: cover;
}
.about-intro-text h2 {
font-size: 26px;
color: var(--primary);
margin-bottom: 20px;
}
.about-intro-text p {
font-size: 15px;
color: var(--text-light);
line-height: 2;
margin-bottom: 15px;
text-indent: 2em;
}
/* 发展历程时间轴 */
.timeline {
position: relative;
max-width: 1000px;
margin: 0 auto;
}
.timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 3px;
height: 100%;
background: linear-gradient(180deg, var(--primary), var(--primary-light));
border-radius: 2px;
}
.timeline-item {
position: relative;
margin-bottom: 40px;
display: flex;
justify-content: center;
}
.timeline-item:nth-child(odd) .timeline-content {
margin-right: calc(50% + 30px);
text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
margin-left: calc(50% + 30px);
}
.timeline-dot {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 20px;
background: var(--white);
border: 4px solid var(--primary);
border-radius: 50%;
z-index: 2;
box-shadow: 0 0 0 5px rgba(0,92,168,0.1);
}
.timeline-year {
font-size: 24px;
font-weight: bold;
color: var(--primary);
margin-bottom: 8px;
}
.timeline-content {
background: var(--white);
padding: 20px;
border-radius: var(--radius);
box-shadow: var(--shadow);
width: calc(50% - 30px);
}
.timeline-content h4 {
font-size: 16px;
color: var(--text);
margin-bottom: 8px;
}
.timeline-content p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
}
/* 企业文化 */
.culture-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.culture-card {
background: var(--white);
border-radius: 16px;
padding: 45px 30px;
text-align: center;
box-shadow: 0 8px 30px rgba(0, 92, 168, 0.1);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: none;
position: relative;
overflow: hidden;
}
.culture-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--gold));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}
.culture-card:hover {
transform: translateY(-12px);
box-shadow: 0 20px 50px rgba(0, 92, 168, 0.18);
}
.culture-card:hover::before {
transform: scaleX(1);
}
.culture-icon {
width: 90px;
height: 90px;
background: linear-gradient(135deg, rgba(0, 92, 168, 0.12), rgba(0, 92, 168, 0.06));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
font-size: 42px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.culture-icon::after {
content: '';
position: absolute;
inset: -6px;
border-radius: 50%;
border: 2px solid rgba(0, 92, 168, 0.1);
transition: all 0.4s ease;
}
.culture-card:hover .culture-icon {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
transform: scale(1.15) rotate(5deg);
}
.culture-card:hover .culture-icon::after {
border-color: var(--primary-light);
transform: scale(1.1);
}
.culture-card h3 {
font-size: 20px;
color: var(--text);
margin-bottom: 18px;
font-weight: 700;
position: relative;
padding-bottom: 15px;
}
.culture-card h3::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--gold));
border-radius: 2px;
transition: width 0.3s ease;
}
.culture-card:hover h3::after {
width: 60px;
}
.culture-card p {
font-size: 14px;
color: var(--text-light);
line-height: 1.9;
font-weight: 400;
}
/* 团队风采 */
.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.team-img {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
height: 250px;
}
.team-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.team-img:hover img {
transform: scale(1.05);
}
/* 产品列表页 */
.products-layout {
display: grid;
grid-template-columns: 240px 1fr;
gap: 30px;
}
.product-sidebar {
display: flex;
flex-direction: column;
gap: 20px;
}
.product-cats {
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 92, 168, 0.1);
border: 1px solid rgba(0, 92, 168, 0.08);
}
.sidebar-title {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-lighter) 100%);
color: white;
padding: 20px;
font-size: 17px;
font-weight: 800;
position: relative;
overflow: hidden;
letter-spacing: 1px;
}
.sidebar-title::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
animation: shimmer 3s infinite;
}
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.cat-list {
padding:15px;
}
.cat-list li {
border-bottom: none;
margin-bottom:15px;
}
.cat-list li:last-child {
margin-bottom: 0;
}
.cat-list a {
display: flex;
justify-content: space-between;
align-items: center;
padding:15px 20px;
color: var(--text);
font-size: 15px;
font-weight: 500;
cursor: pointer;
border-radius:50px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.cat-list a::before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 3px;
background: linear-gradient(180deg, var(--primary), var(--primary-light));
transform: scaleY(0);
transition: transform 0.3s ease;
border-radius: 0 2px 2px 0;
}
.cat-list a:hover,
.cat-list a.active {
background: linear-gradient(135deg, rgba(0, 92, 168, 0.08), rgba(0, 92, 168, 0.04));
color: var(--primary);
padding-left: 20px;
font-weight: 600;
}
.cat-list a:hover::before,
.cat-list a.active::before {
transform: scaleY(1);
}
.cat-list a span {
transition: all 0.3s ease;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(0, 92, 168, 0.08);
font-size: 12px;
}
.cat-list a:hover span,
.cat-list a.active span {
transform: translateX(3px);
background: var(--primary);
color: white;
}
.contact-box {
background: linear-gradient(135deg, #f8fbff, #ffffff);
border-radius:15px;
padding:18px;
text-align: left;
box-shadow: 0 4px 20px rgba(0, 92, 168, 0.08);
display: flex;
align-items: center;
gap: 10px;
border: 1px solid rgba(0, 92, 168, 0.08);
transition: all 0.3s ease;
}
.contact-box:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0, 92, 168, 0.12);
}
.contact-box .phone-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
color: white;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(0, 92, 168, 0.25);
}
.contact-box .phone-content {
flex: 1;
}
.contact-box .phone-label {
font-size: 12px;
color: var(--text-light);
margin-bottom: 4px;
font-weight: 500;
}
.contact-box .phone-num {
font-size: 20px;
font-weight:800;
color:var(--primary);
letter-spacing: 0.5px;
line-height: 1.2;
margin-bottom:4px;
}
.contact-box p {
font-size: 11.5px;
color: var(--text-light);
margin: 0;
line-height: 1.5;
}
.products-main h2 {
font-size: 20px;
color: var(--text);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--primary);
display: inline-block;
}
.products-grid-page {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.product-card-page {
background: var(--white);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
cursor: pointer;
border: 1px solid var(--border);
}
.product-card-page:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
border-color: var(--primary-light);
}
.product-card-page .product-img {
width: 100%;
height: 200px;
overflow: hidden;
background: #e5ebf3;
position: relative;
}
.product-card-page .product-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.product-card-page:hover .product-img img {
transform: scale(1.08);
}
.product-card-page .product-info {
padding: 18px;
}
.product-card-page .product-name {
font-size: 15px;
font-weight: 600;
color: var(--text);
margin-bottom: 8px;
transition: var(--transition);
}
.product-card-page:hover .product-name {
color: var(--primary);
}
.product-card-page .product-desc {
font-size: 13px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 12px;
}
.product-card-page .product-more {
font-size: 13px;
color: var(--primary);
font-weight: 500;
}
/* 产品详情页 */
.product-detail-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 50px;
}
.product-detail-img {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
background: var(--white);
padding: 20px;
}
.product-detail-img img {
width: 100%;
height: 400px;
object-fit: contain;
}
.product-detail-info h1 {
font-size: 28px;
color: var(--text);
margin-bottom: 15px;
}
.product-detail-info .product-model {
font-size: 14px;
color: var(--primary);
background: var(--primary-bg);
padding: 5px 15px;
border-radius: 20px;
display: inline-block;
margin-bottom: 20px;
}
.product-detail-info .product-desc-long {
font-size: 15px;
color: var(--text-light);
line-height: 1.8;
margin-bottom: 25px;
}
.product-params {
background: var(--white);
border-radius: var(--radius);
padding: 25px;
box-shadow: var(--shadow);
margin-bottom: 30px;
}
.product-params h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border);
}
.params-table {
width: 100%;
border-collapse: collapse;
}
.params-table tr {
border-bottom: 1px solid var(--border);
}
.params-table tr:last-child {
border-bottom: none;
}
.params-table td {
padding: 12px 0;
font-size: 14px;
}
.params-table td:first-child {
color: var(--text-light);
width: 120px;
}
.params-table td:last-child {
color: var(--text);
font-weight: 500;
}
.product-features {
background: var(--white);
border-radius: var(--radius);
padding: 25px;
box-shadow: var(--shadow);
margin-bottom: 30px;
}
.product-features h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border);
}
.features-list li {
padding: 10px 0;
padding-left: 25px;
position: relative;
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}
.features-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: bold;
}
.product-applications {
background: var(--white);
border-radius: var(--radius);
padding: 25px;
box-shadow: var(--shadow);
}
.product-applications h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border);
}
.app-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.app-tag {
padding: 8px 18px;
background: var(--primary-bg);
color: var(--primary);
border-radius: 20px;
font-size: 13px;
}
.back-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 25px;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
color: var(--text);
cursor: pointer;
transition: var(--transition);
margin-bottom: 30px;
}
.back-btn:hover {
background: var(--primary);
color: white;
border-color: var(--primary);
}
/* 技术支持页面 */
.support-tabs {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.support-tab {
padding: 12px 30px;
background: var(--white);
border: 1px solid var(--border);
border-radius: 30px;
font-size: 15px;
cursor: pointer;
transition: var(--transition);
}
.support-tab.active,
.support-tab:hover {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.support-content {
background: var(--white);
border-radius: var(--radius);
padding: 40px;
box-shadow: var(--shadow);
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
animation: fadeIn 0.3s ease;
}
.service-concept h3 {
font-size: 20px;
color: var(--primary);
margin-bottom: 20px;
}
.service-concept p {
font-size: 15px;
color: var(--text-light);
line-height: 2;
margin-bottom: 15px;
text-indent: 2em;
}
.service-promise-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 20px;
}
.promise-item {
padding: 25px;
background: var(--primary-bg);
border-radius: var(--radius);
border-left: 4px solid var(--primary);
}
.promise-item h4 {
font-size: 16px;
color: var(--primary);
margin-bottom: 10px;
}
.promise-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.7;
text-indent: 0;
}
.download-list {
margin-top: 20px;
}
.download-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 20px;
border-bottom: 1px solid var(--border);
transition: var(--transition);
}
.download-item:hover {
background: var(--primary-bg);
padding-left: 25px;
}
.download-item:last-child {
border-bottom: none;
}
.download-info {
display: flex;
align-items: center;
gap: 15px;
}
.download-icon {
width: 45px;
height: 45px;
background: var(--primary-bg);
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: var(--primary);
}
.download-name {
font-size: 15px;
color: var(--text);
margin-bottom: 3px;
}
.download-size {
font-size: 12px;
color: var(--text-lighter);
}
.download-btn {
padding: 8px 20px;
background: var(--primary);
color: white;
border-radius: var(--radius);
font-size: 13px;
cursor: pointer;
transition: var(--transition);
}
.download-btn:hover {
background: var(--primary-dark);
}
.network-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 20px;
}
.network-item {
padding: 25px;
text-align: center;
background: var(--primary-bg);
border-radius: var(--radius);
}
.network-item .region {
font-size: 18px;
font-weight: 600;
color: var(--primary);
margin-bottom: 10px;
}
.network-item .contact-person {
font-size: 14px;
color: var(--text);
margin-bottom: 5px;
}
.network-item .contact-phone {
font-size: 13px;
color: var(--text-light);
}
/* 联系我们页面 */
.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.contact-info-card {
background: var(--white);
border-radius: var(--radius);
padding: 35px;
box-shadow: var(--shadow);
}
.contact-info-card h3 {
font-size: 20px;
color: var(--primary);
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid var(--border);
}
.contact-info-list li {
display: flex;
gap: 15px;
margin-bottom: 25px;
align-items: flex-start;
}
.contact-info-icon {
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
flex-shrink: 0;
}
.contact-info-text h4 {
font-size: 15px;
color: var(--text);
margin-bottom: 5px;
}
.contact-info-text p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}
.map-section {
margin-top: 40px;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
height: 400px;
background: var(--white);
position: relative;
}
.map-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #f8fafc, #e6ecf6);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--text-light);
}
.map-placeholder .map-icon {
font-size: 60px;
margin-bottom: 15px;
color: var(--primary);
}
.map-placeholder p {
font-size: 16px;
margin-bottom: 5px;
}
.map-placeholder .map-address {
font-size: 14px;
color: var(--text-lighter);
}
.qrcode-box {
width: 100px;
height: 100px;
background: white;
border-radius: 8px;
margin: 0 auto 10px;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
}
@media (min-width: 768px) {
.qrcode-box {
margin: 0 0 10px auto;
}
}
.qrcode-pattern {
width: 100%;
height: 100%;
background: 
linear-gradient(90deg, #333 25%, transparent 25%, transparent 75%, #333 75%),
linear-gradient(#333 25%, transparent 25%, transparent 75%, #333 75%);
background-size: 6px 6px;
position: relative;
border-radius: 2px;
}
.qrcode-pattern::before,
.qrcode-pattern::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
border: 4px solid #333;
background: white;
}
.qrcode-pattern::before {
top: 0;
left: 0;
}
.qrcode-pattern::after {
top: 0;
right: 0;
}
.footer-qrcode p {
font-size: 12px;
color: rgba(255, 255, 255, 0.45);
}
.copyright {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding: 22px 0;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 13px;
color: rgba(255, 255, 255, 0.5);
flex-wrap: wrap;
gap: 10px;
}
.copyright-links {
display: flex;
gap: 20px;
}
.copyright a {
color: rgba(255, 255, 255, 0.6);
margin: 0 5px;
}
.copyright a:hover {
color: white;
}

/* 移动端底部固定按钮 */
.mobile-footer-bar {
display: none;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 60px;
background: var(--white);
box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
z-index: 999;
}
.mobile-footer-bar a {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 12px;
color: var(--text-light);
gap: 2px;
}
.mobile-footer-bar a.call-btn {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
}
.mobile-footer-bar .icon {
font-size: 18px;
}

/* 返回顶部 */
.back-to-top {
position: fixed;
bottom: 80px;
right: 20px;
width: 44px;
height: 44px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 998;
box-shadow: 0 4px 15px rgba(0, 92, 168, 0.3);
font-size: 18px;
}
.back-to-top.show {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: var(--primary-dark);
transform: translateY(-3px);
}

/* Banner轮播 */
.banner {
position: relative;
height: calc(100vh - 110px);
max-height: 650px;
min-height: 320px;
overflow: hidden;
}
.slides {
width: 100%;
height: 100%;
position: relative;
}
.slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1s ease;
display: flex;
align-items: center;
}
.slide::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(0,40,80,0.35) 0%, rgba(0,74,135,0.1) 60%, rgba(0,92,168,0.4) 100%);
}
.slide.active {
opacity: 1;
}
.slide-content {
position: relative;
z-index: 2;
max-width: 1230px;
width: 100%;
margin: 0 auto;
padding: 0 20px;
color: white;
text-align: left;
}
.slide-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 20px;
background: rgba(0,0,0,0.3);
border-radius: 20px;
font-size: 12px;
margin-bottom: 20px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 500;
color: rgba(255,255,255,0.9);
opacity: 0;
transform: translateY(20px);
animation: slideFadeUp 0.8s ease forwards 0.2s;
border: 1px solid rgba(255,255,255,0.15);
}
.slide-tag::before {
content: '';
width: 6px;
height: 6px;
background: var(--gold);
border-radius: 50%;
}
.slide-content h2 {
font-size: 50px;
font-weight:800;
margin-bottom:20px;
line-height: 1.15;
letter-spacing: -1px;
opacity: 0;
transform: translateY(30px);
animation: slideFadeUp 0.9s ease forwards;
animation-delay: 0.4s;
}
.slide-title-line {
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--gold-light), var(--gold));
border-radius: 2px;
margin-bottom: 20px;
opacity: 0;
transform: scaleX(0);
transform-origin: left;
animation: slideLineGrow 0.7s ease forwards;
animation-delay: 0.8s;
}
.slide-content p {
font-size: 17px;
opacity: 0;
max-width: 520px;
line-height: 1.8;
transform: translateY(20px);
animation: slideFadeUp 0.8s ease forwards;
animation-delay: 1s;
color: rgba(255,255,255,0.85);
}
/* Banner三层文字样式 */
.slide-main-title {
font-size: 3.4rem;
font-weight: 800;
margin-bottom: 0;
line-height: 1.2;
letter-spacing: 1px;
color: white;
opacity: 0;
transform: translateY(30px);
animation: slideFadeUp 0.9s ease forwards 0.4s;
}
.slide-title-line {
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--gold-light), var(--gold));
border-radius: 2px;
margin: 20px 0;
opacity: 0;
transform: scaleX(0);
transform-origin: left;
animation: slideLineGrow 0.7s ease forwards 0.7s;
}
.slide-desc {
margin-top: 0;
}
.slide-desc p {
font-size: 17px;
color: rgba(255,255,255,0.85);
line-height: 1.8;
margin: 8px 0;
opacity: 0;
transform: translateY(20px);
max-width: 650px;
}
.slide-btns {
display: none !important;
}
.slide-btn-primary {
padding: 14px 36px;
background: linear-gradient(135deg, var(--gold-light), var(--gold));
color: #1a1a1a !important;
border-radius: 8px;
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
letter-spacing: 0.5px;
}
.slide-btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}
.slide-btn-secondary {
padding: 14px 36px;
background: transparent;
color: white !important;
border: 1.5px solid rgba(255,255,255,0.5);
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
letter-spacing: 0.5px;
}
.slide-btn-secondary:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.8);
transform: translateY(-3px);
}
@keyframes slideFadeUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideLineGrow {
from {
opacity: 0;
transform: scaleX(0);
}
to {
opacity: 1;
transform: scaleX(1);
}
}
.banner-scroll {
position: absolute;
right: 40px;
bottom: 50px;
z-index: 10;
color: rgba(255,255,255,0.6);
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.banner-scroll::after {
content: '';
width: 1px;
height: 40px;
background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
0% { transform: scaleY(0); transform-origin: top; }
50% { transform: scaleY(1); transform-origin: top; }
51% { transform: scaleY(1); transform-origin: bottom; }
100% { transform: scaleY(0); transform-origin: bottom; }
}
/* 轮播切换时重置动画 */
.slide.active .slide-tag,
.slide.active .slide-main-title,
.slide.active .slide-title-line,
.slide.active .slide-desc p,
.slide.active .slide-btns {
animation: none;
}
.slide.active .slide-tag {
animation: slideFadeUp 0.8s ease forwards 0.2s;
}
.slide.active .slide-main-title {
animation: slideFadeUp 0.9s ease forwards 0.4s;
}
.slide.active .slide-title-line {
animation: slideLineGrow 0.7s ease forwards 0.7s;
}
.slide.active .slide-desc p:nth-child(1) {
animation: slideFadeUp 0.8s ease forwards 0.9s;
}
.slide.active .slide-desc p:nth-child(2) {
animation: slideFadeUp 0.8s ease forwards 1.0s;
}
.slide.active .slide-btns {
animation: slideFadeUp 0.8s ease forwards 1.2s;
}
.slide.active .slide-tag {
animation: slideFadeUp 0.8s ease forwards;
animation-delay: 0.2s;
}
.slide.active .slide-content h2 {
animation: slideFadeUp 0.9s ease forwards;
animation-delay: 0.4s;
}
.slide.active .slide-title-line {
animation: slideLineGrow 0.7s ease forwards;
animation-delay: 0.8s;
}
.slide.active .slide-content p {
animation: slideFadeUp 0.8s ease forwards;
animation-delay: 1s;
}
.slide.active .slide-btns {
animation: slideFadeUp 0.8s ease forwards;
animation-delay: 1.3s;
}
.banner-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 48px;
height: 48px;
background: rgba(255,255,255,0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 20px;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
backdrop-filter: blur(8px);
}
.banner-arrow:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-50%) scale(1.1);
}
.banner-arrow.prev {
left: 30px;
}
.banner-arrow.next {
right: 30px;
}
.banner-dots {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 10;
align-items: center;
}
.dot {
width:10px;
height:10px;
border-radius: 50%;
background: rgba(255,255,255,0.4);
cursor: pointer;
transition: all 0.3s ease;
}
.dot.active {
background: var(--gold);
width: 32px;
height:10px;
border-radius:50px;
}
/* 产品展示 */
.products-wrapper {
display: grid;
grid-template-columns: 240px 1fr;
gap: 30px;
}
.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.product-card {
background: var(--white);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
cursor: pointer;
border: 1px solid var(--border);
}
.product-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
border-color: var(--primary-light);
}
.product-card .product-img {
width: 100%;
height: 200px;
overflow: hidden;
background: #e5ebf3;
position: relative;
}
.product-card .product-img::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
transition: width 0.3s ease;
}
.product-card:hover .product-img::after {
width: 100%;
}
.product-card .product-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.product-card:hover .product-img img {
transform: scale(1.08);
}
.product-card .product-info {
padding: 18px;
}
.product-card .product-name {
font-size: 16px;
font-weight:500;
color: var(--text);
text-align: center;
transition: var(--transition);
}
.product-card:hover .product-name {
color: var(--primary);
}
/* 服务承诺模块 */
.service-section {
background: linear-gradient(135deg, var(--primary-dark), var(--primary));
padding: 50px 0;
position: relative;
overflow: hidden;
}
.service-section::before {
content: '';
position: absolute;
inset: 0;
background: url('../images/bannerbg.jpg') center/cover;
opacity: 0.8;
}
.service-content {
position: relative;
z-index: 2;
display: flex;
justify-content: space-between;
align-items: center;
color: white;
}
.service-tags {
display: flex;
gap: 15px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.service-tag {
padding: 6px 18px;
border: 1px solid rgba(255,255,255,0.3);
border-radius: 20px;
font-size: 13px;
}
.service-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 10px;
}
.service-subtitle {
font-size: 16px;
opacity: 0.8;
}
.service-hotline-label {
font-size: 14px;
opacity: 0.8;
margin-bottom: 5px;
}
.service-hotline {
font-size: 42px;
font-weight: bold;
color: var(--gold-light);
letter-spacing: 2px;
}
/* 快捷入口模块 */
.quick-entry-section {
padding: 60px 0;
background: var(--white);
}
.quick-entry-title {
text-align: center;
margin-bottom: 40px;
}
.quick-entry-title h3 {
font-size: 28px;
color: var(--text);
margin-bottom: 10px;
}
.quick-entry-title p {
color: var(--text-light);
font-size: 14px;
}
.quick-entry-grid {
display: flex;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
justify-content: space-around;
}
.quick-entry-item {
text-align: center;
cursor: pointer;
transition: var(--transition);
}
.quick-entry-circle {
width: 170px;
height: 170px;
border-radius: 50%;
overflow: hidden;
border: 5px solid white;
box-shadow: 0 8px 15px rgba(0,92,168,0.15);
margin-bottom: 15px;
transition: var(--transition);
position: relative;
}
}
.quick-entry-circle::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(0,92,168,0.7), rgba(0,92,168,0.5));
opacity: 0;
transition: var(--transition);
}
.quick-entry-item:hover .quick-entry-circle {
transform: scale(1.1);
border-color: var(--primary);
}
.quick-entry-item:hover .quick-entry-circle::after {
opacity: 1;
}
.quick-entry-circle img {
width: 100%;
height: 100%;
object-fit: cover;
}
.quick-entry-item span {
font-size: 16px;
font-weight: 500;
color: var(--text);
}
.quick-entry-item:hover span {
color: var(--primary);
}
/* 我们的优势 */
.advantages-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-bottom: 40px;
}
.advantage-card {
background: var(--white);
border-radius: 12px;
padding: 32px 26px;
text-align: left;
box-shadow: 0 2px 12px rgba(0, 92, 168, 0.05);
transition: all 0.35s ease;
position: relative;
overflow: hidden;
border: 1px solid rgba(0, 92, 168, 0.06);
}
.advantage-card::before {
content: attr(data-num);
position: absolute;
top: 12px;
right: 18px;
font-size: 64px;
font-weight: 900;
color: #f0f4fa;
letter-spacing: -3px;
line-height: 1;
font-family: 'Arial Black', Arial, sans-serif;
opacity: 0.6;
}
.advantage-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 40px rgba(0, 92, 168, 0.12);
border-color: rgba(0, 92, 168, 0.15);
}
.advantage-icon {
width: 60px;
height: 60px;
margin-bottom: 20px;
background: #f0f4fa;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
line-height: 1;
transition: all 0.3s ease;
color: var(--primary);
}
.advantage-card:hover .advantage-icon {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
transform: scale(1.05);
box-shadow: 0 6px 16px rgba(0, 92, 168, 0.25);
}
.advantage-card .adv-en {
font-size: 11px;
color: var(--primary);
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 10px;
font-weight: 600;
opacity: 0.8;
}
.advantage-card h3 {
font-size: 18px;
color: #162338;
margin-bottom: 12px;
font-weight: 800;
}
.advantage-card p {
font-size: 13px;
color: #5a6b82;
line-height: 1.9;
margin: 0;
}
.stats-bar {
display: grid;
grid-template-columns: repeat(4, 1fr);
background: linear-gradient(135deg, #005096 0%, #0068b8 100%);
border-radius: 12px;
padding: 0;
color: white;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 80, 150, 0.25);
overflow: hidden;
margin-top: 10px;
}
.stats-bar .stat-item {
padding: 32px 15px;
position: relative;
}
.stats-bar .stat-item:not(:last-child)::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 36px;
background: rgba(255,255,255,0.12);
}
.stats-bar .stat-icon {
font-size: 24px;
margin-bottom: 8px;
opacity: 0.9;
}
.stat-num {
font-size: 30px;
font-weight: 800;
color: white;
margin-bottom: 4px;
letter-spacing: -1px;
line-height: 1;
}
.stat-num span {
font-size: 16px;
font-weight: 600;
}
.stat-label {
font-size: 12px;
opacity: 0.75;
letter-spacing: 0.5px;
}
/* 品牌展示 */
.brand-block {
margin-bottom: 40px;
}
.brand-title {
font-size: 18px;
color: var(--primary);
margin-bottom: 20px;
padding-left: 15px;
border-left: 4px solid var(--primary);
}
.brands-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.brand-item {
background: var(--white);
border-radius: var(--radius);
padding: 25px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
border: 1px solid var(--border);
}
.brand-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
}
.brand-logo-img {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.brand-logo-icon {
width:80px;
height:40px;
border-radius:3px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
font-weight: bold;
transition: var(--transition);
}
.brand-item:hover .brand-logo-icon {
transform: scale(1.1) rotate(-5deg);
}
.brand-logo-text {
font-size: 15px;
font-weight: 500;
color: var(--text);
}
/* 资质荣誉 */
.honors-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.honor-card {
text-align: center;
cursor: pointer;
transition: var(--transition);
}
.honor-card:hover {
transform: translateY(-8px);
}
.honor-img {
height: 260px;
background: linear-gradient(135deg, #fff9e6, #fff);
border: 3px double var(--gold);
border-radius: 8px;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 15px;
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
transition: var(--transition);
}
.honor-card:hover .honor-img {
box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
}
.honor-corner {
position: absolute;
width: 20px;
height: 20px;
border: 2px solid var(--gold);
}
.honor-corner.tl {
top: 8px;
left: 8px;
border-right: none;
border-bottom: none;
}
.honor-corner.tr {
top: 8px;
right: 8px;
border-left: none;
border-bottom: none;
}
.honor-corner.bl {
bottom: 8px;
left: 8px;
border-right: none;
border-top: none;
}
.honor-corner.br {
bottom: 8px;
right: 8px;
border-left: none;
border-top: none;
}
.honor-badge {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, var(--gold), var(--gold-light));
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
color: white;
margin-bottom: 15px;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
border: 4px solid white;
outline: 2px solid var(--gold);
}
.honor-cert-title {
font-size: 14px;
color: var(--gold);
font-weight: 500;
letter-spacing: 2px;
}
.honor-name {
font-size: 16px;
font-weight: 600;
color: var(--text);
transition: var(--transition);
}
.honor-card:hover .honor-name {
color: var(--primary);
}
/* 图片灯箱 */
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
z-index: 9999;
align-items: center;
justify-content: center;
padding: 20px;
}
.lightbox.show {
display: flex;
animation: fadeIn 0.3s ease;
}
.lightbox img {
max-width: 90%;
max-height: 90%;
border-radius: 8px;
box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
position: absolute;
top: 20px;
right: 30px;
width: 50px;
height: 50px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
color: white;
font-size: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: var(--transition);
}
.lightbox-close:hover {
background: rgba(255,255,255,0.2);
transform: rotate(90deg);
}
.gallery-img {
cursor: zoom-in;
transition: var(--transition);
}
.gallery-img:hover {
opacity: 0.85;
transform: scale(1.02);
}
/* 图片网格 */
.img-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.img-grid-item {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
background: white;
}
.img-grid-item img {
width: 100%;
height: 220px;
object-fit: cover;
}
.img-grid-item .img-title {
padding:18px;
text-align: center;
font-size:15px;
font-weight: 500;
color: var(--text);
}
/* 分页 */
.pagination {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 40px;
}
.page-btn {
min-width: 40px;
height: 40px;
padding: 0 12px;
border: 1px solid var(--border);
background: white;
border-radius: var(--radius);
cursor: pointer;
font-size: 14px;
color: var(--text);
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
}
.page-btn:hover,
.page-btn.active {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.page-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* 产品介绍图文 */
.product-intro {
background: white;
border-radius: var(--radius);
padding: 30px;
box-shadow: var(--shadow);
line-height: 1.8;
font-size: 15px;
color: var(--text-light);
}
.product-intro img {
max-width: 100%;
border-radius: var(--radius);
margin: 20px 0;
box-shadow: var(--shadow);
}
.product-intro h3 {
font-size: 18px;
color: var(--primary);
margin: 25px 0 15px;
padding-left: 12px;
border-left: 4px solid var(--primary);
}
.product-intro h3:first-child {
margin-top: 0;
}
.product-intro p {
margin-bottom: 15px;
text-indent: 2em;
}
.product-intro ul {
margin: 15px 0;
padding-left: 20px;
}
.product-intro li {
margin-bottom: 8px;
position: relative;
padding-left: 20px;
}
.product-intro li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: bold;
}
.product-intro .param-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 14px;
}
.product-intro .param-table td {
padding: 12px 15px;
border: 1px solid var(--border);
}
.product-intro .param-table td:first-child {
background: var(--primary-bg);
color: var(--primary);
font-weight: 500;
width: 150px;
}
/* 联系信息卡片 */
.contact-info-only {
background: white;
border-radius: var(--radius);
padding: 40px;
box-shadow: var(--shadow);
}

/* ========== 滚动动画效果 ========== */
.scroll-animate {
opacity: 0;
transform: translateY(40px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-animate.animated {
opacity: 1;
transform: translateY(0);
}
.scroll-animate.fade-left {
transform: translateX(-40px);
}
.scroll-animate.fade-left.animated {
transform: translateX(0);
}
.scroll-animate.fade-right {
transform: translateX(40px);
}
.scroll-animate.fade-right.animated {
transform: translateX(0);
}
.scroll-animate.zoom-in {
transform: scale(0.9);
}
.scroll-animate.zoom-in.animated {
transform: scale(1);
}
/* 延迟动画 */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }
/* 数字计数动画 */
.stat-num.counting {
animation: countPulse 0.3s ease;
}
@keyframes countPulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); color: var(--gold-light); }
100% { transform: scale(1); }
}
/* ========== 
新导航栏样式 ========== */

.sticky {
position: sticky;
}
.top-0 {
top: 0;
}
.z-50 {
z-index: 50;
}
.w-full {
width: 100%;
}
.transition-all {
transition: all 0.3s ease;
}
.duration-400 {
transition-duration: 400ms;
}
.bg-white\/90 {
background-color: rgba(255, 255, 255, 0.9);
}
.backdrop-blur-sm {
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
}
/* Header容器 */
.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 768px) {
.header-container {
padding: 0 1.5rem;
}
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 4.5rem;
}
@media (min-width: 768px) {
.header-inner {
height: 5rem;
}
}
@media (min-width: 1024px) {
.header-inner {
height: 6rem;
}
}
/* Logo样式 - 手机端优化 */
.logo-wrap {
display: flex;
align-items: center;
gap: 0.75rem;
flex-shrink: 0;
text-decoration: none;
}
.logo-icon {
position: relative;
width: 2.5rem;
height: 2.5rem;
border-radius: 0.75rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%, hsl(210, 100%, 28%) 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 1rem;
box-shadow: 0 10px 15px -3px rgba(0, 92, 168, 0.15);
transition: all 0.3s ease;
overflow: hidden;
flex-shrink: 0;
}
@media (min-width: 768px) {
.logo-icon {
width: 3rem;
height: 3rem;
font-size: 1.25rem;
}
}
@media (min-width: 1024px) {
.logo-icon {
width: 3.5rem;
height: 3.5rem;
font-size: 1.5rem;
}
}
.logo-wrap:hover .logo-icon {
box-shadow: 0 20px 25px -5px rgba(0, 92, 168, 0.25);
}
.logo-text {
position: relative;
z-index: 10;
}
.logo-shine {
position: absolute;
inset: 0;
border-radius: 0.75rem;
background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
opacity: 0;
transition: opacity 0.3s ease;
}
.logo-wrap:hover .logo-shine {
opacity: 1;
}
.logo-dot {
position: absolute;
top: -0.25rem;
right: -0.25rem;
width: 0.75rem;
height: 0.75rem;
border-radius: 50%;
background-color: var(--gold);
opacity: 0;
transition: opacity 0.3s ease;
box-shadow: 0 0 8px hsla(42, 85%, 52%, 0.5);
}
.logo-wrap:hover .logo-dot {
opacity: 1;
}
.logo-info {
display: flex;
flex-direction: column;
line-height: 1.5;
min-width: 0;
}
.company-name {
font-size: 0.875rem;
font-weight: bold;
color: var(--text);
letter-spacing: 0.07em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media (min-width: 768px) {
.company-name {
font-size: 1.125rem;
}
}
@media (min-width: 1024px) {
.company-name {
font-size: 1.25rem;
}
}
.company-en {
font-size:5.7px;
color: var(--text-light);
letter-spacing:0.0em;
text-transform: uppercase;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media (min-width: 768px) {
.company-en {
font-size:0.5rem;
}
}
/* PC端导航 */
.desktop-nav {
display: none;
align-items: center;
gap: 0.25rem;
}
@media (min-width: 1280px) {
.desktop-nav {
display: flex;
}
}
.nav-item {
position: relative;
}
.nav-link {
position: relative;
display: flex;
align-items: center;
gap: 0.375rem;
padding: 0.75rem 1rem;
font-size: 0.875rem;
font-weight: 600;
transition: all 0.3s ease;
border-radius: 0.5rem;
color: rgba(51, 51, 51, 0.8);
text-decoration: none;
}
@media (min-width: 1024px) {
.nav-link {
padding: 0.75rem 1.25rem;
font-size: 1rem;
}
}
.nav-link:hover {
color: var(--primary);
}
.nav-item.nav-active .nav-link {
color: var(--primary);
}
.chevron-down {
width: 1rem;
height: 1rem;
transition: transform 0.3s ease;
}
.nav-dropdown:hover .chevron-down {
transform: rotate(180deg);
}
.nav-underline {
position: absolute;
bottom: 0.25rem;
left: 50%;
transform: translateX(-50%);
border-radius: 9999px;
transition: all 0.3s ease;
width: 0;
opacity: 0;
}
.nav-item.nav-active .nav-underline {
width: 100%;
opacity: 1;
}
.nav-item:not(.nav-active) .nav-link:hover .nav-underline {
width: 100%;
opacity: 1;
}
/* 下拉菜单 */
.dropdown-menu {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
padding-top: 0.75rem;
width: 560px;
transition: all 0.3s ease;
opacity: 0;
transform: translateX(-50%) translateY(-0.75rem);
pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
opacity: 1;
transform: translateX(-50%) translateY(0);
pointer-events: auto;
}
.dropdown-panel {
background: white;
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.06);
border: 1px solid rgba(217, 226, 239, 0.25);
overflow: hidden;
display: flex;
}
.dropdown-links {
flex: 1;
padding: 1rem;
display: flex;
flex-direction: column;
gap: 0.25rem;
border-right: 1px solid rgba(217, 226, 239, 0.15);
}
.dropdown-link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.625rem 1rem;
font-size: 0.875rem;
font-weight: 500;
color: rgba(51, 51, 51, 0.75);
border-radius: 0.75rem;
transition: all 0.2s ease;
text-decoration: none;
}
.dropdown-link:hover {
background: rgba(0, 92, 168, 0.04);
color: var(--primary);
}
.dropdown-arrow {
color: var(--text-light);
opacity: 0;
transform: translateX(0.25rem);
transition: all 0.2s ease;
}
.dropdown-link:hover .dropdown-arrow {
opacity: 1;
transform: translateX(0);
}
.dropdown-card {
width: 280px;
padding: 1.25rem;
background: linear-gradient(135deg, rgba(0, 92, 168, 0.04) 0%, rgba(0, 92, 168, 0.02) 50%, transparent 100%);
}
.dropdown-card-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: 0.75rem;
background: rgba(0, 92, 168, 0.08);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
margin-bottom: 0.75rem;
font-size: 1.125rem;
font-weight: bold;
}
.dropdown-card p {
font-size:0.9rem;
color: var(--text-light);
line-height: 1.6;
margin: 0;
}
/* Header右侧 */
.header-right {
display: none;
align-items: center;
gap: 1rem;
}
@media (min-width: 1280px) {
.header-right {
display: flex;
}
}
.header-phone {
display: flex;
align-items: center;
gap: 0.75rem;
text-align: right;
}
.phone-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
background: rgba(0, 92, 168, 0.06);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
}
.phone-icon svg {
width: 1.25rem;
height: 1.25rem;
}
.phone-label {
font-size: 0.75rem;
color: var(--text-light);
margin: 0;
}
.phone-number {
font-size: 1rem;
font-weight: bold;
color: var(--primary);
margin: 0;
}
.consult-btn {
padding: 0.75rem 1.5rem;
background: linear-gradient(90deg, var(--primary) 0%, hsl(210, 100%, 28%) 100%);
color: white;
font-weight: 600;
border-radius: 0.75rem;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 10px 15px -3px rgba(0, 92, 168, 0.15);
}
.consult-btn:hover {
box-shadow: 0 20px 25px -5px rgba(0, 92, 168, 0.25);
transform: translateY(-2px);
}
/* 移动端菜单按钮 */
.mobile-menu-btn {
display: flex;
padding: 0.5rem;
color: var(--text);
background: none;
border: none;
cursor: pointer;
transition: color 0.3s ease;
}
.mobile-menu-btn:hover {
color: var(--primary);
}
.mobile-menu-btn svg {
width: 1.5rem;
height: 1.5rem;
}
@media (min-width: 1280px) {
.mobile-menu-btn {
display: none;
}
}
/* 移动端菜单 */
.mobile-menu {
display: none;
overflow: hidden;
transition: all 0.3s ease;
background: white;
border-top: 1px solid rgba(217, 226, 239, 0.15);
max-height: 0;
}
.mobile-menu.open {
max-height: 1000px;
}
@media (max-width: 1279px) {
.mobile-menu {
display: block;
}
}
.mobile-nav {
padding: 1rem;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.mobile-nav-link {
display: block;
padding: 0.875rem 1rem;
font-size: 1rem;
font-weight: 600;
border-radius: 0.75rem;
transition: background-color 0.2s ease;
text-decoration: none;
color: var(--text);
}
.mobile-nav-link.mobile-nav-active {
background: rgba(0, 92, 168, 0.06);
color: var(--primary);
}
.mobile-submenu {
display: flex;
flex-direction: column;
}
.mobile-submenu-btn {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 0.875rem 1rem;
font-size: 1rem;
font-weight:500;
color: var(--text);
background: none;
border: none;
border-radius: 0.75rem;
cursor: pointer;
transition: background-color 0.2s ease;
}
.mobile-submenu-btn:hover {
background: #f5f5f5;
}
.mobile-chevron {
width: 1.25rem;
height: 1.25rem;
transition: transform 0.2s ease;
color: var(--text-light);
}
.mobile-submenu-btn.open .mobile-chevron {
transform: rotate(180deg);
}
.mobile-submenu-content {
overflow: hidden;
transition: all 0.2s ease;
padding-left: 1rem;
max-height: 0;
}
.mobile-submenu-content.open {
max-height: 500px;
}
.mobile-sub-link {
display: block;
padding: 0.625rem 1rem;
font-size: 0.95rem;
color: var(--text-light);
border-radius: 0.5rem;
transition: all 0.2s ease;
text-decoration: none;
}
.mobile-sub-link:hover {
color: var(--primary);
background: rgba(0, 92, 168, 0.04);
}
.mobile-call-wrap {
padding-top: 1rem;
margin-top: 1rem;
border-top: 1px solid rgba(217, 226, 239, 0.15);
}
.mobile-call-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
width: 100%;
padding: 0.875rem;
background: linear-gradient(90deg, var(--primary) 0%, hsl(210, 100%, 28%) 100%);
color: white;
font-weight: 600;
border-radius: 0.75rem;
text-decoration: none;
box-shadow: 0 10px 15px -3px rgba(0, 92, 168, 0.15);
}
.mobile-call-btn svg {
width: 1.25rem;
height: 1.25rem;
}
/* 滚动阴影 */
#header.scrolled {
box-shadow: 0 4px 20px rgba(0, 92, 168, 0.1);
}
/* ========== 
新页脚样式 ========== */
.site-footer {
width: 100%;
background-color: hsl(216, 45%, 10%);
color: white;
position: relative;
overflow: hidden;
}
.footer-bg-circle-1 {
position: absolute;
top: 0;
right: 0;
width: 24rem;
height: 24rem;
border-radius: 50%;
background: rgba(0, 92, 168, 0.04);
transform: translate(50%, -50%);
}
.footer-bg-circle-2 {
position: absolute;
bottom: 0;
left: 0;
width: 16rem;
height: 16rem;
border-radius: 50%;
background: rgba(212, 175, 55, 0.03);
transform: translate(-50%, 50%);
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 3rem 1rem;
position: relative;
}
@media (min-width: 768px) {
.footer-container {
padding: 4rem 1.5rem;
}
}
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
@media (min-width: 768px) {
.footer-grid {
grid-template-columns: repeat(2, 1fr);
gap: 2.5rem;
}
}
@media (min-width: 1024px) {
.footer-grid {
grid-template-columns: repeat(12, 1fr);
gap: 2rem;
}
}
/* 页脚列 */
.footer-col {
display: flex;
flex-direction: column;
}
.footer-brand {
grid-column: span 1;
}
@media (min-width: 1024px) {
.footer-brand {
grid-column: span 4;
}
}
.footer-nav {
grid-column: span 1;
}
@media (min-width: 1024px) {
.footer-nav {
grid-column: span 2;
}
}
.footer-info {
grid-column: span 1;
}
@media (min-width: 1024px) {
.footer-info {
grid-column: span 4;
}
}
.footer-qrcode {
grid-column: span 1;
display: flex;
flex-direction: column;
align-items: center;
}
@media (min-width: 768px) {
.footer-qrcode {
align-items: flex-end;
}
}
@media (min-width: 768px) {
.footer-qrcode {
align-items: flex-end;
}
}
@media (min-width: 1024px) {
.footer-qrcode {
grid-column: span 2;
}
}
/* 手机端隐藏类 */
.hidden-mobile {
display: none;
}
@media (min-width: 768px) {
.hidden-mobile {
display: flex;
flex-direction: column;
}
}
/* 品牌列 */
.footer-logo-wrap {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.25rem;
}
.footer-logo {
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
background: linear-gradient(135deg, var(--primary) 0%, hsl(210, 100%, 28%) 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 1.25rem;
box-shadow: 0 10px 15px -3px rgba(0, 92, 168, 0.15);
}
.footer-company {
font-size: 1.125rem;
font-weight: bold;
color: white;
}
.footer-company-en {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.35);
letter-spacing: 0.05em;
}
.footer-slogan {
font-size: 1.5rem;
font-weight: 900;
color: white;
margin-bottom: 1rem;
letter-spacing: -0.025em;
}
@media (min-width: 768px) {
.footer-slogan {
font-size: 1.875rem;
}
}
.slogan-dot {
color: var(--gold);
margin: 0 0.5rem;
}
@media (min-width: 768px) {
.slogan-dot {
margin: 0 0.75rem;
}
}
.footer-desc {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.45);
line-height: 1.6;
margin: 0 0 1.5rem 0;
max-width: 24rem;
}
/* 页脚标题 */
.footer-title {
font-size: 1rem;
font-weight: bold;
color: white;
margin-bottom: 1.25rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.qrcode-title {
width: 100%;
text-align: center;
justify-content: center;
}
@media (min-width: 768px) {
.qrcode-title {
text-align: right;
justify-content: flex-end;
}
}
.title-line {
width: 4px;
height: 1rem;
background: var(--gold);
border-radius: 9999px;
}
@media (max-width: 1023px) {
.title-line.hidden-mobile {
display: none;
}
}
/* 快捷导航 */
.footer-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-link {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.45);
text-decoration: none;
transition: color 0.2s ease;
}
.footer-link:hover {
color: var(--gold);
}
.footer-link-arrow {
width: 0.875rem;
height: 0.875rem;
opacity: 0;
transform: translateX(-0.5rem);
transition: all 0.3s ease;
}
.footer-link:hover .footer-link-arrow {
opacity: 1;
transform: translateX(0);
}
/* 公司信息 */
.footer-info-list {
display: flex;
flex-direction: column;
gap: 0.875rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.45);
}
.info-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
}
.info-icon {
width: 1rem;
height: 1rem;
margin-top: 0.125rem;
flex-shrink: 0;
color: var(--gold);
}
.info-company {
color: white;
font-weight: 500;
}
.info-address, .info-phone {
display: flex;
flex-direction: column;
gap: 0.375rem;
}
.info-address p, .info-phone p {
margin: 0;
}
.info-email {
color: rgba(255, 255, 255, 0.45);
text-decoration: none;
transition: color 0.2s ease;
}
.info-email:hover {
color: var(--gold);
}
/* 二维码 */
.qrcode-box {
width: 8rem;
height: 8rem;
background: white;
border-radius: 1rem;
padding: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
margin-bottom: 0.75rem;
}
.qrcode-box svg {
width: 100%;
height: 100%;
color: rgba(51, 51, 51, 0.7);
}
.qrcode-tip {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.35);
text-align: center;
margin: 0;
}
/* 版权栏 - 移除了border-top */
.copyright-bar {
background: rgba(0, 0, 0, 0.15);
}
.copyright-container {
max-width: 1400px;
margin: 0 auto;
padding: 1rem;
}
@media (min-width: 768px) {
.copyright-container {
padding: 1rem 1.5rem;
}
}
.copyright-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.35);
}
@media (min-width: 768px) {
.copyright-content {
flex-direction: row;
}
}
.copyright-content p {
margin: 0;
}
.copyright-links {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 0.75rem;
}
@media (min-width: 768px) {
.copyright-links {
gap: 1.25rem;
}
}
.copyright-links a {
color: rgba(255, 255, 255, 0.35);
text-decoration: none;
transition: color 0.2s ease;
}
.copyright-links a:hover {
color: var(--gold);
}
.copyright-sep {
color: rgba(255, 255, 255, 0.15);
}

/* 响应式设计 */
@media (max-width: 1024px) {
.about-intro {
grid-template-columns: 1fr;
}
.culture-grid,
.network-grid {
grid-template-columns: repeat(2, 1fr);
}
.products-grid-page {
grid-template-columns: repeat(2, 1fr);
}
.product-detail-layout,
.contact-layout {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: repeat(2, 1fr);
}
.timeline::before {
left: 20px;
}
.timeline-dot {
left: 20px;
}
.timeline-item:nth-child(odd) .timeline-content,
.timeline-item:nth-child(even) .timeline-content {
margin-left: 60px;
margin-right: 0;
width: calc(100% - 60px);
text-align: left;
}
.team-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 1024px) {
.nav-right {
display: none;
}
}

/* 响应式 */
@media (max-width: 1024px) {
.products-wrapper {
grid-template-columns: 1fr;
}
.products-grid {
grid-template-columns: repeat(3, 1fr);
}
.advantages-grid,
.brands-grid,
.honors-grid {
grid-template-columns: repeat(2, 1fr);
}
.stats-bar {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.service-content {
flex-direction: column;
text-align: center;
gap: 30px;
}
.quick-entry-grid {
gap:10px;
}
.quick-entry-circle {
width: 120px;
height: 120px;
}
}
@media (max-width: 768px) {
.page-banner {
height: 180px;
}
.page-banner h1 {
font-size: 24px;
}
.page-banner p {
font-size: 13px;
}
.section {
padding: 35px 0;
}
.container {
padding: 0 15px;
}
.products-layout {
grid-template-columns: 1fr;
}
.products-grid-page {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.product-card-page .product-img {
height: 140px;
}
.product-card-page .product-info {
padding: 12px;
}
.product-card-page .product-name {
font-size: 13px;
}
.product-card-page .product-desc {
display: none;
}
.product-detail-img img {
height: 250px;
}
.product-detail-info h1 {
font-size: 22px;
}
.support-content {
padding: 20px;
}
.service-promise-list {
grid-template-columns: 1fr;
}
.culture-grid,
.network-grid {
grid-template-columns: 1fr;
}
.team-grid {
grid-template-columns: 1fr;
}
.contact-info-card,
footer {
padding-top: 30px;
}
.mobile-footer-bar {
display: flex;
}
.back-to-top {
bottom: 70px;
right: 15px;
width: 40px;
height: 40px;
}
.support-tabs {
gap: 10px;
}
.support-tab {
padding: 10px 20px;
font-size: 14px;
}
/* ========== Banner 移动端 ========== */
.banner {
height: 280px;
margin: 0;
padding: 0;
}
.slide {
margin: 0;
padding: 0;
}
/* 移动端单独设置更适合竖屏的背景图 */
.slide:nth-child(1) {
background-image: url('../images/m01.jpg') !important;
background-position: center;
}
.slide:nth-child(2) {
background-image: url('../images/m02.jpg') !important;
background-position: center;
}
.slide:nth-child(3) {
background-image: url('../images/m03.jpg') !important;
background-position: center;
}
.slide:nth-child(4) {
background-image: url('../images/m04.jpg') !important;
background-position: center;
}
.slide-content {
padding: 0 20px;
}
.slide-tag {
font-size: 10px !important;
padding: 5px 14px !important;
margin-bottom: 12px !important;
}
.slide-main-title {
font-size: 1.6rem !important;
letter-spacing: 0.5px !important;
margin-bottom: 0 !important;
line-height: 1.3 !important;
}
.slide-title-line {
width: 30px !important;
height: 3px !important;
margin: 12px 0 !important;
}
.slide-desc p {
font-size: 12px !important;
line-height: 1.6 !important;
margin: 4px 0 !important;
}
.banner-arrow {
display: none;
}
.banner-dots {
bottom: 15px;
}
.dot {
width: 6px;
height: 6px;
}
.dot.active {
width: 24px;
height: 5px;
}
.banner-scroll {
display: none;
}
/* ========== 模块标题 移动端一行显示 ========== */
.section-title h2 {
font-size: 20px !important;
white-space: nowrap;
}
.section-title h2 span {
font-size: 11px !important;
display: block;
margin-top: 2px;
letter-spacing: 1px;
}
.section-title p {
font-size: 12px !important;
margin-top: 8px;
}
.section-title-line {
margin: 10px auto;
}
/* ========== 产品卡片 移动端 ========== */
.products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.product-card .product-img {
height:120px;
}
.product-card .product-info {
padding: 10px;
}
.product-card .product-name {
font-size: 12px;
line-height: 1.4;
}
/* ========== 我们的优势 移动端 ========== */
.advantages-grid {
grid-template-columns: 1fr;
gap: 12px;
}
.advantage-card {
padding: 20px;
}
.advantage-icon {
width: 50px;
height: 50px;
font-size: 24px;
margin-bottom: 12px;
}
.advantage-card h3 {
font-size: 16px;
}
.advantage-card p {
font-size: 13px;
}
/* ========== 数据条 移动端 ========== */
.stats-bar {
grid-template-columns: repeat(2, 1fr);
padding: 20px 15px;
gap: 15px;
border-radius: 10px;
}
.stat-num {
font-size: 24px;
}
.stat-label {
font-size: 12px;
}
.stat-icon {
font-size: 18px;
}
/* ========== 品牌展示 移动端 ========== */
.brands-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.brand-item {
padding: 15px 10px;
}
.brand-logo-icon {
font-size:16px;
}
.brand-logo-text {
font-size: 13px;
}
/* ========== 资质荣誉 移动端 ========== */
.honors-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.honor-img {
height: 140px;
}
.honor-badge {
width: 50px;
height: 50px;
font-size: 22px;
}
/* ========== 图片画廊 移动端 ========== */
.img-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.img-grid-item img {
height: 130px;
}
.img-grid-item .img-title {
font-size: 11px;
padding: 6px;
}
/* ========== 服务热线模块 移动端 ========== */
.service-bar {
padding: 25px 15px;
}
.service-title {
font-size: 18px;
}
.service-subtitle {
font-size: 12px;
}
.service-hotline {
font-size: 24px;
}
/* ========== 侧边栏电话模块 移动端 ========== */
.contact-box {
padding: 15px;
}
.contact-box .phone-icon {
width: 40px;
height: 40px;
font-size: 18px;
}
.contact-box .phone-num {
font-size: 18px;
}
/* ========== 其他模块间距 移动端 ========== */
section {
padding: 40px 0;
}
section:first-of-type {
padding: 0;
}
.container {
padding: 0 15px;
}
.contact-info-only {
padding: 20px 15px;
}
.product-intro {
padding: 20px 15px;
font-size: 14px;
}
.product-intro .param-table td {
padding: 8px 10px;
font-size: 12px;
}
.product-intro .param-table td:first-child {
width: 90px;
}
.pagination {
gap: 5px;
}
.page-btn {
min-width: 32px;
height: 32px;
font-size: 12px;
padding: 0 6px;
}
/* 产品列表页布局移动端 */
.product-layout {
grid-template-columns: 1fr;
}
.product-sidebar {
display: none;
}
}
/* Logo 基础样式 */
.logo {
  max-width: 100%;
  height: auto;
  display: block;
  /* PC 端默认尺寸，根据实际需要调整 */
  width: 100px;
}

/* 平板及以下自适应缩小 */
@media (max-width: 768px) {
  .logo {
    width:80px;
  }
}

/* 手机端进一步缩小 */
@media (max-width: 480px) {
  .logo {
    width:70px;
  }
}
/* ========== 分页容器 ========== */
.pages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  font-size: 14px;
}

/* ========== 分页按钮通用样式 ========== */
.pages a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  color: #606266;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-sizing: border-box;
  user-select: none;
}

/* ========== 悬停效果 ========== */
.pages a:hover {
  color: #409eff;
  border-color: #c6e2ff;
  background-color: #ecf5ff;
}

/* ========== 当前页高亮 ========== */
.pages a.current {
  color: #fff;
  background-color: #409eff;
  border-color: #409eff;
  cursor: default;
  font-weight: 500;
}

.pages a.current:hover {
  color: #fff;
  background-color: #409eff;
  border-color: #409eff;
}

/* ========== "下一页" / "尾页" 文字按钮 ========== */
.pages a:nth-last-child(2),
.pages a:last-child {
  min-width: auto;
  padding: 0 14px;
}

/* ========== 禁用态（可选，如需可加 .disabled 类） ========== */
.pages a.disabled {
  color: #c0c4cc;
  background-color: #f5f7fa;
  border-color: #e4e7ed;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========== 响应式：小屏幕缩小尺寸 ========== */
@media (max-width: 480px) {
  .pages {
    gap: 4px;
    font-size: 12px;
  }
  .pages a {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
  }
}

/* 知识产权页面 - A4纸张比例 */
.ip-section .img-grid-item img {
height: auto;
aspect-ratio: 210/297;
object-fit: cover;
}
/* 联系我们页面 */
.contact-layout {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
width: 100%;
}
.contact-info-card {
background: var(--white);
border-radius: var(--radius);
padding: 35px;
box-shadow: var(--shadow);
}
.contact-info-card h3 {
font-size: 20px;
color: var(--primary);
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid var(--border);
}
.contact-info-list li {
display: flex;
gap: 15px;
margin-bottom: 25px;
align-items: flex-start;
}
.contact-info-icon {
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
flex-shrink: 0;
}
.contact-info-text h4 {
font-size: 15px;
color: var(--text);
margin-bottom: 5px;
}
.contact-info-text p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}

.map-placeholder 
.map-placeholder p {
font-size: 16px;
margin-bottom: 5px;
}
.map-placeholder 
.qrcode-box {
width: 100px;
height: 100px;
background: white;
border-radius: 8px;
margin: 0 auto 10px;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
}
@media (min-width: 768px) {
  .qrcode-box {
    margin: 0 0 10px auto;
  }
}
.qrcode-pattern {
width: 100%;
height: 100%;
background: 
linear-gradient(90deg, #333 25%, transparent 25%, transparent 75%, #333 75%),
linear-gradient(#333 25%, transparent 25%, transparent 75%, #333 75%);
background-size: 6px 6px;
position: relative;
border-radius: 2px;
}
.qrcode-pattern::before,
.qrcode-pattern::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
border: 4px solid #333;
background: white;
}
.qrcode-pattern::before {
top: 0;
left: 0;
}
.qrcode-pattern::after {
top: 0;
right: 0;
}
.footer-qrcode p {
font-size: 12px;
color: rgba(255, 255, 255, 0.45);
}
.copyright {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding: 22px 0;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 13px;
color: rgba(255, 255, 255, 0.5);
flex-wrap: wrap;
gap: 10px;
}
.copyright-links {
display: flex;
gap: 20px;
}
.copyright a {
color: rgba(255, 255, 255, 0.6);
margin: 0 5px;
}
.copyright a:hover {
color: white;
}
.dropdown-panel{
  pointer-events:none;
}
.dropdown-links, .dropdown-link{
  pointer-events:auto !important;
}