/* 通用section样式 */
.section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #fff;
}



/* 首页视差效果 */
#home {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 600px;
    margin-bottom: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('./images/background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 1;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

#home .content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
    text-align: center;
}

/* 首页欢迎文本样式 */
.welcome-title {
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.welcome-title-en {
    display: block;
    font-family: 'Playfair Display', sans-serif;
    font-size: 0.6em;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.9;
}

.welcome-text {
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1.8em;
    font-weight: 300;
    margin-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.welcome-text-en {
    display: block;
    font-family: 'Playfair Display', sans-serif;
    font-size: 0.6em;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.9;
    line-height: 1.4;
}

.welcome-subtitle {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.9;
}

.welcome-subtext {
    display: block;
    font-size: 0.8em;
    opacity: 0.9;
    margin-top: 5px;
}


.welcome-subtitle-focus {
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1.4em;
    font-weight: 300;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.welcome-subtitle-focus-en {
    display: block;
    font-family: 'Playfair Display', sans-serif;
    font-size: 0.7em;
    opacity: 0.9;
    margin-top: 5px;
}



/* 产品部分样式 */
#products {
    position: relative;
    background-color: #fff;
    z-index: 2;
    overflow: hidden;
}

#products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    z-index: -1;
    transform: translateZ(0);
}

.product-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* 生产设备部分样式 */
#production {
    position: relative;
    background-color: #f8f9fa;
    z-index: 2;
    overflow: hidden;
}

#production::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    z-index: -1;
    transform: translateZ(0);
}

.production-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* 首页生产设备部分样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-more {
    display: inline-flex;
    align-items: center;
    color: rgba(0, 123, 255, 0.8);
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border: 1px solid rgba(0, 123, 255, 0.5);
    border-radius: 30px;
}

.view-more:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(5px);
    border-color: rgba(0, 123, 255, 0.8);
}

.view-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-more:hover i {
    transform: translateX(5px);
}

.view-more-en {
    margin-left: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 0.8em;
    opacity: 0.8;
}

/* 首页设备列表样式调整 */
.equipment-item {
    text-decoration: none;
    color: inherit;
}

#production .equipment-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

#production .equipment-item {
    height: 400px;
    display: flex;
    flex-direction: column;
}

#production .equipment-image {
    flex: 1;
    min-height: 250px;
}

#production .equipment-info {
    padding: 20px;
}

#production .equipment-name {
    font-size: 1.4em;
    margin-bottom: 15px;
}

#production .equipment-specs {
    font-size: 0.9em;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    #production .equipment-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    #production .equipment-list {
        grid-template-columns: 1fr;
    }

    #production .equipment-item {
        height: auto;
    }

    .view-more {
        font-size: 1em;
    }
}

/* 检测设备部分样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}



.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.inspection-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.inspection-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.inspection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inspection-item:hover .inspection-image img {
    transform: scale(1.1);
}

.inspection-info {
    padding: 1.5rem;
    text-align: center;
}

.inspection-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.inspection-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .inspection-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .inspection-item {
        flex: 0 0 100%;
    }
}

.equipment-page .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    justify-content: center;
}

@media (min-width: 1200px) {
    .equipment-grid {
        grid-template-columns: repeat(2, minmax(300px, 450px));
    }
}

.equipment-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
    max-width: 450px;
    width: 100%;
}

.equipment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h3 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.3rem;
}

.equipment-specs {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.equipment-description {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

/* 产品展示部分样式 */
.section-title {
    text-align: center;
    color: #333;
    font-size: 2.5em;
    margin-bottom: 50px;
    font-family: 'Noto Sans SC', sans-serif;
}

.section-title-en {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.5em;
    color: #666;
    margin-top: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}



.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f5f5f5;
}

.product-image img {
    position: absolute;
    top: 0;
    color: whi;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 10px;
}

.product-name {
    color: white;
    font-size: 1.2em;
    margin: 0;
    text-align: center;
}


@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

/* 检查设备部分样式 */
#inspection {
    position: relative;
    background-color: #fff;
    z-index: 2;
    overflow: hidden;
}

#inspection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: -1;
    transform: translateZ(0);
}

.inspection-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}


