﻿        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            font-size: 14px;
            padding-bottom: 60px;
        }
        a { text-decoration: none; color: inherit; }
        ul, li { list-style: none; }

        .responsive-container {
            max-width: 750px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        @media screen and (max-width: 768px) {
            .responsive-container {
                max-width: 100%;
                box-shadow: none;
                margin: 0;
            }
        }

        .header {
            background-color: #e63946;
            color: white;
            padding: 15px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
         	position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .header .back {
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }
        .header .title {
            font-size: 18px;
            font-weight: bold;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .header .more {
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            margin: -8px;
            position: relative;
            z-index: 101;
        }

        .nav-bar {
            position: absolute;
            top: 100%;
            right: 10px;
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 160px;
            display: none;
            z-index: 99;
            overflow: hidden;
        }
        .nav-bar.show { display: block; }

        .nav-item {
            padding: 12px 16px;
            color: #333; /* 确保文字为深色 */
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
        }
        .nav-item i { margin-right: 8px; color: #e63946; width: 16px; text-align: center; }
        .nav-item:hover { background: #f5f5f5; padding-left: 20px; }
        .primary-nav {
            position: relative;
        }
        .nav-toggle {
            display: flex;
            align-items: center;
            background-color: #fff;
            border: 1px solid #ddd;
            padding: 12px 16px; /* 与其他导航项保持一致 */
            cursor: pointer;
            border-radius: 0; /* 与整体风格一致 */
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: #333; /* 确保文字为深色 */
            font-size: 14px; /* 与其他导航项保持一致 */
        }

        .arrow {
            margin-left: auto;
            color: #999;
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        .primary-nav.active .arrow {
            transform: rotate(90deg);
        }
        .nav-toggle:hover {
            background-color: #f5f5f5;
        }

        .secondary-nav {
            position: static; /* 改为静态定位，避免覆盖其他项 */
            background-color: #f8f9fa;
            width: 100%;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
            border-top: 1px solid #eee;
            display: none;
            padding: 0;
            z-index: 100;
        }
        .primary-nav.active .secondary-nav {
            display: block;
        }
        .secondary-nav li {
            list-style: none;
            padding: 10px 16px 10px 32px; /* 增加缩进 */
            color: #333;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .secondary-nav li:hover {
            background-color: #f5f5f5;
            padding-left: 36px;
        }
        .notice {
            background-color: #fff8e1;
            color: #333;
            padding: 10px;
            border-bottom: 1px solid #eee;
            font-size: 16px;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card {
            background: #fff;
            margin: 10px;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .member-item {
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        .member-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .member-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        .member-avatar {
            width: 60px;
            height: 60px;
            background-color: #e0e0e0;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 12px;
            margin-right: 10px;
            flex-shrink: 0;
        }
        .member-main {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .member-title {
            font-size: 16px;
            font-weight: bold;
            color: #0056b3;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        .member-title .tag {
            background-color: #ff6b6b;
            color: white;
            font-size: 10px;
            padding: 1px 4px;
            border-radius: 2px;
            margin-left: 5px;
        }
        .member-contact {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-top: 5px;
        }
        .member-phone {
            font-size: 15px;
            color: #e63946;
            font-weight: bold;
        }
        .call-btn {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        .member-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
        }
        .member-type {
            background-color: #d1e7dd;
            color: #5a3e0b;
            font-size: 16px;
            padding: 2px 8px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            font-weight: bold;
            letter-spacing: 2px;
        }
        .member-category {
            border: 1px solid #ced4da;
            color: #495057;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 3px;
            display: flex;
            align-items: center;
        }
        .member-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
            margin: 10px 0;
            text-align: justify;
        }
        .member-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #999;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .member-footer .views, .member-footer .date {
            display: flex;
            align-items: center;
        }
        .tags-section {
            padding: 10px;
        }
        .section-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            border-left: 4px solid #e63946;
            padding-left: 8px;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-item {
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            color: white;
            background-color: #6c757d;
            font-weight: 500;
        }
        .tag-item:nth-child(5n+1) { background-color: #0d6efd; }
        .tag-item:nth-child(5n+2) { background-color: #198754; }
        .tag-item:nth-child(5n+3) { background-color: #dc3545; }
        .tag-item:nth-child(5n+4) { background-color: #ffc107; color: #000; }
        .tag-item:nth-child(5n+5) { background-color: #6610f2; }
        .bottom-fixed {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            display: flex;
            border-top: 1px solid #eee;
            padding: 5px 0;
            z-index: 10;
        }
        .bottom-item {
            flex: 1;
            text-align: center;
            font-size: 12px;
            color: #666;
        }
        .bottom-item i {
            font-size: 18px;
            display: block;
            margin-bottom: 2px;
        }
        .bottom-item.active { color: #e63946; }
        .back-to-top {
            position: fixed;
            bottom: 80px;
            right: 15px;
            width: 40px;
            height: 40px;
            background-color: #e63946;
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            cursor: pointer;
            z-index: 99;
            transition: all 0.3s ease;
        }
        .back-to-top.show { display: flex; }
        .back-to-top:hover {
            transform: scale(1.1);
            background-color: #c1121f;
        }
        .copyright {
            text-align: center;
            font-size: 12px;
            color: #999;
            margin-top: 20px;
        }
        .tab-im {
            text-decoration: none;
        }
		.tab-icon i {
    font-size: 30px;
    color: inherit;
}