  /* ============================================================
           全局重置 & 基础样式
           ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f6fa;
            color: #333;
            line-height: 1.6;
            -webkit-text-size-adjust: 100%;
            overflow-x: hidden;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }

        /* ============================================================
           顶部导航 - 移动端优化
           ============================================================ */
        .top-wrapper {
            background-color: #1a2634;
            color: #fff;
            padding: 6px 0;
            font-size: 14px;
        }

        .top-wrapper .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .channelList {
            display: flex;
            list-style: none;
            gap: 10px;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .channelList li a {
            color: #ccc;
            transition: color 0.2s;
            font-size: 13px;
            padding: 2px 0;
            white-space: nowrap;
        }

        .channelList li a:hover,
        .channelList li a.active {
            color: #ffd700;
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .navbar-right .login a {
            color: #ccc;
            font-size: 13px;
        }

        .navbar-right .login a:hover {
            color: #ffd700;
        }

        /* ============================================================
           头部 Logo & 搜索 - 移动端优化
           ============================================================ */
        .header {
            background: #fff;
            padding: 12px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .header .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .menu {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .menuLeft {
            display: flex;
            align-items: center;
        }

        .logo {
            display: block;
            width: 38px;
            height: 38px;
            background: url(/css/images/logo15.png) no-repeat;
            width: 80px !important;
            height: 54px !important;
            border-radius: 8px;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .typeList h1 {
            font-size: 15px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.2;
        }

        .typeList h1 span:first-child {
            color: #ff4808;
            font-weight: 700;
            font-size: 15px;
        }

        .typeList h1 span:last-child {
            color: #fc6e08;
            font-size: 11px;
            margin-top: 1px;
        }

        /* ===== 搜索框 - 移动端优化 ===== */
        .search {
            flex: 1;
            max-width: 420px;
            min-width: 140px;
        }

        .search .input {
            position: relative;
        }

        .search .input form {
            display: flex;
            border: 2px solid #ff8c00;
            border-radius: 30px;
            overflow: hidden;
            background: #fff;
        }

        .search .input form input {
            flex: 1;
            border: none;
            padding: 6px 12px;
            font-size: 13px;
            outline: none;
            min-width: 40px;
            background: transparent;
        }

        .search .input form .inputRightPart {
            display: flex;
            align-items: center;
            background: #e7e1da;
            border-radius: 0 30px 30px 0;
            overflow: hidden;
            flex-shrink: 0;
        }

        .search .input form .inputRightPart .save {
            font-size: 10px;
            color: #fff;
            padding: 0 8px;
            white-space: nowrap;
            cursor: pointer;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
            line-height: 30px;
        }

        .search .input form .inputRightPart .save .downArrow {
            display: inline-block;
            margin-left: 3px;
            border: 4px solid transparent;
            border-top-color: #fff;
            vertical-align: middle;
        }

        .search .input form .inputRightPart .save span {
            color: #fff;
        }

        .search .input form button {
            background: #ff8c00;
            border: none;
            padding: 6px 16px;
            color: #fff;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: background 0.2s;
            white-space: nowrap;
            flex-shrink: 0;
            border-radius: 0 30px 30px 0;
            letter-spacing: 2px;
        }

        .search .input form button:hover {
            background: #e67e00;
        }

        /* ============================================================
           详情页 - 标题区域 - 移动端优化
           ============================================================ */
        .sellDetailHeader {
            padding: 10px 0 5px;
            background: #fff;
            border-bottom: 1px solid #f0f0f0;
        }

        .sellDetailHeader .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .sellDetailHeader .title .main {
            font-size: 20px;
            font-weight: 700;
            color: #1a2634;
            margin: 0;
        }

        .sellDetailHeader .title .sub {
            font-size: 13px;
            color: #888;
        }

        .sellDetailHeader .btnContainer .action button {
            padding: 7px 18px;
            background: #ff8c00;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .sellDetailHeader .btnContainer .action button:hover {
            background: #e67e00;
        }

        /* ============================================================
           当前位置 - 移动端优化
           ============================================================ */
        .position {
            font-size: 13px;
            color: #888;
            padding: 8px 0 4px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .position a {
            color: #17a2b8;
        }

        .position a:hover {
            color: #ff8c00;
        }

        /* ============================================================
           房源概览 - 完全自适应
           ============================================================ */
        .overview {
            background: #fff;
            border-radius: 12px;
            padding: 16px;
            margin: 12px auto;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            width: 100%;
            max-width: 1200px;
        }

        .overview .row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            width: 100%;
        }

        /* ===== 图片区域 - 完全自适应 ===== */
        .overview .img {
            flex: 1 1 40%;
            min-width: 0;
            width: 100%;
        }

        .overview .img .imgContainer {
            border-radius: 8px;
            overflow: hidden;
            background: #f0f0f0;
            position: relative;
            width: 100%;
            padding-bottom: 66.67%;
        }

        .overview .img .imgContainer img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== 缩略图 - 完全自适应 ===== */
        .thumbnail-img {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            overflow: hidden;
            width: 100%;
        }

        .thumbnail-img .pre,
        .thumbnail-img .next {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f0f0f0;
            text-align: center;
            line-height: 26px;
            cursor: pointer;
            font-size: 24px;
            color: #888;
            flex-shrink: 0;
            user-select: none;
            transition: background 0.2s;
        }

        .thumbnail-img .pre:hover,
        .thumbnail-img .next:hover {
            background: #e0e0e0;
        }

        .thumbnail-img .smallpic {
            display: flex;
            gap: 6px;
            list-style: none;
            padding: 0;
            margin: 0;
            overflow-x: auto;
            flex: 1;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        }

        .thumbnail-img .smallpic::-webkit-scrollbar {
            height: 3px;
        }

        .thumbnail-img .smallpic::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }

        .thumbnail-img .smallpic li {
            flex-shrink: 0;
            width: 70px;
            height: 52px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.2s;
        }

        .thumbnail-img .smallpic li.selected {
            border-color: #ff8c00;
        }

        .thumbnail-img .smallpic li img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== 右侧信息 - 完全自适应 ===== */
        .overview .content {
            flex: 1 1 50%;
            min-width: 0;
            width: 100%;
        }

        .overview .content .price {
            display: flex;
            align-items: baseline;
            gap: 6px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f0f0;
            flex-wrap: wrap;
        }

        .overview .content .price .total {
            font-size: 16px;
            font-weight: 600;
            color: #ff4808;
        }

        .overview .content .price .unit {
            font-size: 15px;
            color: #888;
        }

        .overview .content .price .unitPrice {
            font-size: 13px;
            color: #999;
        }

        .overview .content .price .unitPrice i {
            font-style: normal;
        }

        /* ===== 房源信息卡片 - 完全自适应 ===== */
        .overview .content .houseInfo {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding: 12px 0;
            border-bottom: 2px solid #f0f0f0;
        }

        .overview .content .houseInfo .mainInfo {
            font-size: 18px;
            font-weight: 600;
            color: #1a2634;
        }

        .overview .content .houseInfo .subInfo {
            font-size: 12px;
            color: #999;
        }

        /* ===== 周边信息 - 完全自适应 ===== */
        .overview .content .aroundInfo {
            padding: 10px 0;
            border-bottom: 2px solid #f0f0f0;
        }

        .overview .content .aroundInfo > div {
            display: flex;
            padding: 3px 0;
            font-size: 13px;
            flex-wrap: wrap;
        }

        .overview .content .aroundInfo .label {
            color: #999;
            width: 72px;
            flex-shrink: 0;
        }

        .overview .content .aroundInfo .info {
            color: #333;
            word-break: break-all;
            flex: 1;
        }

        /* ===== 经纪人信息 - 横排显示 ===== */
        .overview .content .brokerInfo {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            flex-wrap: nowrap;
        }

        .overview .content .brokerInfo .brokerInfoText0 {
            flex-shrink: 0;
            padding: 10px;
        }

        .overview .content .brokerInfo .brokerInfoText0 img {
            width: 130px;
            height: 160px;
            border-radius: 10%;
            object-fit: cover;
        }

        .overview .content .brokerInfo .brokerInfoText {
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex: 1;
        }

        .overview .content .brokerInfo .brokerInfoText .brokerName {
            font-size: 16px;
            font-weight: 600;
            color: #1a2634;
        }

        .overview .content .brokerInfo .brokerInfoText .phone {
            font-size: 14px;
            color: #555;
            padding: 0;
            line-height: 1.5;
        }

        /* ============================================================
           基本信息 - 完全自适应
           ============================================================ */
        .m-content {
            background: #fff;
            border-radius: 12px;
            padding: 16px;
            margin: 12px auto;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            width: 100%;
            max-width: 1200px;
        }

        .m-content .box-l .newwrap h2 {
            font-size: 17px;
            font-weight: 700;
            color: #1a2634;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0f0f0;
            margin-bottom: 12px;
        }

        .m-content .box-l .newwrap .introContent .base .content {
            font-size: 14px;
            line-height: 1.8;
            color: #555;
        }

        .m-content .box-l .newwrap .introContent .base .content p {
            margin-bottom: 6px;
        }

        .m-content .box-l .newwrap .introContent .disclaimer {
            font-size: 12px;
            color: #999;
            border-top: 1px solid #f0f0f0;
            padding-top: 10px;
            margin-top: 10px;
        }

        /* ============================================================
           推荐房源 - PC端强制3列
           ============================================================ */
        #pushXinfang {
            padding: 30px 0 20px;
            margin: 0 auto;
            max-width: 1200px;
            width: 100%;
        }

        #pushXinfang .xinfangPushTitle {
            font-size: 22px;
            font-weight: 700;
            color: #1a2634;
            margin-bottom: 20px;
            padding: 0 15px;
        }

        #pushXinfang .xinfangPushList {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 24px;
            list-style: none;
            padding: 0 15px;
        }

        #pushXinfang .xinfangPushList .xinfangPushItem {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }

        #pushXinfang .xinfangPushList .xinfangPushItem:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushPic {
            display: block;
            position: relative;
            overflow: hidden;
            height: 200px;
            background: #f0f0f0;
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushPic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushPic:hover img {
            transform: scale(1.06);
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushDescription {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px 16px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushDescription .title {
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushInfo {
            padding: 12px 16px;
            font-size: 13px;
            color: #888;
            background: #fff;
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushInfo .average {
            color: #ff4808;
            font-weight: 600;
        }

        #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushInfo .average span {
            color: #333;
        }

        /* ============================================================
           页脚 - 完全自适应
           ============================================================ */
        .footer-wrapper {
            background: #1a2634;
            color: #ccc;
            padding: 20px 0 10px;
            margin-top: 16px;
            width: 100%;
        }

        .footer-wrapper .f-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 12px;
            gap: 10px;
        }

        .footer-wrapper .f-title ul {
            display: flex;
            list-style: none;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-wrapper .f-title ul li a {
            color: #ccc;
            font-size: 12px;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .footer-wrapper .f-title ul li a:hover {
            color: #fff;
        }

        .footer-wrapper .f-title .pull-right {
            font-size: 12px;
            color: #aaa;
            max-width: 380px;
            text-align: right;
        }

        .footer-wrapper .bottom {
            text-align: center;
            font-size: 11px;
            color: #888;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* ============================================================
           Toast 提示
           ============================================================ */
        .toast-message {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            z-index: 9999;
            max-width: 90%;
            text-align: center;
            animation: toastFadeIn 0.3s ease;
            pointer-events: none;
        }

        @keyframes toastFadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* ============================================================
           移动端适配 - 核心断点
           ============================================================ */

        @media (max-width: 992px) {
            .header .row {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .search {
                max-width: 100%;
                width: 100%;
            }
            .overview .row {
                flex-direction: column;
            }
            .overview .img {
                flex: 1 1 100%;
            }
            .overview .content {
                flex: 1 1 100%;
            }
            .sellDetailHeader .row {
                flex-direction: column;
                align-items: flex-start;
            }
            #pushXinfang .xinfangPushList {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 12px;
            }
            .top-wrapper .row {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
            .channelList {
                gap: 6px;
            }
            .channelList li a {
                font-size: 12px;
            }
            .navbar-right {
                width: 100%;
            }
            .search .input form .inputRightPart .save {
                font-size: 9px;
                padding: 0 6px;
                line-height: 26px;
            }
            .search .input form button {
                font-size: 12px;
                padding: 5px 12px;
                letter-spacing: 1px;
            }
            .search .input form input {
                font-size: 12px;
                padding: 5px 10px;
            }
            .sellDetailHeader .title .main {
                font-size: 17px;
            }
            .sellDetailHeader .btnContainer .action button {
                font-size: 13px;
                padding: 6px 14px;
            }
            .overview .content .brokerInfo {
                flex-wrap: nowrap;
                gap: 12px;
            }
            .overview .content .brokerInfo .brokerInfoText0 img {
                width: 48px;
                height: 48px;
            }
            .overview .content .brokerInfo .brokerInfoText .brokerName {
                font-size: 15px;
            }
            .overview .content .brokerInfo .brokerInfoText .phone {
                font-size: 13px;
            }
            .thumbnail-img .smallpic li {
                width: 56px;
                height: 42px;
            }
            .thumbnail-img .pre,
            .thumbnail-img .next {
                width: 24px;
                height: 24px;
                line-height: 24px;
                font-size: 24px;
            }
            .m-content {
                padding: 12px;
                margin: 10px auto;
                border-radius: 8px;
            }
            .m-content .box-l .newwrap h2 {
                font-size: 16px;
            }
            .m-content .box-l .newwrap .introContent .base .content {
                font-size: 13px;
            }
            #pushXinfang {
                padding: 12px 0;
            }
            #pushXinfang .xinfangPushTitle {
                font-size: 16px;
                padding: 0 10px;
                margin-bottom: 10px;
            }
            #pushXinfang .xinfangPushList {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                padding: 0 1px;
            }
            #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushDescription .title {
                font-size: 13px;
            }
            #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushInfo {
                font-size: 11px;
                padding: 6px 10px;
            }
            .footer-wrapper {
                padding: 16px 0 8px;
            }
            .footer-wrapper .f-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
                padding-bottom: 10px;
            }
            .footer-wrapper .f-title ul {
                gap: 6px;
            }
            .footer-wrapper .f-title ul li a {
                font-size: 11px;
            }
            .footer-wrapper .f-title .pull-right {
                text-align: left;
                max-width: 100%;
                font-size: 11px;
            }
            .footer-wrapper .bottom {
                font-size: 10px;
            }
            .position {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 8px;
            }
            .typeList h1 {
                font-size: 13px;
            }
            .typeList h1 span:first-child {
                font-size: 13px;
            }
            .typeList h1 span:last-child {
                font-size: 10px;
            }
            .logo {
                width: 30px;
                height: 30px;
                margin-right: 6px;
            }
            .search .input form .inputRightPart .save {
                display: none;
            }
            .search .input form button {
                font-size: 12px;
                padding: 5px 12px;
                letter-spacing: 0;
            }
            .search .input form input {
                font-size: 12px;
                padding: 5px 8px;
            }
            .overview {
                padding: 8px;
                margin: 8px auto;
                border-radius: 6px;
            }
            .overview .img .imgContainer {
                padding-bottom: 75%;
            }
            .overview .content .price .total {
                font-size: 20px;
            }
            .overview .content .price .unit {
                font-size: 13px;
            }
            .overview .content .price .unitPrice {
                font-size: 12px;
            }
            .overview .content .houseInfo {
                grid-template-columns: repeat(3, 1fr);
                gap: 4px;
                padding: 8px 0;
            }
            .overview .content .houseInfo .mainInfo {
                font-size: 15px;
            }
            .overview .content .houseInfo .subInfo {
                font-size: 10px;
            }
            .overview .content .aroundInfo > div {
                font-size: 12px;
                padding: 2px 0;
            }
            .overview .content .aroundInfo .label {
                width: 56px;
                font-size: 12px;
            }
            .sellDetailHeader .title .main {
                font-size: 16px;
            }
            .sellDetailHeader .btnContainer .action button {
                font-size: 12px;
                padding: 5px 12px;
            }
            .overview .content .brokerInfo {
                gap: 10px;
            }
            .overview .content .brokerInfo .brokerInfoText0 img {
                width: 102px;
                height: 142px;
            }
            .overview .content .brokerInfo .brokerInfoText .brokerName {
                font-size: 14px;
            }
            .overview .content .brokerInfo .brokerInfoText .phone {
                font-size: 12px;
            }
            .thumbnail-img .smallpic li {
                width: 68px;
                height: 56px;
            }
            .thumbnail-img .pre,
            .thumbnail-img .next {
                width: 30px;
                height: 30px;
                line-height: 20px;
                font-size: 28px;
            }
            .m-content {
                padding: 8px;
                margin: 8px auto;
            }
            .m-content .box-l .newwrap h2 {
                font-size: 15px;
            }
            .m-content .box-l .newwrap .introContent .base .content {
                font-size: 13px;
            }
            #pushXinfang .xinfangPushList {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                padding: 0 8px;
            }
            #pushXinfang .xinfangPushTitle {
                font-size: 15px;
                padding: 0 8px;
            }
            #pushXinfang .xinfangPushList .xinfangPushItem .xinfangPushDescription .title {
                font-size: 12px;
            }
            .footer-wrapper .f-title ul li a {
                font-size: 10px;
            }
            .toast-message {
                font-size: 13px;
                padding: 8px 16px;
                bottom: 60px;
            }
            .position {
                font-size: 11px;
                padding: 4px 0 2px;
            }
        }

        @media (max-width: 380px) {
            .container {
                padding: 0 6px;
            }
            .channelList li a {
                font-size: 11px;
            }
            .typeList h1 {
                font-size: 12px;
            }
            .typeList h1 span:first-child {
                font-size: 12px;
            }
            .typeList h1 span:last-child {
                font-size: 9px;
            }
            .logo {
                width: 26px;
                height: 26px;
            }
            .overview {
                padding: 6px;
                margin: 6px auto;
            }
            .overview .content .houseInfo {
                grid-template-columns: repeat(3, 1fr);
                gap: 2px;
            }
            .overview .content .houseInfo .mainInfo {
                font-size: 13px;
            }
            .overview .content .houseInfo .subInfo {
                font-size: 9px;
            }
            .overview .content .aroundInfo .label {
                width: 48px;
                font-size: 11px;
            }
            .overview .content .aroundInfo > div {
                font-size: 11px;
            }
            .thumbnail-img .smallpic li {
                width: 40px;
                height: 30px;
            }
            .thumbnail-img .pre,
            .thumbnail-img .next {
                width: 18px;
                height: 18px;
                line-height: 18px;
                font-size: 19px;
            }
            #pushXinfang .xinfangPushList {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
                padding: 0 6px;
            }
            .footer-wrapper .f-title ul {
                gap: 4px;
            }
            .footer-wrapper .f-title ul li a {
                font-size: 9px;
            }
        }