        .logo-showcase {
           /* max-width: 1200px;*/
            width: 100%;
            position: relative;
            /*padding: 80px 0;*/
            margin: -85px 0px 200px 0px;
        }
        
        .logo-scroll-container {
            position: relative;
            margin: -40px 0;
            overflow: hidden;
            height: 200px; /* 增加高度确保圆形完全显示 */
            display: flex;
            align-items: center; /* 垂直居中 */
        }
        
        /* 两侧弱化效果 */
        .logo-scroll-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 20%;
            height: 100%;
            background: linear-gradient(90deg, #f5f5f5 35%, rgba(255, 255, 255, 0.00) 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .logo-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 20%;
            height: 100%;
            background: linear-gradient(270deg, #f5f5f5 50%, rgba(255, 255, 255, 0.00) 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .logo-track {
            display: flex;
            position: absolute;
            height: 100%;
            align-items: center; /* 确保圆形垂直居中 */
            width: max-content;
            animation: scroll 40s linear infinite;
        }
        
        .logo-track-2 {
            animation: scroll 35s linear infinite reverse;
        }
        
        .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 140px;
            height: 140px;
            margin: 0 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .logo-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        
        .logo-circle img {
            width: 70%;
            height: 70%;
            object-fit: contain;
            filter: grayscale(30%);
            transition: all 0.4s ease;
        }
        
        .logo-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            text-align: center;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 3;
            width: 80%;
            line-height: 1.2;
        }
        
        /* 悬停效果 */
        /*.logo-scroll-container:hover .logo-item:not(:hover) {
            filter: blur(4px);
            transform: scale(0.9);
        }*/
        
        /*.logo-item:hover {
            transform: scale(1.2);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }*/
        
        .logo-item:hover .logo-circle {
            background: rgba(60, 60, 60, 0.9);
        }
        
        .logo-item:hover .logo-circle img {
            opacity: 0;
            transform: scale(0.5);
        }
        
        .logo-item:hover .logo-text {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 768px) {
            .logo-item {
                width: 120px;
                height: 120px;
                margin: 0 15px;
            }
            
            .logo-text {
                font-size: 12px;
            }
            
            .logo-scroll-container {
                height: 160px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-item {
                width: 100px;
                height: 100px;
                margin: 0 10px;
            }
            
            .logo-text {
                font-size: 10px;
            }
            
            .logo-scroll-container {
                height: 140px;
            }
        }

        /*资质许可页*/
.huotong-certificates {
    width: 100%;
    /* max-width: 1180px; */
    height: 450px;
    padding-top: 119px;
    /* background: linear-gradient(rgb(245, 247, 250) 0%, rgb(248, 249, 252) 100%); */
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    /* overflow: hidden; */
    /* position: relative; */
margin: 0px 0px 167px 0px;
}
        
        .huotong-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .huotong-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .huotong-title {
            color: #17181b;
            font-size: 28px;
            font-weight: 500;
            line-height: 36px;
            margin-bottom: 10px;
        }
        
        .huotong-subtitle {
            color: #5c5d5f;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
        }
        
        .huotong-cert-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            justify-items: center;
        }
        
        .huotong-cert-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 120px;
        }
        
        .huotong-cert-card:hover {
            transform: translateY(-8px);
        }
        
        .huotong-cert-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .huotong-cert-card:hover .huotong-cert-icon {
            box-shadow: 0 8px 20px rgba(164, 22, 38, 0.15);
            border: 2px solid #a41626;
        }
        
        .huotong-cert-icon img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }
        
        .huotong-cert-name {
            color: #17181b;
            text-align: center;
            font-size: 13px;
            font-weight: 500;
            line-height: 18px;
            margin-bottom: 4px;
        }
        
        .huotong-cert-desc {
            color: #5c5d5f;
            text-align: center;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
        }
        
        .huotong-cert-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 24px;
            height: 24px;
            background: #a41626;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .huotong-cert-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }
            
            .huotong-certificates {
                height: auto;
                padding-bottom: 60px;
            }
        }
        
        @media (max-width: 900px) {
            .huotong-cert-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 600px) {
            .huotong-cert-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .huotong-title {
                font-size: 24px;
                line-height: 32px;
            }
            
            .huotong-subtitle {
                font-size: 14px;
                line-height: 20px;
            }
            
            .huotong-cert-card {
                width: 110px;
            }
            
            .huotong-cert-icon {
                width: 70px;
                height: 70px;
            }
            
            .huotong-cert-icon img {
                width: 40px;
                height: 40px;
            }
        }

        /*新闻页面*/

                .ht-dynamic-section {
            background-color: #fff;
            height: 594px;
            padding-top: 80px;
            width: 100%;
            /*max-width: 1180px;*/
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
           /*margin: 172px auto;*/
           padding: 85px 0px 0px;
        }
        
        .ht-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            margin-bottom: 100px;
        }
        
        .ht-header {
            margin-bottom: 48px;
            text-align: center;
        }
        
        .ht-title {
            color: #17181b;
            font-size: 26px;
            font-weight: 500;
            line-height: 36px;
        }
        
        .ht-cards-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        
        .ht-card {
            height: 280px;
            width: 350px;
            text-align: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .ht-card:hover {
            transform: translateY(-5px);
        }
        
        .ht-card-header {
            position: relative;
            height: 120px;
            background: linear-gradient(135deg, #a41626, #c2185b);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 32px;
            text-align: left;
        }
        
        .ht-card-1 .ht-card-header {
            background: linear-gradient(135deg, #a41626, #c2185b);
        }
        
        .ht-card-2 .ht-card-header {
            background: linear-gradient(135deg, #1565c0, #1976d2);
        }
        
        .ht-card-3 .ht-card-header {
            background: linear-gradient(135deg, #2e7d32, #388e3c);
        }
        
        .ht-card-subtitle {
            color: #fff;
            font-size: 12px;
            font-weight: 400;
            line-height: 12px;
            opacity: 0.8;
            margin-bottom: 12px;
        }
        
        .ht-card-title {
            color: #f8f9fc;
            font-size: 18px;
            font-weight: 600;
            line-height: 18px;
        }
        
        .ht-card-divider {
            display: inline-block;
            width: 18px;
            font-weight: 400;
            opacity: 0.4;
        }
        
        .ht-card-desc {
            color: #fff;
            font-weight: 400;
            opacity: 0.8;
        }
        
        .ht-card-content {
            border: 1px solid #f0f3fa;
            height: 162px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 0 0 4px 4px;
            padding: 32px 32px 40px;
            text-align: left;
            background: #fff;
        }
        
        .ht-news-item {
            color: #17181b;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 400;
            line-height: 14px;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .ht-news-date {
            margin-right: 12px;
            font-family: 'Courier New', monospace;
            opacity: 0.5;
            min-width: 45px;
        }
        
        .ht-news-title {
            color: #17181b;
            cursor: pointer;
            transition: color 0.3s ease;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .ht-news-title:hover {
            color: #a41626;
        }
        
        /* 响应式设计 */
        @media (max-width: 1150px) {
            .ht-cards-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }
            
            .ht-card {
                width: 320px;
            }
            
            .ht-dynamic-section {
                height: auto;
                padding-bottom: 60px;
            }
        }
        
        @media (max-width: 768px) {
            .ht-cards-container {
                flex-direction: column;
                align-items: center;
            }
            
            .ht-card {
                width: 100%;
                max-width: 400px;
            }
            
            .ht-title {
                font-size: 22px;
                line-height: 30px;
            }
        }
        /*底部文章的图片样式*/
        .ht-card-header {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.ht-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ht-card-subtitle,
.ht-card-title,
.ht-card-divider,
.ht-card-desc {
    position: relative;
    z-index: 2;
    color: white;
}