* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        body{
            line-height: 1.6;
        }
        
        /* 顶部用户栏样式 */
        .top-bar {
            background-color: white;
            height: 40px;
            line-height: 40px;
            padding: 0 30px;
        }
        
        .top-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }
        
        .top-left {
            display: flex;
            gap: 20px;
        }
        
        .top-left a {
            color: #666;
            text-decoration: none;
            font-size: 12px;
        }
        
        .top-left .user-info {
            color: #f37b1d;
            font-weight: bold;
        }
        
        .top-right {
            display: flex;
            gap: 25px;
        }
        
        .top-right a {
            color: #666;
            text-decoration: none;
            font-size: 12px;
        }
        
        /* 主头部容器 - 添加背景图片 */
        .main-header-wrapper {
            background-image: url('/static/img/顶部背景.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 20px 0;
        }
        
        /* 主头部样式 */
        .main-header {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
            position: relative;
            z-index: 1;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 15px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
            border: 2px solid #fff;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .logo-img:hover {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
        }
        
        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            mix-blend-mode: multiply;
        }
        
        .logo-text {
            margin-right: 10px;
        }
        
        .logo-text h1 {
            color: #22c55e;
            font-size: 28px;
            line-height: 1.2;
            font-weight: 700;
        }
        
        .logo-text .english {
            color: #f37b1d;
            font-size: 16px;
        }
        
        .logo-slogan {
            color: #666;
            font-size: 12px;
            margin-top: 5px;
        }
        
        /* 搜索区域样式 */
        .search-area {
            display: flex;
            align-items: stretch;
            width: 500px;
            margin: 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .search-area:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
        }
        
        .search-area form {
            display: flex;
            align-items: stretch;
            width: 100%;
            margin: 0;
            padding: 0;
            position: relative;
        }
        
        .search-select {
            height: 45px;
            border: 2px solid #22c55e;
            border-right: none;
            border-radius: 25px 0 0 25px;
            padding: 0 15px;
            background-color: white;
            color: #333;
            outline: none;
            margin: 0;
            box-sizing: border-box;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .search-select:hover {
            background-color: #f8f9fa;
        }
        
        .search-select:focus {
            border-color: #16a34a;
            background-color: white;
        }
        
        .search-input {
            height: 45px;
            flex: 1;
            border: 2px solid #22c55e;
            border-right: none;
            border-left: none;
            padding: 0 15px;
            outline: none;
            background-color: white;
            margin: 0;
            box-sizing: border-box;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .search-input::placeholder {
            color: #9ca3af;
            transition: opacity 0.3s ease;
        }
        
        .search-input:focus {
            border-color: #16a34a;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .search-input:focus::placeholder {
            opacity: 0.6;
        }
        
        .search-btn {
            height: 45px;
            padding: 0 25px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            border: 2px solid #22c55e;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
            margin: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
            box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
        }
        
        .search-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
        }
        
        .hot-search {
            margin-top: 12px;
            display: flex;
            gap: 5px;
            font-size: 13px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .hot-search::before {
            content: "热门搜索：";
            color: #9ca3af;
            font-size: 12px;
        }
        
        .hot-search a {
            color: #666;
            text-decoration: none;
            padding: 4px 8px;
            border-radius: 12px;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
            font-size: 12px;
            position: relative;
            overflow: hidden;
        }
        
        .hot-search a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .hot-search a:hover {
            color: #22c55e;
            text-decoration: none;
            background-color: #e8f5e9;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(34, 197, 94, 0.15);
        }
        
        .hot-search a:hover::after {
            left: 100%;
        }
        
        /* 为热门搜索词添加不同的动画延迟，增强动感 */
        .hot-search a:nth-child(2) { transition-delay: 0.05s; }
        .hot-search a:nth-child(3) { transition-delay: 0.1s; }
        .hot-search a:nth-child(4) { transition-delay: 0.15s; }
        .hot-search a:nth-child(5) { transition-delay: 0.2s; }
        .hot-search a:nth-child(6) { transition-delay: 0.25s; }
        .hot-search a:nth-child(7) { transition-delay: 0.3s; }
        .hot-search a:nth-child(8) { transition-delay: 0.35s; }
        .hot-search a:nth-child(9) { transition-delay: 0.4s; }
        
        /* 右侧功能区 */
        .header-right {
            display: flex;
            align-items: center;
            gap: 6px;

        }
        
        .开店-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            color: #333;
            padding: 12px 32px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            line-height: 1.5;
            vertical-align: middle;
            font-family: "Microsoft YaHei", sans-serif;
            border-radius: 50px;
            background: white;
            border: 1px solid #ccc;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .开店-btn:hover {
            border-color: #999;
            background: #f9f9f9;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
        }
        
        .开店-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        

        
        .qr-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        
        .qr-card-img {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }
        
        .qr-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .qr-card-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .qr-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }
        
        .qr-desc {
            font-size: 12px;
            color: #666;
        }
        

        
        /* 导航栏样式 */
        .nav-bar {
            border-top: 1px solid #eee;
            border-bottom: 2px solid #22c55e;
            margin:0 0 20px;
            background-color: white;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-item a {
            display: inline-block;
            padding: 12px 25px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
        }
        
        .nav-item a:hover {
            color: #22c55e;
        }
        
        .nav-item.active a {
            color: #22c55e;
            font-weight: bold;
        }
        
        .nav-item.active a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #22c55e;
        }
        
        .tag {
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 10px;
            color: white;
            background-color: #f37b1d;
            padding: 1px 3px;
            border-radius: 2px;
        }
        button{
            font-size: 100%;
        }