/* Tab容器样式 */
.mediaduction{
  width: 100%;
  margin-top: 80px;
}
.media-banner{
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.media-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tab-container {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2% 20px;
}

/* Tab头部样式 */
.tab-header {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 30px;
  justify-content: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.tab-item {
    padding: 15px 30px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.tab-item:hover {
    color: #333;
}

.tab-item.active {
    color: #1a73e8;
    font-weight: 500;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a73e8;
}

/* 内容区域样式 */
.tab-content {
    width: 100%;
}

.content-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-item.active {
    display: block;
}

.content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
}

.text-wrapper {
    width: 100%;
    margin-top: 20px;
}

/* 媒体项通用样式 */
.media-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
}

/* 视频容器样式 */
.video-container {
    position: relative;
    height: 200px;
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 图片容器样式 */
.media-item.image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
}

.media-item.image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-item.image:hover img {
    transform: scale(1.05);
}

.media-item.image .media-info {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    min-height: 20%;
}

.media-item.image .media-info h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: nowrap; /* 确保文本不换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 显示省略符号来代表被修剪的文本 */
}

.media-item.image .media-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 文本容器样式 */
.media-item.text {
    width: 100%;
}

.text-content {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content:hover {
    transform: translateY(-5px);
}

.text-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.text-content:hover .text-image img {
    transform: scale(1.05);
}

.text-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-info h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #333;
    line-height: 1.4;
}