.certification-highlight {
    background: rgba(0, 123, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cert-icon {
    font-size: 3rem;
    color: #007bff;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.cert-info {
    flex: 1;
}

.cert-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cert-title-en {
    font-size: 1rem;
    color: #666;
    margin-left: 1rem;
    font-weight: normal;
}

.cert-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.cert-org {
    font-size: 1rem;
    color: #666;
}

.company-intro {
    display: grid;
    grid-gap: 2rem;
}

.intro-section {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.intro-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.intro-title-en {
    font-size: 0.9rem;
    color: #666;
    margin-left: 1rem;
    font-weight: normal;
}

.intro-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certification-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .cert-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .company-intro {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .company-intro {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 内容容器通用样式 */
.content-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    z-index: 1000;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}

.company-name {
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar.scrolled .company-name {
    color: #333;
}

.navbar .menu {
    height: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar .menu li {
    margin: 0 15px;
}

.navbar .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .menu li a {
    color: #333;
}

.navbar .menu li a:hover,
.navbar .menu li a.active {
    color: #007bff;
}

.navbar .menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .menu li a:hover::after,
.navbar .menu li a.active::after {
    width: 100%;
}

/* 设备页面导航栏特殊处理 */
.equipment-page .navbar,
body:not(.home) .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.equipment-page .navbar .menu li a,
body:not(.home) .navbar .menu li a {
    color: #333;
}


/* 内容样式 */
.content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

h1, h2, h3 {
    font-weight: 400;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.product-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* 生产设备样式 */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.equipment-image {
    flex: 1;
    min-width: 200px;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-info {
    flex: 1;
    padding: 20px;
}

.equipment-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.equipment-info p {
    color: #666;
    line-height: 1.6;
}

/* 检查设备样式 */
.inspection-slider {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
    overflow: hidden;
    padding: 20px 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    padding-bottom: 10px;
}

.inspection-item {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    text-align: center;
}

.inspection-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.inspection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspection-item h3 {
    color: #333;
    margin: 10px 0;
    font-size: 18px;
}

/* 关于我们样式 */
.about-content {
    max-width: 1200px;
    padding: 20px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#about h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

#about h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .about-content {
        padding: 15px;
        margin: 0 15px;
    }

    .intro-paragraph {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 联系方式板块样式 */
.contact-section {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 20px;
}

.contact-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    margin: 10px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 15px;
}

.contact-item h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.contact-item p {
    margin: 5px 0;
    line-height: 1.6;
}

/* 版权信息栏样式 */
.copyright {
    background-color: #1a252f;
    color: #bdc3c7;
    text-align: center;
    padding: 20px;
}

.copyright p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-item {
        margin: 10px 0;
    }

    .contact-item i {
        font-size: 2em;
    }
}

/* 底部联系方式样式 */
footer {
    width: 100%;
    margin-top: 50px;
}

.contact-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #3498db;
}

.contact-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
}

.contact-item p {
    color: #ecf0f1;
    line-height: 1.6;
    font-size: 16px;
}

/* 版权信息样式 */
.copyright {
    background-color: #1a252f;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.copyright p {
    margin: 5px 0;
    font-size: 14px;
    color: #bdc3c7;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-item i {
        font-size: 2em;
    }

    .contact-item p {
        font-size: 14px;
    }
}

/* 生产设备页面样式 */
.equipment-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-item {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 40px;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-image {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-name {
    color: #333;
    font-size: 1.8em;
    margin: 0 0 20px 0;
    font-family: 'Noto Sans SC', sans-serif;
}

.equipment-name-en {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.6em;
    color: #666;
    margin-top: 5px;
}

.equipment-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    color: #555;
    font-size: 1.1em;
    margin: 0;
}

.spec-item i {
    color: #007bff;
    width: 25px;
    margin-right: 10px;
}

.spec-desc {
    margin-top: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .equipment-item {
        flex-direction: column;
    }

    .equipment-image {
        flex: 0 0 300px;
    }

    .equipment-info {
        padding: 20px;
    }

    .equipment-name {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .equipment-section {
        padding: 60px 0;
    }

    .equipment-list {
        gap: 30px;
        padding: 0 15px;
    }

    .spec-item {
        font-size: 1em;
    }

    .spec-desc {
        font-size: 1em;
    }
}

/* 检测设备页面样式 */
.inspection-section {
    padding: 120px 20px 60px;
    background-color: #f8f9fa;
}

.inspection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.inspection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.inspection-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.inspection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inspection-card:hover .inspection-image img {
    transform: scale(1.05);
}

.inspection-info {
    padding: 20px;
}

.inspection-info h3 {
    font-size: 1.4em;
    color: #2c3e50;
    margin: 0 0 15px;
    font-weight: 500;
}

.inspection-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    text-align: left;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .inspection-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .inspection-image {
        height: 200px;
    }
}

/* 检测设备页面样式 */
.inspection-section .content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.inspection-section .section-title {
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.inspection-section .section-title-en {
    display: block;
    font-size: 0.5em;
    color: #666;
    margin-top: 5px;
    font-family: 'Playfair Display', serif;
}
