/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
a{
    text-decoration: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #0066cc;
    font-size: 24px;
    font-weight: bold;
}

.nav-logo p {
    color: #666;
    font-size: 12px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* 下拉菜单 */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9ff;
    color: #0066cc;
}

/* 汉堡菜单 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -6px);
}

/* 关于我们页面样式 */
.about-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

/* 联系我们页面样式 */
.contact-container {
    
    margin: 20px auto;
    
}

.about-container h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* 标题导航容器 */
.title-nav-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,74,163,1);
}

/* 桌面版样式 */
@media (min-width: 768px) {
    .title-nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .about-container h2 {
        text-align: left;
        margin-right: auto;
    }
}

/* 导航按钮样式 */
.nav-buttons {
    display: flex;
    gap: 25px;
}




.nav-btn {
    padding: 10px 25px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;
}

.nav-btn:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
}

.nav-btn.active {
    background-color: #004080;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* 手机版样式 */
@media (max-width: 767px) {
    .title-nav-container {
        flex-direction: column-reverse;
    }

    .nav-buttons {
        margin-bottom: 15px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }

    .nav-btn {
        margin-bottom: 0;
        font-size: 12px;
        padding: 8px 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .about-container h2 {
        align-self: center;
    }

    .content-section {
        padding: 20px 15px;
    }

    .environment-photos img {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

/* 内容区域样式 */
.content-section {
    display: none;
  
  
    border-radius: 8px;
    margin-bottom: 40px;

}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.blue-line {
    height: 3px;
    width: 80px;
    background-color: #0066cc;
    margin-bottom: 30px;
}

.about-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.cert-logo {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cert-logo i {
    color: #0066cc;
    font-size: 20px;
}

/* 发展历程样式 */
.timeline {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #0066cc;
}

.timeline li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0066cc;
}

.year {
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 5px;
    display: block;
}

/* 组织架构样式 */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.org-level-1, .org-level-2, .org-level-3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.org-box {
    background-color: #f0f7ff;
    border: 1px solid #0066cc;
    border-radius: 6px;
    padding: 15px 20px;
    text-align: center;
    min-width: 120px;
}

.org-level-3 {
    flex-wrap: wrap;
}

/* 企业环境样式 */
.environment-photos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.environment-photos img {
    max-width: 45%;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.environment-photos img:hover {
    transform: scale(1.02);
}

.cert-logo {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cert-logo i {
    color: #0066cc;
    font-size: 20px;
}

.quality-certifications {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.certificate {
    text-align: center;
}

.certificate-icon {
    font-size: 40px;
    color: #0066cc;
    margin-bottom: 10px;
}

.certificate-text {
    font-weight: 500;
    color: #333;
}

/* 主页横幅 - Swiper样式 */
.hero {
    position: relative;
 margin-top: 70px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
  
}
.hero-swiper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}
   

/* 响应式调整 */
@media (max-width: 768px) {
    .about-container {
        margin-top: 80px;
    }

    .quality-certifications {
        flex-direction: column;
        align-items: center;
    }

    .certifications {
        justify-content: flex-start;
    }
}
 
@keyframes circuitMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    width: 100%;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-showcase {
    display: flex;
    gap: 30px;
    align-items: center;
}

.product-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.product-circle:nth-child(2) {
    animation-delay: 1s;
}

.product-circle:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.product-circle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.hero-right {
    flex: 1;
    max-width: 500px;
}

.company-intro h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.company-intro p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature i {
    font-size: 18px;
}

/* Swiper导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Swiper分页器样式 */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.2);
}

/* 面包屑导航 */
.breadcrumb {
    margin-top: 70px;
    background: rgba(0,74,163,1);
    border-bottom: 1px solid #eee;
}
.breadcrumb img{
    width: 100%;
    display: block;
}
.breadcrumb .container{
  padding: 15px 20px;
}

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover:not(.active) {
    color: #eee;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #fff;
    font-size: 12px;
}

/* 产品展示区域 - 左右结构 */
.products-container {
    padding: 40px 0;
    background: #f9f9f9;
}

.products-wrapper {
    display: flex;
    gap: 30px;
}

/* 左侧产品分类（手风琴样式） */
.product-categories-accordion {
    width: 300px;
   background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.product-categories-accordion .section-title {
    font-size: 16px;
    background-color:rgba(0,74,163,1);
    color: white;
    padding: 10px 30px;
    margin: 0;
    border-radius: 10px 10px 0 0;
    text-align: left;
    border-bottom: 1px solid #d9d9d9
}
.product-categories-accordion .section-title::after{
    display: none;
}

.product-categories-accordion > .accordion {
    padding: 0px;
}

.accordion-item {
    border-bottom: 1px solid #d9d9d9
}

.accordion-header {
    width: 100%;
    padding: 12px 30px;
    text-align: left;
    background: #f5f5f5;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.accordion-header.active2{
    background-color:rgba(0,74,163,1);
    color: #fff;
}


.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content ul {
    padding: 0px;
    margin: 0;
    list-style-type: none;
}

.accordion-content li {
    border-top: 1px solid #e1e1e1;
    padding: 8px 30px;
    background-color: #ededed;

    transition: all 0.3s ease;

}

.accordion-content li:hover,
.accordion-content li.active {
    background-color:rgba(0,74,163,1);
   
}

.accordion-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.accordion-content li:hover a,.accordion-content li.active a{
     color: #fff;
}

/* 右侧产品列表 */
.product-list {
    width: 830px;
}

/* 分页组件样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
    gap: 8px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #f5f7fa;
    color: #0066cc;
    border-color: #0066cc;
}

.page-btn.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.page-btn.prev,
.page-btn.next {
    background: white;
    color: #666;
}

.page-btn.prev:hover,
.page-btn.next:hover {
    background: #0066cc;
    color: white;
}

.page-dots {
    color: #666;
    font-size: 16px;
    margin: 0 8px;
}



.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.products-container .product-card {
    flex-direction: row;
}



.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 160px;
    display: flex;
        flex-direction: column;
    text-decoration: none;
    color: inherit;
 
}

.products-container .product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    min-width: 120px;
}


.product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.product-card p {
    text-align: left;
    color: #666;
    font-size: 12px;
    margin: 0 0 10px 20px;
    flex-grow: 1;
}

.products-container .product-image{
    flex: 1;
}
.products-container  .product-content {
    flex: 1;
}
.products-container .product-card h3{
     padding: 15px 0 15px 20px;
     text-align: left;
}
.products-container  .product-card:hover{
    background: #004499;
}
.products-container  .product-card:hover h3,.products-container  .product-card:hover p{
    color:#fff
}



/* 产品搜索 */
.product-search {
    padding: 40px 0;
    background: #f9f9f9;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 20px auto 0;
}

.search-box input {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.search-box button {
    padding: 15px 30px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #0052a3;
}

/* 产品分类 */
.product-categories {
    padding: 20px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.category-item{
    text-align: center;
}

.category-item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
}

.category-item img:hover {
   
        transform: translateZ(30px) rotateY(180deg) scale(1.0);
        -webkit-transform: translateZ(30px) rotateY(180deg) scale(1.0);
        -ms-transform: translateZ(30px) rotateY(180deg) scale(1.0);
        -moz-transform: translateZ(30px) rotateY(180deg) scale(1.0);
    }

.category-item h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

/* 推荐产品 */
.featured-products {
    padding: 30px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0066cc;
}

.product-swiper {
    padding-bottom: 50px;
}
.product-swiper .swiper-slide{
    padding-bottom: 3px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}



.product-image {
    height: 170px;
}

/* 产品详情页面样式 */
.product-detail {
    flex: 1;
    background: white;
    padding: 10px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* 产品图片展示 */
.product-image-gallery {
    margin-bottom: 40px;
}

.main-image {
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.main-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 产品规格参数 */
.product-specifications {
    margin-bottom: 40px;
}

.product-specifications h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.product-specifications h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: #0066cc;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #666;
    width: 30%;
}

.specs-table td {
    color: #333;
}

/* 产品操作按钮 */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-sample,
.btn-inquiry,
.btn-datasheet {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sample {
    background: #0066cc;
    color: white;
}

.btn-sample:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-inquiry {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

.btn-inquiry:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-datasheet {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

.btn-datasheet:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* 产品详细描述 */
.product-description {
    margin-bottom: 40px;
}

.product-description h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.product-description h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: #0066cc;
}

.product-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.product-description img{
    max-width: 100%;
    height: auto !important;
}

/* 产品应用场景 */
.product-applications {
    margin-bottom: 40px;
}

.product-applications h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.product-applications h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: #0066cc;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.application-item {
    text-align: center;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.application-item i {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 15px;
}

.application-item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.application-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 相关产品推荐 */
.related-products {
    margin-top: 50px;
}

.related-products h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.related-products h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: #0066cc;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-products .product-card {
    height: auto;
    display: flex;
    flex-direction: column;
}


.related-products .product-image{
    flex: none;
}
.related-products .product-content{
    flex: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .products-wrapper {
        flex-direction: column;
    }
    
    .product-categories-accordion {
        width: 100%;
    }
    
    .product-detail {
        padding:10px 20px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-sample,
    .btn-inquiry,
    .btn-datasheet {
        width: 100%;
    }
    
    .specs-table {
        font-size: 14px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 10px;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
   

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h3 {
    padding: 10px;
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* 产品轮播分页器样式 */
.product-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #ddd !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.product-pagination .swiper-pagination-bullet-active {
    background: #0066cc !important;
    transform: scale(1.2);
}

/* 关于我们 */
.about-us {
    padding: 50px 0;
    background: url(../img/22484d79-cc16-446e-a9a8-3a20b247ee29.jpg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.en-title {
    font-size: 18px;
    color: #0066cc;
    margin-left: 15px;
    font-weight: normal;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066cc;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.explore-btn:hover {
    background: #004499;
    transform: translateX(5px);
}

.company-building img {
    width: 100%;
}

/* 产品搜索 */
.product-search {
    padding: 60px 0;
    background: url(../img/91e54c5f-90b1-4638-ab7f-c3efc4524f83.jpg);
    text-align: center;
    color: white;
}

.product-search h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    background: #e8e8e8;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #efefef;
}

.search-box button {
    padding: 15px 25px;
    background: url(../img/search-icon.png) no-repeat center center;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}


/* 页脚 */
.footer {
    background: #f9f9f9;
    color: #333333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-info{
   width: 300px;
   max-width: 100%;
}

.footer-section h3 {
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0066cc;
}

.contact-details p {
    margin-bottom: 10px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #0066cc;
    width: 20px;
}

.qr-code {
    margin-top: 20px;
}

.qr-code img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid #e6e6e6;
    padding-top: 20px;
    text-align: center;
    color: #999999;
    font-size: 14px;
}

/* 侧边联系栏 */
.sidebar-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.contact-tab {
    background: #0066cc;
    color: white;
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 10px 0 0 10px;
    font-weight: 600;
    cursor: pointer;
}

.contact-icons {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px 0 0 10px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
    position: relative;
}

.contact-icon span {
    position: absolute;
    right: 50px;
    background: #0066cc;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: #0066cc;
    color: white;
    width: 50px;
}

.contact-icon:hover span {
    opacity: 1;
    right: 60px;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #004499;
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .related-products-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0px;
        gap: 0px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8f9ff;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0px;
        padding: 0px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu a:hover {
        background: #e3f2fd;
    }
    
    
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .product-showcase {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-circle {
        width: 100px;
        height: 100px;
        font-size: 30px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .product-slider {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Mobile: hide footer lists */
    .footer-section {
        display: none;
    }
.contact-info{
    display: block;
}
    
    .sidebar-contact {
        display: none;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    /* 手机版产品分类样式 */
    .products-wrapper {
        flex-direction: column;
    }
    
    .product-categories-accordion {
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }
    
    .product-categories-accordion > .accordion {
        display: none;
        padding: 0;
        background-color: #f5f7fa;
        border-radius: 0 0 15px 15px;
    }
    
    .product-categories-accordion > .accordion.active {
        display: block;
    }
    
    .product-categories-accordion .section-title {
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }
    
    .product-categories-accordion .section-title:hover {
        background-color: #0052a3;
    }
    
    .accordion-item {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .product-categories-accordion > .accordion > .accordion-item:last-child {
        border-bottom: none;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-content ul {
        padding: 10px 0;
    }
    
    /* 调整产品列表在手机版的样式 */
    .product-list {
        margin-top: 0;
        width: 100%;
    }
    
    /* 产品卡片在移动设备上的响应式设计 */
    .product-card {
        height: auto;
        min-height: 140px;
    }
    
    .product-image {
        min-width: 100px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
        padding: 5px !important;
    }
    
    .product-card p {
        font-size: 13px;
         margin:  5px !important;
    }
    
    .product-detail-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* 调整产品网格在移动设备上的样式 */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .company-intro h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-left h2 {
        font-size: 24px;
    }
} 

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-title {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: #333;
}

.news-date {
    font-size: 14px;
    color: #666;
}

.news-summary {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

.news-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    background: #0066cc;
    color: white;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.news-link:hover {
    background: #004499;
}

/* 新闻列表页专用样式 */
.news-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.news-container h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* 新闻网格布局 */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* 新闻项样式 - 左右结构布局 */
.news-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    height: 200px;
}

.news-item .news-image {
    width: 30%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-item .news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item .news-content h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-item .news-content .news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0;
}

.news-item .news-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-item .news-content .read-more {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-item .news-content .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.news-item .news-content .read-more:hover {
    color: #004080;
}

.news-item .news-content .read-more:hover i {
    transform: translateX(3px);
}

/* 激活状态的新闻内容区域 */
#company-news.active,
#industry-news.active {
    animation: fadeIn 0.5s ease;
}

/* 新闻列表页响应式设计 */
@media (max-width: 767px) {
    .news-container {
        margin: 30px auto 30px;
        padding: 0 15px;
    }
    
    .news-container h2 {
        font-size: 24px;
        text-align: center;
        align-self: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-item {
        flex-direction: column;
        height: auto;
    }
    
    .news-item .news-image {
        width: 100%;
        height: 180px;
    }
    
    .news-item .news-content {
        padding: 15px;
    }
    
    .news-item .news-content h3 {
        font-size: 16px;
    }
    
    .title-nav-container {
        flex-direction: column-reverse;
        margin-bottom: 0;
    }
    
    .nav-buttons {
        margin-bottom: 15px;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .news-item {
        height: 240px;
    }
    
    .news-item .news-image {
        width: 45%;
    }
}

/* 新闻详情页面样式 */
.news-detail-container {
    max-width: 1200px;
    margin: 30px auto 30px;
    padding: 0 20px;
}

.news-detail-wrapper {
    display: flex;
    gap: 40px;
}

/* 左侧新闻分类 */
.news-categories {
    width: 260px;
    flex-shrink: 0;
}

.news-categories .section-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.news-categories .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0066cc;
}

.news-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-categories .category-link {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-categories .category-link:hover {
    background-color: #e0e0e0;
    transform: translateX(5px);
}

.news-categories .category-link.active {
    background-color: #0066cc;
    color: white;
}

/* 右侧新闻详情内容 */
.news-detail {
    flex-grow: 1;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 新闻标题 */
.news-detail .news-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

/* 新闻元信息 */
.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

/* 新闻图片 */
.news-image {
    margin-bottom: 30px;
    text-align: center;
}

.news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* 新闻正文内容 */
.news-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.news-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* 分享按钮 */
.news-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.news-share span {
    color: #333;
    font-weight: 500;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-icon:hover {
    background-color: #0066cc;
    color: white;
    transform: translateY(-3px);
}

/* 上一篇/下一篇导航 */
.news-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.prev-news, .next-news {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
}

.prev-news {
    justify-content: flex-start;
    gap: 10px;
}

.next-news {
    justify-content: flex-end;
    gap: 10px;
}

.prev-news:hover, .next-news:hover {
    background-color: #0066cc;
    color: white;
    transform: translateY(-3px);
}

/* 相关新闻推荐 */
.related-news {
    margin-top: 40px;
}

.related-news h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.related-news h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0066cc;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    height: 160px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 15px;
}

.news-card-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-date {
    font-size: 12px;
    color: #666;
}

/* 新闻详情页面响应式设计 */
@media (max-width: 767px) {
    .news-detail-container {
        margin: 30px auto 50px;
        padding: 0 15px;
    }
    
    .news-detail-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-categories {
        width: 100%;
    }
    
    .news-detail {
        padding: 20px;
    }
    
    .news-detail .news-title {
        font-size: 22px;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .prev-news, .next-news {
        justify-content: center;
        text-align: center;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
    }

	.editorc img {max-width: 100% !important; width: auto !important; height: auto !important;}
}

@media (min-width: 768px) and (max-width: 1024px) {
    .news-detail-wrapper {
        gap: 25px;
    }
    
    .news-categories {
        width: 220px;
    }
    
    .news-detail {
        padding: 30px;
    }
    
    .news-detail .news-title {
        font-size: 24px;
    }
}

/* 人才招聘页面样式 */
.careers-container {
    margin: 20px auto;
    padding: 0 20px;
}

.page-title {
    color: #333;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0066cc;
}

.careers-content {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.careers-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.careers-table {
    width: 100%;
    border-collapse: collapse;
}

.careers-table thead {
    background-color: #0066cc;
    color: white;
}

.careers-table th,
.careers-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.careers-table th {
    font-weight: 600;
}

.careers-table tbody tr {
    transition: background-color 0.3s ease;
}

.careers-table tbody tr:hover {
    background-color: #f9f9f9;
}

.view-details {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-details:hover {
    color: #004080;
}

/* 人才招聘页面响应式设计 */
@media (max-width: 767px) {
    .careers-container {
        margin: 60px auto 30px;
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .careers-content {
        padding: 20px;
    }
    
    .careers-table th,
    .careers-table td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .careers-container {
        margin: 70px auto 40px;
    }
    
    .careers-content {
        padding: 30px;
    }
}

/* 招聘详情页面样式 */
.career-detail-container {
   
    margin: 20px auto;
    padding: 0 20px;
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.career-title {
    color: #333;
    font-size: 28px;
    margin: 0;
}

.career-salary {
    color: #0066cc;
    font-size: 20px;
    font-weight: 600;
    margin-right: 20px;
}

.back-to-list {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-to-list:hover {
    background-color: #004080;
}

.career-detail-content {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.career-basic-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.info-item {
    display: flex;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.info-label {
    color: #666;
    font-weight: 500;
    margin-right: 10px;
    min-width: 80px;
}

.info-value {
    color: #333;
    font-weight: 600;
}

.career-requirements {
    margin-top: 30px;
}

.career-requirements ol {
    list-style-position: inside;
    padding-left: 0;
}

.career-requirements li {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.8;
    padding-left: 10px;
}

/* 招聘详情页面响应式设计 */
@media (max-width: 767px) {
    .career-detail-container {
        margin: 10px auto;
        padding: 0 15px;
    }
    
    .career-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .career-title {
        font-size: 24px;
    }
    
    .career-salary {
        margin-right: 0;
    }
    
    .back-to-list {
        width: 100%;
        text-align: center;
    }
    
    .career-detail-content {
        padding: 20px;
    }
    
    .career-basic-info {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .career-basic-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 联系我们页面样式 */
.contact-container {
   
    margin: 20px auto;
    
}

.page-title {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0066cc;
}

.contact-content {
    display: grid;
    grid-template-columns:1fr;
    gap: 30px;
}

.company-info {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.company-info h2 {
    color: #0066cc;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.company-info p {
    color: #333;
    margin-bottom: 12px;
    line-height: 1.7;
}

.company-info strong {
    color: #666;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.map {
    width: 100%;
    height: 100%;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map:hover img {
    transform: scale(1.05);
}

.email-info {
    grid-column: 1 / -1;
    background-color: #f8f9ff;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
}

.email-info p {
    color: #333;
    margin: 8px 0;
    display: inline-block;
    margin: 0 20px;
}

/* 留言表单样式 */
.message-form {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   
}

.message-form h2 {
    color: #0066cc;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.message-form p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

/* 左右结构布局样式 */
.company-contact-wrapper {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.company-info-left {
    flex: 1;
    background-color: white;
    padding: 30px;
}

.map-container-right {
    flex: 1;
    height: 300px;
}

.company-info-left h2 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.company-info-left p {
    color: #333;
    margin-bottom: 12px;
    line-height: 1.7;
}
.company-info-left p a {
    color: #333;
    margin-bottom: 12px;
    line-height: 1.7;
}
.company-info-left strong {
    color: #666;
}





/* 联系我们页面响应式设计 */
@media (max-width: 767px) {
    .contact-container {
        margin: 30px auto 30px;
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .company-info h2 {
        font-size: 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .email-info p {
        display: block;
        margin: 8px 0;
    }
    
    /* 移动设备上的左右结构布局 */
    .company-contact-wrapper {
        flex-direction: column;
    }
    
    .map-container-right {
        height: 250px;
    }
    
    .company-info-left {
        padding: 20px;
    }
    
    .company-info-left h2 {
        font-size: 20px;
    }
    
    /* 移动设备上的留言表单样式 */
    .message-form {
        padding: 20px;
    }
    
    .message-form h2 {
        font-size: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 280px;
    }
    
    /* 平板设备上的左右结构布局 */
    .map-container-right {
        height: 280px;
    }
    
    /* 平板设备上的留言表单样式 */
    .message-form {
        padding: 25px;
    }
    
    .form-row {
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 11px 14px;
    }
    
    .form-group textarea {
        min-height: 140px;
    }
}

/* 产品详情页面 - 单图布局 */
.product-detail-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.product-image-single {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.product-image-single img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-brief-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-brief-info h3 {
    color: #0066cc;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.product-brief-info p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-brief-info .product-specs {
    margin-top: 20px;
}

.product-brief-info .spec-item {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.product-brief-info .spec-label {
    color: #666;
    font-weight: 500;
    width: 100px;
    flex-shrink: 0;
}

.product-brief-info .spec-value {
    color: #333;
    flex-grow: 1;
}

/* 产品详情页面响应式设计 */
@media (max-width: 767px) {
    .product-detail-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-image-single {
        flex: 1;
        padding: 15px;
    }
    
    .product-brief-info h3 {
        font-size: 18px;
    }
    
    .product-brief-info .spec-item {
        flex-direction: column;
    }
    
    .product-brief-info .spec-label {
        width: auto;
        margin-bottom: 5px;
    }
}


.nodata {padding: 100px 0; color:#999; font-size:16px; text-align:center;}
.nodata p {margin-top: 10px; line-height: 1.8;}

.editorc {font-size: 16px; line-height: 1.9;}
.editorc::after {display:block;width:100%;clear:both;content:'';}
.editorc p {margin-bottom:20px;}
.editorc p:last-child {margin-bottom:0;}
.editorc a {text-decoration:underline;}
.editorc hr {padding-bottom:4px;border:0;border-top:1px solid #ccc;}
.editorc h1,.editorc h2,.editorc h3,.editorc h4,.editorc h5,.editorc h6 {padding:9px 0;font-weight:bold;line-height:1.4;}
.editorc ul {margin-bottom:20px;padding-left:1.4em;}
.editorc ul:last-child {margin-bottom:0;}
.editorc ul li {list-style-type:disc;}
.editorc ol {margin-bottom:20px;padding-left:1.5em;}
.editorc ol li {list-style-type:decimal;}
.editorc ol:last-child {margin-bottom:0;}
.editorc table.border {margin-bottom:20px;border:none;border-top:1px solid #ddd;border-left:1px solid #ddd;}
.editorc table.border td,.editorc table.border th {padding:6px 5px;border:none;border-right:1px solid #ddd;border-bottom:1px solid #ddd;}
.editorc table.border td table {margin-bottom:0;}
.editorc table.border td p {margin:0;padding:0;}
.editorc table.border th p {margin:0;padding:0;}
/*
.editorc h1 {font-size: 32px;}
.editorc h2 {font-size: 24px;}
.editorc h3 {font-size: 18px;}
.editorc h4 {font-size: 16px;}
.editorc h5 {font-size: 13px;}
.editorc h6 {font-size: 12px;}
*/
.editorc-tbe table {margin-bottom:20px;border:none;border-top:1px solid #ddd;border-left:1px solid #ddd;}
.editorc-tbe td, .editorc-tbe th {padding:6px 5px;border:none;border-right:1px solid #ddd;border-bottom:1px solid #ddd;}
.editorc_tbe td table {margin-bottom:0;}
.editorc-tbe td p,.editorc-tbe th p {margin:0;padding:0;}
.editorc-tbe table.no-border {border:none;}
.editorc-tbe table.no-border table {border:none;}

/* 新闻展示两栏布局 */
.news-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.news-column-title {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 新闻卡片样式 */
.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card-content {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-content h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-left: 20px;
    position: relative;
}

.news-card-content h3::before {
    content: "•";
    position: absolute;
    left: 5px;
  
    
}

.news-card-date {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    margin-left: 15px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-columns {
        grid-template-columns: 1fr;
    }

    .news-card-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-card-date {
        margin-left: 20px;
        margin-top: 5px;
    }
}

.editorc-tbe table.no-border td {border:none;padding:0;}
.editorc-tbe table.no-border th {border:none;padding:0;}