﻿       *{margin:0;padding:0;box-sizing:border-box;font-family:"微软雅黑", sans-serif}
        body{background:#f5f5f5;font-size:14px;padding-bottom:60px}

        .container {
            max-width: 750px; 
            margin: 0 auto;   
            background: #fff;
            min-height: 100vh;
            box-shadow: 0 0 10px rgba(0,0,0,0.1); 
        }
        a {
            text-decoration: none !important;
            color: inherit;
        }
        @media screen and (max-width: 768px) {
            .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;
        }
        .back{font-size:16px;cursor:pointer}
        .title{flex:1;text-align:center;font-size:18px;font-weight:bold}
        .more{
            font-size:20px;
            cursor:pointer;
            padding:8px;
            margin:-8px;
            position:relative;
            z-index:101;
        }
        .nav-bar{
            position:absolute;
            top:100%;
            right:0;
            background:#fff;
            border-radius:0 0 4px 4px;
            box-shadow:0 2px 10px rgba(0,0,0,0.1);
            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;}
        .primary-nav.active .arrow {transform: rotate(90deg);}
        .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;}


        /* 底部版权 */
        .footer {
            padding: 15px;
            text-align: center;
            color: #999;
            font-size: 13px;
            border-top: 1px solid #eee;
            margin-top: 10px;
        }

        /* 返回顶部 */
        .back-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e63946;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: #c1121f;
            transform: translateY(-3px);
        }

        /* 底部导航 */
        .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; }