/* 新闻列表页样式 */
.list {
    width: 1280px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.left {
    flex: 2;
    background: #fff;
}

.right {
    flex: 1;
    background: #fff;
}

/* 广告图片样式 */
.ad-banner {
    margin-bottom: 5px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ad-banner img {
    width: 100%;
    /*height: 140px;*/
    display: block;
}

.mbx {
    padding: 20px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    margin-right: 8px;
}

.breadcrumb a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/*.breadcrumb a::after {*/
/*    content: ">";*/
/*    color: #6c757d;*/
/*    margin-left: 8px;*/
/*    font-weight: normal;*/
/*}*/

.breadcrumb .current {
    color: #495057;
    font-weight: 500;
}

.bottom-ad {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* 新闻列表样式 */
.news-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.news-item:hover {
    background-color: #f8f9fa;
}

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

.news-thumb {
    width: 150px;
    height: 100px;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-content {
    flex: 1;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #007bff;
}

.news-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.news-meta span {
    position: relative;
}

.news-meta span:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: #ddd;
}

/* 分页样式 */
.page {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
    background: #fff;
}

.page a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.page b {
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    border-radius: 4px;
    font-weight: bold;
}

/* 相关内容样式 */
.related-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-content h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.related-list li {
    margin-bottom: 0;
}

.related-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    padding: 15px;
}

.related-list a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.related-list img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.service-name {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.related-list a:hover .service-name {
    color: #007bff;
}

/* 右侧栏通用样式 */
.right>div {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.right h3 {
    margin: 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333;
}

/* 运单下单表单样式 */
.order-form-content {
    padding: 20px;
}

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

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #0056b3;
}

/* 正方形广告图样式 */
.square-ad {
    padding: 0;
}

.square-ad img {
    width: 100%;
    height: auto;
    display: block;
}

/* 最新文章样式 */
.latest-articles {
    padding: 0;
}

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

.article-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.article-list li:hover {
    background-color: #f8f9fa;
}

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

.article-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    flex: 1;
    transition: color 0.3s;
}

.article-list a:hover {
    color: #007bff;
}

.article-list span {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
}

/* 热门标签云样式 */
.tag-cloud {
    padding: 0;
}

.tags {
    padding: 20px;
}

.tags  a{
    display: inline-block;
    padding: 6px 12px;
    margin: 0 8px 8px 0;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s;
}

.tags a:hover {
    background: #007bff;
    color: #fff;
}

/* 热门文章样式 */
.hot-articles {
    padding: 0;
}

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

.hot-list li {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.hot-list li:hover {
    background-color: #f8f9fa;
}

.hot-list li:last-child {
    border-bottom: none;
}

.hot-num {
    width: 20px;
    height: 20px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.hot-list li:nth-child(1) .hot-num {
    background: #ff4757;
}

.hot-list li:nth-child(2) .hot-num {
    background: #ff6b35;
}

.hot-list li:nth-child(3) .hot-num {
    background: #ffa502;
}

.hot-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    flex: 1;
    transition: color 0.3s;
}

.hot-list a:hover {
    color: #007bff;
}

.hot-views {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
}

.hot-views::before {
    content: '👁 ';
}

.hezuo {
    width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

/* 新闻详情页样式 */
.news-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

/* 客服下单入口样式 */
.service-bar {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 15px 20px;
    margin-bottom: 0;
}

.service-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.service-txt {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.service-btn {
    background: #fff;
    color: #007bff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.service-btn:hover {
    background: transparent;
   color: #007bff;
    border-color: #fff;
}

.service-tel {
color: #fff;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    line-height: 30px;
}
span.service-tel img {
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 1px;
}

/* 文章标题样式 */
.art-head {
    padding: 30px 20px 20px;
    border-bottom: 1px solid #eee;
}

.art-title {
    font-size: 28px;
    color: #333;
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-weight: 600;
}

/* 文章基本信息样式 */
.art-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.art-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pub-time {
    color: #28a745;
}

.view-num {
    color: #17a2b8;
}

.author {
    color: #6f42c1;
}

/* 文章正文内容样式 */
.art-body {
    padding: 30px 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.art-body p {
    margin: 0 0 20px 0;
    text-align: justify;
}

.art-body strong {
    color: #007bff;
    font-weight: 600;
}
.art-body img {
    max-width: 600px;
    margin: 0 auto;
}
.art-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 25px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.art-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.art-link:hover {
    color: #0056b3;
    border-bottom-color: transparent;
}

/* 关键词标签样式 */
.art-tags {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-right: 10px;
}

.tag-item {
    display: inline-block;
    padding: 6px 15px;
    background: #fff;
    color: #007bff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid #007bff;
    transition: all 0.3s;
}

.tag-item:hover {
    background: #007bff;
    color: #fff;
}

/* 文章广告位样式 */
.art-ad {
    margin: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 8px;
    overflow: hidden;
}

.ad-wrap {
    padding: 25px;
    text-align: center;
    color: #fff;
}

.ad-wrap h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.ad-wrap p {
    margin: 0 0 20px 0;
    font-size: 14px;
    opacity: 0.9;
}

.ad-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #28a745;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.ad-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* 文章导航样式 */
.art-nav {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.nav-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

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

.nav-label {
    color: #666;
    font-weight: 500;
    margin-right: 10px;
    min-width: 60px;
}

.nav-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
    flex: 1;
}

.nav-item a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-wrap {
        flex-direction: column;
        text-align: center;
    }

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

    .art-meta {
        flex-direction: column;
        gap: 10px;
    }

    .art-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* 线路信息样式 - 现代简洁设计 */
.xianluinfo {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.xianluinfo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 8px 8px 0 0;
}

/* 发货信息区域 */
.fahuo {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
}

.fahuo-title {
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.fahuo-title::before {
    content: '✈️';
    margin-right: 8px;
    font-size: 18px;
}

/* 发货地和目的地样式 */
.fahuo span {
    font-size: 15px;
    margin-right: 8px;
    display: inline-block;
}

.fahuo span:nth-child(odd) {
    color: #666;
    font-weight: 500;
}

.fahuo span:nth-child(even) {
    color: #007bff;
    font-weight: 600;
    background: #e3f2fd;
    padding: 4px 12px;
    border-radius: 16px;
    margin-right: 12px;
    border: 1px solid #bbdefb;
}

/* 箭头图标样式 */
.goto {
    width: 20px;
    height: 20px;
    margin: 0 12px;
    vertical-align: middle;
    filter: brightness(0.8);
}

/* 线路详情信息 */
.xianlu {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.xianlu:hover {
    border-color: #007bff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.1);
}

.xianlu:last-of-type {
    margin-bottom: 0;
}

.xianlu span:first-child {
    color: #495057;
    font-size: 14px;
    min-width: 60px;
    font-weight: 600;
    position: relative;
}

.xianlu span:first-child::after {
    content: ':';
    margin-left: 2px;
    color: #007bff;
}

.xianlu span:last-child {
    color: #007bff;
    font-size: 15px;
    margin-left: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

/* 为不同类型的信息添加图标 */
.xianlu:nth-child(2) span:first-child::before {
    content: '⏱️ ';
    margin-right: 4px;
}

.xianlu:nth-child(3) span:first-child::before {
    content: '💰 ';
    margin-right: 4px;
}

.xianlu:nth-child(4) span:first-child::before {
    content: '🛡️ ';
    margin-right: 4px;
}

.hezuo {
    text-align: center;
    padding: 40px 0;
}

.hezuo-desc {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.hezuo-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hezuo-logos img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}

.hezuo-logos img:hover {
    transform: scale(1.1);
}


.art-body table {
    width: 99% !important;
    border-bottom: 1px solid #beccdb;
    border-right: 1px solid #beccdb;
}
.art-body tbody {
    width: 99% !important;
    border-bottom: 1px solid #beccdb;
    border-right: 1px solid #beccdb;
}
.art-body table tr {
    border-top: 1px solid #beccdb;
    border-left: 1px solid #beccdb;
    line-height: 1.5;
    padding: 10px;
    font-size: 16px;
}

.art-body td {
    border-top: 1px solid #beccdb;
    border-left: 1px solid #beccdb;
    line-height: 1.5;
    padding: 10px;
    font-size: 16px;
}