body {
            padding-top: 50px;
            padding-bottom: 80px;
        }

        .page-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 10px;
        }

        /* 页面说明区域 */
        .page-intro {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 18px;
            color: var(--white);
            margin-bottom: 10px;
        }

        .intro-title {
            font-size: var(--font-2xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--spacing-md);
            text-align: center;
            color: #333;
        }

        .intro-desc {
            font-size: var(--font-sm);
            line-height: var(--line-height-relaxed);
            opacity: 0.95;
            color: #333;
            text-align: center;
        }

        /* 导航网格 */
        .nav-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            margin-bottom:10px;
        }

.nav-card-ri{
  margin-right: var(--spacing-lg);
}
.nav-card-bo{
  margin-bottom: var(--spacing-lg);
}
        .nav-card {
            background: var(--bg-white);
            border-radius:10px;
            padding: 15px;
            box-shadow: var(--shadow-md);
            text-decoration: none;
            color: var(--text-primary);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
/*
        .nav-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            transform: scaleX(0);
            transition: transform var(--transition-base);
        }

        .nav-card:active {
            transform: scale(0.98);
            box-shadow: var(--shadow-lg);
        }

        .nav-card:active::before {
            transform: scaleX(1);
        }
*/
        .nav-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--bg-pink-light), var(--bg-pink-lighter));
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-base);
        }

        .nav-card:active .nav-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        }

        .nav-icon svg {
            width: 32px;
            height: 32px;
            color: var(--primary-color);
            transition: all var(--transition-base);
        }

        .nav-card:active .nav-icon svg {
            color: var(--white);
        }

        .nav-info {
            margin-top: 10px;
            text-align: center;
            width: 100%;
        }

        .nav-title {
            font-size: var(--font-lg);
            font-weight: var(--font-semibold);
            color: var(--text-primary);
            margin-bottom: var(--spacing-xs);
        }

        .nav-desc {
            font-size: var(--font-xs);
            color: var(--text-secondary);
            line-height: var(--line-height-relaxed);
        }

        /* 提示卡片 */
        .tips-card {
            background: var(--bg-gradient-light);
            border-radius: 10px;
            padding: 15px;
            border: 0px solid var(--bg-pink-lighter);
            box-shadow: var(--shadow-md);
            margin-top: 15px;
        }

        .tips-title {
            font-size: var(--font-base);
            font-weight: var(--font-semibold);
            color: #f9a31a;
            margin-bottom: var(--spacing-md);
            display: flex;
            align-items: center;
        }

        .tips-title svg {
            width: 20px;
            height: 20px;
            margin-right:2px;
        }

        .tips-list {
            list-style: none;
            display: flex;
            flex-direction: column;
/*            gap: var(--spacing-sm);*/
        }

        .tips-list li {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            position: relative;
            line-height: var(--line-height-relaxed);
           
        }
        .tipslistli{
             margin-bottom:  var(--spacing-sm);
        }
        .tipslistli:last-child {
            margin-bottom: 0;
            }