.text-info p {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-date {
    font-size: 14px;
    color: #999;
    margin-top: auto;
}

/* 媒体信息样式 */
.media-info {
    padding: 20px;
}

.media-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.media-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
  .mediaduction{
    margin-top: 0px;
  }
    .tab-header {
        display: flex;
        flex-direction: row;
        border-bottom: none;
        margin-bottom: 20px;
        background: #f5f5f5;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .tab-item {
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 6px;
        margin: 0 5px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .tab-item.active {
        background: #1a73e8;
        color: #fff;
        box-shadow: 0 2px 4px rgba(26, 115, 232, 0.3);
    }
    
    .tab-item.active::after {
        display: none;
    }
    
    .tab-item:first-child {
        margin-left: 0;
    }
    
    .tab-item:last-child {
        margin-right: 0;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .text-content {
        flex-direction: column;
    }
    
    .text-image {
        width: 100%;
        height: 200px;
    }
    
    .text-info {
        padding: 20px;
    }
    
    .text-info h3 {
        font-size: 20px;
    }
    
    .text-info p {
        font-size: 14px;
    }
    
    .media-item.image .media-info {
        padding: 10px 12px;
    }
    
    .media-item.image .media-info h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .media-item.image .media-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tab-header {
        padding: 8px;
    }
    
    .tab-item {
        padding: 10px 12px;
        font-size: 14px;
        margin: 0 3px;
    }
}

/* 新闻详情页样式 */
.newsduction {
    width: 100%;
    margin-top: 80px;
    background: #fff;
}

.news-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.news-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.news-path {
    margin-bottom: 30px;
    padding: 0 0 15px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #666;
    text-align: right;
}

.news-path a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-path a:hover {
    color: #1a73e8;
}

.news-path a:last-child {
    color: #333;
    pointer-events: none;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.news-header h1 {
    font-size: 32px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-meta {
    color: #999;
    font-size: 14px;
}

.news-content {
    color: #333;
    line-height: 1.8;
}

.news-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-content img:hover {
    transform: scale(1.02);
}

.news-content p {
    margin-bottom: 24px;
    font-size: 16px;
    text-align: justify;
    letter-spacing: 0.5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .newsduction {
        margin-top: 60px;
    }

    .news-container {
        padding: 20px 15px;
    }

    .news-path {
        margin-bottom: 20px;
        padding: 12px 0;
        font-size: 14px;
    }

    .news-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .news-header h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .news-content img {
        margin: 20px auto;
        border-radius: 3px;
    }

    .news-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .newsduction {
        margin-top: 0px;
    }

    .news-container {
        padding: 15px 10px;
    }

    .news-path {
        margin-bottom: 15px;
        padding: 10px 0;
        font-size: 13px;
    }

    .news-header h1 {
        font-size: 20px;
    }

    .news-content img {
        margin: 15px auto;
        border-radius: 2px;
    }

    .news-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 产品展示页样式 */
.production {
    width: 100%;
    margin-top: 80px;
    background: #f6f6f6;
    padding-bottom: 40px;
}

.pro-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.pro-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-header {
    margin: 30px auto;
    background: white;
    display: flex;
    padding: 0 5%;
    height: 60px;
    line-height: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    flex: 1;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    padding: 0 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e60012;
    transition: width 0.3s ease;
}

.nav-menu a.active {
    color: #e60012;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a span {
    color: #999;
    margin-left: 5px;
}

.nav-menu a:hover {
    background: #f5f5f5;
}

.pro-bodyItem {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: relative;
    scroll-margin-top: 80px;
}

.pro-bodyItem.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pro-total {
    margin: 0 5% 30px;
    position: relative;
    padding-left: 15px;
    font-size: 20px;
    font-weight: bold;
}

.pro-total::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #e60012;
}

.pro-container {
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: opacity 0.3s ease;
}

.product-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-imageZb,
.product-imageZx {
    width: 100%;
    padding-top: 75%; /* 4:3 比例 */
    position: relative;
    overflow: hidden;
}

.product-imageZb img,
.product-imageZx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-imageZb img,
.product-item:hover .product-imageZx img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.4;
}

.product-info h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-desc {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.desc-item {
    display: flex;
    margin-bottom: 10px;
    line-height: 1.6;
}

.desc-item:last-child {
    margin-bottom: 0;
}

.desc-item .label {
    color: #999;
    width: 80px;
    flex-shrink: 0;
}

.desc-item .value {
    color: #333;
    flex: 1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .pro-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .pro-header {
        margin: 20px auto;
        height: auto;
        padding: 15px 5%;
        line-height: 1.4;
    }

    .company-name {
        font-size: 20px;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 8px 12px;
    }

    .pro-total {
        font-size: 15px;
        margin: 0 5% 20px;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h3 {
        font-size: 15px;
    }

    .product-info h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .desc-item {
        font-size: 15px;
    }

    .desc-item .label {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .production {
        margin-top: 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0%! important;
    }

    .pro-container {
        width: 92%;
    }

    .product-imageZb,
    .product-imageZx {
        padding-top: 66.67%; /* 3:2 比例，更适合手机显示 */
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-menu a {
        padding: 6px 10px;
        font-size: 15px;
    }

    .product-info h3 {
        font-size: 15px;
    }

    .product-desc {
        padding-top: 12px;
    }

    .desc-item {
        margin-bottom: 8px;
    }
}

html {
    scroll-behavior: smooth;
}

/* 导航链接样式 */
.category-link {
    position: relative;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #e60012;
}

.hover .category-link {
    color: #e60012;
}

/* 设备与产能页面样式 */
.equipmentduction, .networkduction {
    width: 100%;
    margin-top: 80px;
    background: #f6f6f6;
    padding-bottom: 40px;
}

.equipment-banner, .network-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.equipment-banner img, .network-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    position: relative;
    overflow: hidden;
}

.equipment-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.equipment-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.equipment-specs {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.spec-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: #999;
    width: 100px;
    flex-shrink: 0;
}

.spec-value {
    color: #333;
    flex: 1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .equipmentduction, .networkduction {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .equipmentduction, .networkduction {
        margin-top: 0;
    }
    .equipment-info {
        padding: 15px! important;
    }

    .equipment-info h3 {
        font-size: 18px;
    }

    .equipment-info p {
        font-size: 15px;
    }

    .spec-item {
        font-size: 15px;
    }

    .spec-label {
        width: 80px;
    }
}

@media (max-width: 480px) {
  
    .equipment-info h3 {
        font-size: 15px;
    }

    .equipment-info p {
        font-size: 15px;
    }

    .spec-item {
        font-size: 15px;
    }

    .spec-label {
        width: 70px;
    }
}

/* 互联网+服务卡片样式 */
.service-section {
    margin: 40px 0;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e60012;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e60012;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-info {
    padding: 20px;
    text-align: center;
}

.card-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-section {
        margin: 30px 0;
        padding: 15px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-info {
        padding: 15px;
    }

    .card-info h4 {
        font-size: 15px;
    }

    .card-info p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 18px;
    }

    .card-info h4 {
        font-size: 15px;
    }
}

/* 数字化运营样式 */
.download-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: #e60012;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background-color: #c5000f;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(230, 0, 18, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .download-link {
        padding: 6px 15px;
        font-size: 15px;
    }
}

/* 合作客户页面样式 */
.partnerduction {
    width: 100%;
    margin-top: 80px;
    background: #f6f6f6;
    padding-bottom: 40px;
}

.partner-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.partner-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.partner-section {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e60012;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e60012;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.partner-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    height: auto;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-logo {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 10px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.partner-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.partner-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partnerduction {
        margin-top: 60px;
    }

    .partner-container {
        padding: 20px 15px;
    }

    .partner-section {
        padding: 20px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-card {
        padding: 15px;
    }
    
    .partner-logo {
        width: 180px;
        height: 180px;
    }
    
    .partner-info h3 {
        font-size: 15px;
    }
    
    .partner-info p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .partnerduction {
        margin-top: 0;
    }
    .partner-container {
        padding: 15px 10px;
    }

    .partner-section {
        padding: 15px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-card {
        padding: 12px;
    }
    
    .partner-logo {
        width: 150px;
        height: 150px;
    }
    
    .partner-info h3 {
        font-size: 15px;
    }
    
    .partner-info p {
        font-size: 15px;
    }
}

/* 软件展示样式 */
.software-section {
    margin: 40px 0;
}

.software-section .section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e60012;
}

.software-item {
    display: flex;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.software-image {
    flex: 1;
    min-width: 40%;
    position: relative;
    overflow: hidden;
    max-height: 400px;
    padding: 10px;
}

.software-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.software-image:hover img {
    transform: scale(1.05);
}

.sjcimage {
    text-align: center;
}

.software-image img{
    width: auto;
}

.software-info {
    flex: 1;
    padding: 30px;
}

.software-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.software-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e60012;
}

.software-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.download-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e60012;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.download-link:hover {
    background-color: #c5000f;
}

@media (max-width: 768px) {
    .software-item {
        flex-direction: column;
    }

    .software-image {
        min-width: 100%;
        height: 200px;
    }

    .software-info {
        padding: 20px;
    }

    .software-info h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .software-info p {
        font-size: 15px;
    }
}

/* 招贤纳士页面样式 */
.personduction {
    width: 100%;
    margin-top: 80px;
    background: #f6f6f6;
    padding-bottom: 40px;
}

.person-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.person-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 页面标题样式 */
.person-title {
    padding: 10px 0 45px 0;
    text-align: center;
}

.person-title h2 {
    display: inline-block;
    font-size: 48px;
    line-height: 48px;
    font-weight: bold;
    background-image: -webkit-gradient(linear, left top, right top, from(#32beff), to(#005aab));
    background-image: -webkit-linear-gradient(left, #32beff 0%, #005aab 100%);
    background-image: -moz-linear-gradient(left, #32beff 0%, #005aab 100%);
    background-image: linear-gradient(to right, #32beff 0%, #005aab 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.person-container .line{
    height: 3px;
    width: 100%;
    display: block;
    background-image: -webkit-gradient(linear, left top, right top, from(#32beff), to(#005aab));
    background-image: -webkit-linear-gradient(left, #32beff 0%, #005aab 100%);
    background-image: -moz-linear-gradient(left, #32beff 0%, #005aab 100%);
    background-image: linear-gradient(to right, #32beff 0%, #005aab 100%);
}

.person-title p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .person-title {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .person-title h2 {
        font-size: 28px;
    }

    .person-title p {
        font-size: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .person-title {
        margin-bottom: 25px;
        padding-bottom: 10px;
    }

    .person-title h2 {
        font-size: 24px;
    }

    .person-title p {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* 人才战略部分 */
.talent-strategy {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.strategy-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strategy-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.strategy-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.strategy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 信安之家部分 */
.xinan-home {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.home-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e60012;
    position: relative;
}

.home-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e60012;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-item {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.home-item:hover {
    transform: translateY(-5px);
}

.home-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.home-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-item:hover .home-item-image img {
    transform: scale(1.05);
}

.home-item-info {
    padding: 20px;
    text-align: center;
}

.home-item-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.home-item-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 人才招聘部分 */
.job-recruitment {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.recruitment-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e60012;
    position: relative;
}

.recruitment-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e60012;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.job-salary {
    font-size: 15px;
    color: #e60012;
    font-weight: bold;
}

.job-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item i {
    color: #666;
}

.detail-item span {
    font-size: 15px;
    color: #666;
}

.job-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-requirements {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .personduction, .contactduction {
        margin-top: 60px!important;
    }

    .person-container {
        padding: 20px 15px;
    }

    .talent-strategy,
    .xinan-home,
    .job-recruitment {
        padding: 20px;
    }

    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .job-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .personduction, .contactduction {
        margin-top: 0!important;
    }

    .person-container {
        padding: 15px 10px;
    }

    .talent-strategy,
    .xinan-home,
    .job-recruitment {
        padding: 15px;
    }

    .home-grid {
        grid-template-columns: 1fr;
    }

    .job-details {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* 联系我们页面样式 */
.contactduction {
    width: 100%;
    margin-top: 80px;
    background: #f6f6f6;
    padding-bottom: 40px;
}

.contact-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 联系我们标题样式 */
.contact-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.contact-title h2 {
    font-size: 32px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e60012;
}

.contact-title p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 联系我们内容样式 */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.contact-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e60012;
    position: relative;
}

.contact-item h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e60012;
}

.qr-codes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.qr-code {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 170px;
    max-width: 250px;
}

.qr-code:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qr-code img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.qr-code:hover img {
    transform: scale(1.02);
}

.qr-code .qr-title {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.qr-code .qr-subtitle {
    font-size: 15px;
    color: #666;
}

/* 联系方式和地图布局 */
.contact-info-map {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* 部门联系方式样式 */
.department-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-info .phone {
    color: #e60012;
    font-weight: bold;
    margin-top: 10px;
}

/* 公司地址样式 */
.company-address {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.company-address h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.company-address p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .contact-info-map {
        flex-direction: column;
    }

    .map-container #map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-item.full-width {
        padding: 30px;
    }

    .qr-codes-container {
        justify-content: center;
    }

    .qr-code {
        min-width: 160px;
        max-width: 200px;
    }

    .department-contacts {
        grid-template-columns: 1fr;
    }

    .map-container #map {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-item.full-width {
        padding: 20px;
        margin-bottom: 30px;
    }

    .contact-info-map {
        padding: 20px;
    }

    .contact-info {
        padding: 15px;
    }

    .company-address {
        padding: 15px;
    }

    .map-container #map {
        height: 200px;
    }

    .qr-code {
        min-width: 140px;
        max-width: 180px;
    }

    .qr-code img {
        width: 140px;
        height: 140px;
    }
}
@media (max-width: 400px){
    .media-banner, .pro-banner, .equipment-banner, .network-banner, .partner-banner, .person-banner, .contact-banner{
        height: 200px;
        margin-bottom: 10px;
        padding-top: 50px;
    }
    .contactduction{
        margin-top: 0;
    }
    .equipment-item{
        padding: 0! important;
    }
}
@media (max-width: 900px){
    /* .media-banner, .pro-banner, .equipment-banner, .network-banner, .partner-banner, .person-banner, .contact-banner{
        height: 200px;
        margin-bottom: 20px;
        padding-top: 50px;
    } */
    /* .production, .partnerduction, .personduction, .contactduction{
        margin-top: 0;
    } */
}

/* 分页器样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 10px;
}

.pagination-prev,
.pagination-next {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-prev:hover:not(:disabled),
.pagination-next:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.pagination-prev:disabled,
.pagination-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #333;
}

.pagination-number:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.pagination-number.active {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #fff;
}

.pagination-ellipsis {
    color: #666;
    font-size: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pagination {
        margin: 30px 0;
        gap: 8px;
    }

    .pagination-prev,
    .pagination-next,
    .pagination-number {
        width: 36px;
        height: 36px;
    }

    .pagination-number {
        min-width: 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        margin: 20px 0;
        gap: 5px;
    }

    .pagination-prev,
    .pagination-next,
    .pagination-number {
        width: 32px;
        height: 32px;
    }

    .pagination-number {
        min-width: 32px;
        font-size: 14px;
    }

    .pagination-ellipsis {
        font-size: 14px;
    }
}