﻿/* 全站统一配色变量 wl_前缀 全站页面统一 */
:root {
    --wl-main-blue: #0F3460;
    --wl-light-blue: #1A5099;
    --wl-orange: #FF7D00;
    --wl-gray-light: #f5f7fa;
    --wl-gray: #94a3b8;
    --wl-dark: #1e293b;
    --wl-white: #ffffff;
    --wl-border: #e2e8f0;
    --wl-success: #22c55e;
    --wl-danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: var(--wl-gray-light);
    color: var(--wl-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.wl_container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wl_btn {
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.wl_btn_orange {
    background: var(--wl-orange);
    color: white;
}

    .wl_btn_orange:hover {
        background: #e67000;
    }

.wl_btn_blue {
    background: var(--wl-light-blue);
    color: #fff;
}

    .wl_btn_blue:hover {
        background: #14407a;
    }

.wl_btn_gray {
    background: #e2e8f0;
    color: var(--wl-dark);
}

    .wl_btn_gray:hover {
        background: #cbd5e1;
    }

.wl_btn_block {
    width: 100%;
}

/* 顶部通栏 */
.wl_header_top {
    background-color: var(--wl-main-blue);
    color: var(--wl-white);
    padding: 10px 0;
    font-size: 14px;
}

    .wl_header_top .wl_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.wl_top_left i {
    margin-right: 6px;
}

.wl_top_right a {
    margin-left: 20px;
}

    .wl_top_right a:hover {
        color: var(--wl-orange);
    }

/* 主导航栏 固定顶部 */
.wl_nav {
    background-color: var(--wl-white);
    box-shadow: 0 2px 8px rgba(15, 52, 96, 0.15);
    position: sticky;
    top: 0;
    z-index: 99;
}

    .wl_nav .wl_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

.wl_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: bold;
    color: var(--wl-main-blue);
}

    .wl_logo i {
        font-size: 30px;
        color: var(--wl-orange);
    }

.wl_menu_list {
    display: flex;
    gap: 35px;
}

    .wl_menu_list li a {
        font-size: 16px;
        font-weight: 500;
        padding: 8px 0;
        position: relative;
        color: var(--wl-dark);
    }

        .wl_menu_list li a.active {
            color: var(--wl-light-blue);
        }

            .wl_menu_list li a.active::after {
                width: 100%;
            }

        .wl_menu_list li a:hover {
            color: var(--wl-light-blue);
        }

        .wl_menu_list li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 3px;
            background: var(--wl-orange);
            transition: 0.3s;
        }

        .wl_menu_list li a:hover::after {
            width: 100%;
        }

/* 面包屑导航 */
.wl_bread {
    padding: 20px 0;
    font-size: 14px;
    color: var(--wl-gray);
}

    .wl_bread a {
        color: var(--wl-light-blue);
    }

/* 页面顶部横幅 */
.wl_page_banner {
    background: linear-gradient(135deg, var(--wl-main-blue), var(--wl-light-blue));
    padding: 36px 0;
    color: #fff;
}

    .wl_page_banner .wl_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.wl_banner_text h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.wl_banner_text p {
    opacity: 0.9;
    font-size: 16px;
}

/* ======== 新版筛选框样式 ======== */
.wl_filter_box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    padding: 24px 30px;
    margin-bottom: 24px;
}

.wl_filter_row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}

.wl_filter_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .wl_filter_item label {
        font-weight: 500;
        white-space: nowrap;
    }

    .wl_filter_item select,
    .wl_filter_item input {
        border: 1px solid var(--wl-border);
        border-radius: 4px;
        padding: 9px 12px;
        font-size: 14px;
        min-width: 80px;
        outline: none;
    }

    .wl_filter_item input {
        min-width: 80px;
    }

.wl_filter_tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .wl_filter_tag_list span {
        padding: 6px 16px;
        border: 1px solid var(--wl-border);
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
    }

        .wl_filter_tag_list span.active {
            background: var(--wl-light-blue);
            color: #fff;
            border-color: var(--wl-light-blue);
        }

/* 主体容器布局 */
.wl_main_wrap {
    padding: 30px 0 80px;
}

.wl_main_layout {
    display: grid;
    grid-template-columns: 840px 330px;
    gap: 30px;
}

/* 专线列表卡片 */
.wl_line_item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    padding: 26px 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    position:relative; /*新增这一行*/
}

.wl_line_left {
    flex: 1;
}

.wl_line_title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wl_line_name {
    font-size: 20px;
    font-weight: bold;
}

.wl_cert_tag {
    background: var(--wl-success);
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
}

.wl_line_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 14px;
    color: #555;
}

    .wl_line_meta span i {
        color: var(--wl-light-blue);
        margin-right: 6px;
    }

.wl_line_service {
    margin-top: 14px;
}

.wl_service_tag {
    display: inline-block;
    padding: 3px 10px;
    background: #e8f0fe;
    color: var(--wl-light-blue);
    font-size: 13px;
    border-radius: 3px;
    margin-right: 8px;
}

.wl_line_desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-right:10px
}

.wl_line_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-top:90px; /* 避让右上角80高度的二维码 */
}

/* 分页控件 */
 .page-bar {
            margin-top: 20px;
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: center; /* 水平居中 */
            flex-wrap: wrap;
        }

        .page-item {
            padding: 8px 14px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            cursor: pointer;
        }

            .page-item.current {
                background: var(--wl-main-blue);
                color: #fff;
                border-color: var(--wl-main-blue);
            }

            .page-item.disable {
                background: #f3f4f6;
                color: #aaa;
                cursor: not-allowed;
            }

/* 右侧悬浮侧边栏 */
.wl_right_sidebar {
    position: sticky;
    top: 90px;
}

.wl_side_card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    padding: 28px;
    margin-bottom: 24px;
}

.wl_card_title {
    font-size: 20px;
    color: var(--wl-main-blue);
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wl_tip_list li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

    .wl_tip_list li i {
        color: var(--wl-orange);
        margin-top: 3px;
    }

.wl_contact_info p {
    font-size: 15px;
    margin-bottom: 10px;
}

    .wl_contact_info p i {
        color: var(--wl-light-blue);
        width: 24px;
    }

/* 页脚 */
/* 页脚 */
.wl_footer {
    background: #0a2240;
    color: #b8c5d6;
    padding: 60px 0 30px;
}

.wl_footer_wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.wl_footer_col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wl-orange);
    width: 140px;
}

.wl_footer_col li {
    margin-bottom: 12px;
}

.wl_footer_col a:hover {
    color: var(--wl-orange);
}

.wl_copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #17355e;
    font-size: 14px;
}
/*.wl_footer {
    background: #0a2240;
    color: #b8c5d6;
    padding: 60px 0 30px;
}

.wl_footer_wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.wl_footer_col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wl-orange);
    width: 140px;
}

.wl_footer_col li {
    margin-bottom: 12px;
}

.wl_footer_col a:hover {
    color: var(--wl-orange);
}

.wl_copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #17355e;
    font-size: 14px;
}*/
.wl_ewm {
    position: absolute; top:20px; right:30px; text-align: center;
}
.wl_img_item
{
width:140px; height:90px; border: 1px solid #e2e8f0; border-radius: 6px; display: flex; align-items: center; justify-content: center; background: #fff;
}
.wl_img_item img {
   width: 130px; height: 80px;
}
.wl_line_right a {
    display:inline-block;width:135px;text-align:center;
}

.ellipsis‑3row{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp:2;  /*超过3行省略*/
    -webkit-box-orient: vertical;
}