  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: #f5f5f5;
            font-family: Arial, sans-serif;
            padding: 10px;
        }
        /* 顶部横幅 */
        .banner {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #7b4397, #dc2430);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        .banner:hover {
            transform: scale(1.01);
        }
        .banner-title {
            font-size: 18px;
            margin-bottom: 20px;
            text-align: center;
        }
        .banner-icon {
            display: flex;
            gap: 30px;
            margin-bottom: 15px;
 
        }
        .banner-icon img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .banner-line {
            width: 60%;
            height: 6px;
            background-color: #555;
            border-radius: 3px;
        }
        /* 提示栏 */
        .tips-bar {
            width: 100%;
            height: 40px;
            background: linear-gradient(90deg, #000, #333);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00ff00;
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 25px;
            padding: 0 10px;
            box-shadow: 0 0 8px rgba(0,255,0,0.5);
            animation: flash 2s infinite alternate;
        }
        @keyframes flash {
            from { box-shadow: 0 0 8px rgba(0,255,0,0.5); }
            to { box-shadow: 0 0 15px rgba(0,255,0,0.8); }
        }
        /* 卡片列表 */
        .card-list {
            display: grid;
            flex-direction: column;
            gap: 15px;
        }
        /* 卡片样式 */
        .card {
            width: 100%;
            height: 70px;
             background: linear-gradient(90deg, #dc2430, #7b4397);
             border-radius: 15px;
             display: flex;
             align-items: center;
             padding: 0 15px;
            color: white;
            position: relative;
            overflow: hidden;
             cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
           
        }
        /* 卡片悬浮效果 */
        .card:hover {
            transform: translateX(5px);
            background: linear-gradient(90deg, #e93b4b, #8a50a7);
            box-shadow: 0 5px 15px rgba(123, 67, 151, 0.4);
        }
        /* 卡片背景水印 */
        .card::after {
            content: "";
            position: absolute;
            right: 20px;
            width: 60px;
            height: 60px;
            <!--background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80' fill='rgba(255,255,255,0.1)'%3E%3Cpath d='M10 20L30 0L50 20L70 0L90 20V80H10V20Z'/%3E%3C/svg%3E");-->
            background-repeat: no-repeat;
            transition: all 0.3s ease;
        }
        .card:hover::after {
            transform: scale(1.1);
            opacity: 0.8;
        }
        .card-avatar {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background-color: #fff;
            margin-right: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .card:hover .card-avatar {
            transform: rotate(5deg);
        }
        .card-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-title {
            font-size: 18px;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        .card:hover .card-title {
            color: #ffeb3b;
        }
        .card-arrow {
            position: absolute;
            right: 20px;
            font-size: 20px;
            color: rgba(255,255,255,0.8);
            transition: all 0.3s ease;
        }
        .card:hover .card-arrow {
            right: 15px;
            color: #fff;
            transform: scale(1.2);
        }