/* 首页升级版样式 */

/* 合作伙伴滚动展示 */
.partner-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 20px 0;
}

.partner-scroll-wrapper {
    display: flex;
    animation: partnerScroll 30s linear infinite;
    width: max-content;
}

.partner-scroll-wrapper:hover {
    animation-play-state: paused;
}

.partner_content_list {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.partner_content_list:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.partner_content_list img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.partner_content_list:hover img {
    filter: grayscale(0%);
}

/* 滚动动画 */
@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .partner_content_list {
        width: 140px;
        height: 70px;
        margin: 0 12px;
    }
}

@media (max-width: 768px) {
    .partner_content_list {
        width: 120px;
        height: 60px;
        margin: 0 10px;
    }
    
    .partner-scroll-wrapper {
        animation-duration: 20s;
    }
}

/* 首页其他优化样式 */
.IndexService_content_title2 h6.indextitle2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.IndexService_content_title2 h6.indextitle2:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #ff6a00;
    border-radius: 2px;
}

.section-title1, .section-title2, .section-title3 {
    position: relative;
}

.section-title1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 41%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #FF7025;
    border-radius: 2px;
}
.section-title2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 59%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #FF7025;
    border-radius: 2px;
}
.section-title3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 24%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #FF7025;
    border-radius: 2px;
}

.IndexService_content_title2 dt p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
    text-align: justify;
}

/* 案例展示优化 */
.case_item, .case_itemleft {
    transition: all 0.3s ease;
}
.case_title1{
    position: absolute;
    bottom: 0px;
    text-align: center;
    background: #ffffff59;
    width: 100%;
    padding: 20px;
    font-size: 20px;
}
.case_item:hover, .case_itemleft:hover {
    transform: translateY(-5px);
}

.img_box {
    overflow: hidden;
    border-radius: 8px;
}

.img_box img {
    transition: transform 0.3s ease;
}

.case_item:hover .img_box img,
.case_itemleft:hover .img_box img {
    transform: scale(1.05);
}

/* 新闻资讯优化 */
.b-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.b-title:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #ff6a00;
    border-radius: 2px;
}

.news-list .first-news .title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-list .news-item a {
    display: block;
    padding: 20px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    width: 95%;
}

.news-list .news-item a:hover {
    color: #ff6a00;
}

/* 新闻项目行样式 - 重新设计 */
.news-item-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    min-height: 60px;
    width: 95%;
}

.news-item-row:hover {
    background-color: #f8f8f8;
}

.news-left {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 13px;
    line-height: 1;
}

.news-date .iconfont {
    font-size: 14px;
    color: #ccc;
}

.news-category {
    margin-left: 20px;
}

.category-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff6a00, #ff4500);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.news-content {
    flex: 1;
    padding: 0 20px;
}

.news-title {
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #ff6a00;
}

.news-arrow {
    flex: 0 0 20px;
    text-align: center;
}

.news-arrow .iconfont {
    color: #ccc;
    font-size: 16px;
}

/* 专业团队优化 */
.professional_team h3 {
    font-size: 26px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.professional_team h3:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: #ff6a00;
    border-radius: 2px;
}

.Indexteam_title p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

/* 按钮样式优化 */
.more_btnbox a {
    display: inline-block;
    background: #ff6a00b5;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.more_btnbox a:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,106,0,0.3);
} 

/* 公司能力展示区域样式 */
.company-capabilities {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: flex-start;
}

.capabilities-left {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-image: url('../images/indexgrd.png');
    background-repeat: no-repeat;
    background-position: 250px 0;
}

.capabilities-right {
    flex: 0 0 30%;
    min-height: 600px;
    position: relative;
}

/* 能力部分样式 - 垂直排列 */
.capability-section {
    margin-bottom: 0;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-title1, .section-title2, .section-title3 {
    font-size: 28px;
    font-weight: 600;
    color: #33333380;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-title1 .highlight,
.section-title2 .highlight,
.section-title3 .highlight {
    color: #ff6a00;
    position: relative;
}

.section-title1 .highlight::before,
.section-title1 .highlight::after,
.section-title2 .highlight::before,
.section-title2 .highlight::after,
.section-title3 .highlight::before,
.section-title3 .highlight::after {
    content: '';
    color: #ff6a00;
    font-weight: 700;
}

/* 指标容器样式 - 水平排列 */
.metrics-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    flex: 1;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 110px;
}

.metric-number {
    font-size: 40px;
    font-weight: 700;
    color: #ff6a00;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}

.metric-number sup {
    font-size: 20px;
    font-weight: 700;
    color: #ff6a00;
    vertical-align: super;
}

.metric-top {
    position: relative;
    margin-bottom: 8px;
}

.metric-label {
    position: absolute;
    bottom: 0;
    right: -15px;
    font-size: 16px;
    font-weight: 600;
    color: #ff6a00;
    line-height: 1;
}

/* 为每个能力部分添加底部横线 */
.capability-section {
    position: relative;
    padding: 50px 0;
}

.capability-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: #e0e0e0;
}

/* 了解我们按钮样式 */
.about-us-button-container {
    text-align: center;
    margin-top: 40px;
}

.about-us-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff8533 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.about-us-button:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ff6a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.metric-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.metric-text {
    font-size: 24px;
    font-weight: 600;
    color: #ff6a00;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .capabilities-left {
        gap: 40px;
    }
    
    .section-content {
        gap: 25px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .metric-number {
        font-size: 36px;
    }
    
    .metric-number sup {
        font-size: 16px;
    }
    
    .metrics-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .company-capabilities {
        flex-direction: column;
        gap: 20px;
    }
    
    .capabilities-left,
    .capabilities-right {
        flex: 0 0 100%;
    }
    
    .capabilities-right {
        min-height: 300px;
    }
    
    .capabilities-left {
        gap: 25px;
    }
    
    .section-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .metric-number {
        font-size: 32px;
    }
    
    .metric-number sup {
        font-size: 14px;
    }
    
    .metrics-container {
        gap: 15px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .capabilities-left {
        gap: 20px;
    }
    
    .section-content {
        gap: 12px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .metric-number {
        font-size: 28px;
    }
    
    .metric-number sup {
        font-size: 12px;
    }
    
    .metrics-container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .metric-item {
        align-items: flex-start;
        text-align: left;
    }
} 