﻿/* 全局统一配色 与首页完全统一 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;
}

* {
    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_detail_banner {
    background: linear-gradient(135deg, var(--wl-main-blue), var(--wl-light-blue));
    padding: 50px 0;
    color: #fff;
}

    .wl_detail_banner .wl_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.wl_banner_left h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.wl_banner_tag {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

    .wl_banner_tag span {
        padding: 5px 14px;
        border: 1px solid #fff;
        border-radius: 20px;
        font-size: 14px;
    }

.wl_banner_right {
    min-width: 260px;
}

/* 主体内容区域 */
.wl_main_wrap {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.wl_detail_row {
    display: grid;
    grid-template-columns: 820px 340px;
    gap: 30px;
}

.wl_card_box{
    margin-top:24px;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 12px rgba(15,52,96,0.08);
}
.wl_card_title{
    font-size:17px;
    color:#0F3460;
    margin:0 0 16px 0;
    display:flex;
    align-items:center;
    gap:8px;
}

.wl_info_item {
    display: flex;
    margin-bottom: 18px;
}

.wl_info_label {
    width: 130px;
    color: var(--wl-gray);
}

.wl_info_text {
    flex: 1;
    color: var(--wl-dark);
}

    .wl_info_text.orange {
        color: var(--wl-orange);
        font-weight: bold;
    }

.wl_text_block {
    line-height: 1.8;
    color: #475569;
}

.wl_img_block {
   display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:12px;
}

.wl_img_item {
    height:130px;
    border-radius:8px;
    overflow:hidden;
    background:#f1f5f9;
}
.wl_img_item img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.wl_service_list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.wl_service_item {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
}

    .wl_service_item i {
        font-size: 26px;
        color: var(--wl-light-blue);
        margin-bottom: 10px;
    }
/* 右侧商家卡片 */
.wl_side_card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    padding: 26px;
    position: sticky;
    top: 90px;
}

.wl_side_title {
    font-size: 20px;
    color: var(--wl-main-blue);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.wl_contact_item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .wl_contact_item i {
        width: 36px;
        height: 36px;
        background: #e8f0fc;
        color: var(--wl-light-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.wl_contact_text h4 {
    font-size: 15px;
    color: var(--wl-gray);
    font-weight: normal;
}

.wl_contact_text p {
    font-size: 17px;
    margin-top: 4px;
}

    .wl_contact_text p.orange {
        color: var(--wl-orange);
        font-weight: bold;
        font-size: 20px;
    }

.wl_remark_tip {
    font-size: 13px;
    color: var(--wl-gray);
    margin-top: 15px;
    line-height: 1.6;
}

/* 分页/底部推荐隐藏，仅详情页 */
/* 页脚 */
/* 页脚 */
.wl_footer {
    background: #0a2240;
    color: #b8c5d6;
    padding: 60px 0 30px;
    margin-top: 40px;
}

.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_right_tel a {
    display:inline-block;text-align:center; 
} 