/* 分页通用 */
.pages {
    margin: 40px auto 10px;
    width: auto;
    height: 34px;
    text-align: center;
}

.pages ul li {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.pages a,
.pages span {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 4px 12px;
    margin: 0 3px;
    line-height: 24px;
    background: #fff;
    color: #666;
    border-radius: 4px;
}

.pages .cur span,
.pages a:hover {
    color: #4770FF;
    border: 1px solid #4770FF;
}

.pages .dis span {
    color: #c9c6c6;
    border: 1px solid #eee;
}

/* 页面主容器 */
.product-container {
    padding: 80px 0 20px;
}

/* 分类导航容器 */
.category-nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 90;
}

/* 横向滚动容器 */
.category-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px;
    scrollbar-width: none;
    /* Firefox */
}

.category-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

/* 分类列表 */
.category-list {
    display: inline-flex;
    padding: 12px 0;
}

/* 分类项目 */
.category-item {
    display: inline-block;
    padding: 6px 15px;
    margin-right: 8px;
    font-size: 14px;
    color: #555;
    background-color: #f5f7fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-item:last-child {
    margin-right: 5px;
}

.category-item.active {
    background-color: #1e88e5;
    color: #fff;
    font-weight: 500;
}

/* 产品列表容器 */
.product-list-container {
    padding: 15px 10px;
}

/* 标题区域 */
.section-header {
    margin-bottom: 15px;
    padding: 0 5px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-left: 12px;
    margin-bottom: 5px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 70%;
    width: 4px;
    background-color: #1e88e5;
    border-radius: 2px;
}

.section-desc {
    font-size: 13px;
    color: #777;
}

/* 产品列表 */
.product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

/* 产品卡片 */
.product-card {
    width: calc(50% - 10px);
    margin: 0 5px 15px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

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


.product-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
}

.product-content {
    padding: 12px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    height: 54px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-more {
    display: flex;
    justify-content: flex-end;
    font-size: 12px;
    color: #1e88e5;
}

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


/* 响应式调整 */
@media (min-width: 600px) {
    .product-card {
        width: calc(33.33% - 10px);
    }

    .product-image {
        height: 160px;
    }

    .product-title {
        font-size: 16px;
    }
}

/* 小屏幕设备布局调整 */
@media (max-width: 401px) {
    .product-card {
        width: calc(100% - 10px);
    }

    .product-image {
        height: 180px;
    }

    .product-title {
        height: auto;
        -webkit-line-clamp: 2;
    }

    .product-description {
        height: auto;
        -webkit-line-clamp: 4;
    }
}

/* 产品详情容器 */
.product-detail-container {
    padding: 86px 15px 10px;
}

/* 面包屑导航 */
.breadcrumb-nav {
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: #1e88e5;
    text-decoration: none;
}

.breadcrumb-nav .separator {
    margin: 0 5px;
    color: #999;
}

.breadcrumb-nav .current {
    color: #333;
}

/* 产品图片区域 */
.product-image-container {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.product-main-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.product-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* 产品信息区域 */
.product-info-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 15px 5px 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.products-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.products-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
}

.products-meta-item {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.products-meta-item i {
    margin-right: 5px;
    color: #1e88e5;
}

.products-description {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

/* 产品特点区域 */
.product-features {
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    padding-left: 12px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 16px;
    width: 4px;
    background-color: #1e88e5;
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.feature-item::before {
    content: '\2022';
    color: #1e88e5;
    font-size: 18px;
    position: absolute;
    left: 10px;
    top: -1px;
}

/* 产品详细介绍区域 */
.product-detail-content {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.product-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

.product-detail-content p {
    margin-bottom: 15px;
}



/* 响应式调整 */
@media (min-width: 600px) {
    .product-main-image {
        height: 350px;
    }

    .product-title {
        font-size: 22px;
    }
}

.casea-container {
    padding: 0px 10px;
}

/* 案例列表样式 */
.case-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.case-item {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 响应式布局 */
@media (min-width: 400px) and (max-width: 749px) {
    .case-item {
        width: calc(50% - 8px);
    }
}

@media (min-width: 750px) {
    .case-item {
        width: calc(33.333% - 10px);
    }
}

.case-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.case-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.case-content {
    padding: 15px;
}

.case-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-location {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #888;
}

.case-location i {
    margin-right: 5px;
    color: #1e88e5;
}

.contact-container {
    padding: 86px 15px 20px;
}

.contact-header {
    margin-bottom: 20px;
}

.contact-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.contact-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.contact-info-section {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.contact-map {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #1e88e5;
    font-size: 18px;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.contact-form-section {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #1e88e5;
    outline: none;
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-submit {
    width: 100%;
    padding: 12px 20px;
    background-color: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #1976d2;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 12px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 16px;
    width: 4px;
    background-color: #1e88e5;
    border-radius: 2px;
}

.cn1 ul {
    margin-top: 10px;
}

.cn1 ul li {
    float: left;
    width: 32%;
    margin-right: 2%;
    color: #666;
    margin-bottom: 10px;
}

.cn1 ul li:nth-child(3n) {
    margin-right: 0%;
}

.cn1 ul li a {
    font-size: 14px;
    background: #f0eff4;
    color: #666;
    width: 100%;
    line-height: 36px;
    display: block;
    text-align: center
}

.cn1 ul .active a {
    background: #0b8ec2;
    color: #fff
}