 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: #fff;
            color: #333;
            min-height: 100vh;
        }
        
        .context {
            width: 100%;
            height: auto;
            opacity: 1;
            background: linear-gradient(180deg, rgba(23, 174, 255, 1) 0%, rgba(33, 211, 255, 0) 100%);
        }
        
        .logo {
            height: 78px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .logo_con {
            width: 1360px;
            height: 78px;
            display: flex;
            align-items: center;
            margin: 0 auto;
        }
        
        .logo_right {
            margin-left: auto;
            display: flex;
            align-items: center;
        }
        
        .logo_right span {
            font-size: 14px;
            font-weight: 400;
            margin-left: 6px;
            color: rgba(255, 255, 255, 1);
        }
        
        .banner {
            width: auto;
            text-align: center;
            padding: 40px 0;
        }
        
        .banner img {
            max-width: 90%;
            height: auto;
        }
        
        .user {
            width: 100%;
            padding: 40px 0;
        }
        
        .user_title {
            width: 100%;
            height: 72px;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .user_title img {
            width: 216px;
            height: 72px;
        }
        
        .user_con {
            width: auto;
            height: auto;
            margin: 0 auto 100px;
            position: relative;
            overflow: hidden;
        }
        
        .user_list_container {
            display: flex;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .user_list {
            width: 430px;
            height: 154px;
            background: 
                linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
                linear-gradient(90deg, rgba(33, 211, 255, 1) 0%, rgba(48, 173, 240, 1) 100%) border-box;
            border: 2px solid transparent;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 24px;
            border-radius: 16px;
            overflow: hidden;
            flex-shrink: 0;
            margin: 0 15px;
        }
        
        .top {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
        }
        
        .top img {
            width: 46px;
            height: 46px;
            border-radius: 46px;
            margin-right: 8px;
        }
        
        .top div p {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
            line-height: 24px;
            color: rgba(26, 26, 26, 1);
        }
        
        .top div span {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            line-height: 22px;
            color: rgba(143, 143, 143, 1);
        }
        
        .bottom {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1px;
            line-height: 24px;
            color: rgba(143, 143, 143, 1);
            text-align: justify;
            vertical-align: top;
            margin-top: 12px;
            /* 两行省略号样式 */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }
        
        .gn {
            width: 1360px;
            margin: 0 auto 100px;
        }
        
        .gn img {
            width: 100%;
        }
        
        .foot {
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #eee;
        }
        .foot_con{
            width: 1360px;
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0 auto;
        }
        .foot_con span {
            color: #666;
            font-size: 14px;
        }
        
        .foot_con p {
            color: #30ADF0;
            font-size: 14px;
            cursor: pointer;
        }
        .foot_con p a{
            color: #30ADF0;
        }
        /* 滚动动画 */
        .scroll-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .scroll-row {
            display: flex;
            width: max-content;
        }
        
        .scroll-left {
            animation: scrollLeft 90s linear infinite;
        }
        
        .scroll-right {
            animation: scrollRight 90s linear infinite;
        }
        
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        @keyframes scrollRight {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 1400px) {
            .logo_con, .gn, .foot {
                width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .user_list {
                width: 300px;
            }
            
            .logo_con, .gn, .foot {
                width: 95%;
            }
            
            .foot {
                flex-direction: column;
                height: auto;
                padding: 20px 0;
                text-align: center;
            }
            
            .foot span {
                margin-bottom: 10px;
            }
        }