/* 文章列表页样式 */

/* 页面基础样式 */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 1280px;
    overflow-x: auto;
}

/* 加急空运服务横幅 */
.jiaji-banner {
    width: 100%;
    min-width: 1280px;
    margin: 0;
    background: linear-gradient(135deg, #e60012 0%, #ff4d4d 100%);
    padding: 40px 0;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
}

.jiaji-banner h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.jiaji-banner .subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
}

.jiaji-banner .hotline {
    font-size: 24px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* 列表容器 */
.list {
    width: 1280px;
    margin: 0;
    overflow: hidden;
    margin: 0 auto;
}

/* 左侧内容区域 */
.list .left {
    width: 900px;
    float: left;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 20px;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #e60012;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 右侧边栏 */
.list .right {
    width: 340px;
    float: right;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}

/* 文章列表项 */
.article-item {
    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-item:last-child {
    border-bottom: none;
}

.article-img {
    width: 200px;
    height: 120px;
    float: left;
    margin-right: 20px;
}

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

.article-content {
    overflow: hidden;
}

.article-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.article-title a {
    color: #333;
    text-decoration: none;
}

.article-title a:hover {
    color: #e60012;
}

.article-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    color: #999;
    font-size: 12px;
}

.article-meta span {
    margin-right: 15px;
}

/* 分页样式 */
.pages {
    text-align: center;
    margin-top: 30px;
    overflow: hidden;
}

.pages a, .pages b {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    background: #fff;
}

.pages b {
    background: #e60012;
    color: #fff;
    border-color: #e60012;
}

.pages a:hover {
    background: #e60012;
    color: #fff;
    border-color: #e60012;
}

.page-next {
    background: #f5f5f5;
}

/* 客服联系方式 - 新设计 */
.service-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    margin-top: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-contact-header {
    text-align: center;
    margin-bottom: 25px;
}

.service-contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-contact-desc {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.service-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.service-contact-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #e60012;
}

.service-contact-icon {
    margin-bottom: 12px;
}

.service-contact-icon img {
 width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.service-contact-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.service-contact-content p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.service-contact-info {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #dee2e6;
}

.service-contact-phone,
.service-contact-qq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.service-contact-phone:not(:last-child),
.service-contact-qq:not(:last-child) {
    border-bottom: 1px solid #f1f3f4;
}

.service-contact-label {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.service-contact-value {
    font-size: 15px;
    color: #e60012;
    font-weight: 600;

}

.contact-info {
    clear: both;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
}


/* 右侧边栏样式 */
.sidebar-block {
    margin-bottom: 30px;
}

.sidebar-block h3 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60012;
    color: #333;
}

/* 广告图 */
.sidebar-ad img {
    width: 100%;
    height: auto;
}

/* 最新文章 */
.latest-articles ul {
    list-style: none;
    padding: 0;
}

.latest-articles li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.latest-articles li:last-child {
    border-bottom: none;
}

.latest-articles a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.latest-articles a:hover {
    color: #e60012;
}

.latest-articles .article-date {
    color: #999;
    font-size: 12px;
    margin-top: 3px;
}

/* 推荐文章 */
.recommend-articles ul {
    list-style: none;
    padding: 0;
}

.recommend-articles li {
    margin-bottom: 10px;
    overflow: hidden;
}

.recommend-articles .rec-img {
    width: 60px;
    height: 40px;
    float: left;
    margin-right: 10px;
}

.recommend-articles .rec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-articles .rec-content {
    overflow: hidden;
}

.recommend-articles .rec-title {
    font-size: 14px;
    line-height: 1.3;
}

.recommend-articles .rec-title a {
    color: #333;
    text-decoration: none;
}

.recommend-articles .rec-title a:hover {
    color: #e60012;
}

/* 标签云 */
.tag-cloud {
    overflow: hidden;
}

.tag-cloud a {
    display: inline-block;
    padding: 3px 8px;
    margin: 0 5px 5px 0;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    border-radius: 3px;
}

.tag-cloud a:hover {
    background: #e60012;
    color: #fff;
}


.hezuo {
    width: 1280px;
    margin: 40px auto;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
}
.hezuo h3 {
    font-size: 16px;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

.hezuo p {
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}
.hezuo_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
    overflow: hidden;
}

.hezuo_list img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.hezuo_list img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* 相关业务推荐 */
.related-business {
    margin-top: 30px;
}

.related-business h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.business-list {
    overflow: hidden;
}

.business-item {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 10px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 3px;
}

.business-item:nth-child(2n) {
    margin-right: 0;
}

.business-item a {
    color: #333;
    text-decoration: none;
}

.business-item a:hover {
    color: #e60012;
}
.news_fuwu {
    width: 100%;
    overflow: hidden;
}

.news_fuwu li {
    float: left;
    list-style: none;
    width: 192px;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 15px;
}

.news_fuwu li:last-child {
    margin-bottom: 0px;
}

.fw_desc {
    width: 100%;
    background: #f0f0f0;
}

.fw_desc span {
    width: 100%;
    display: inline-block;
    font-weight: bold;
    line-height: 30px;
    font-size: 14px;
}

.news_fuwu li img {
    width: 100%;
    height: auto;
}

.fw_desc small {
    line-height: 26px;
    font-size: 13px;
}