        body {
            font-family: Arial, sans-serif;
            background-color: #ffffff;
            margin: 0;
            padding: 0;
        }
        .content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            background-color: #212121;
            width: 100%;
            margin-bottom: 0;
            position: relative;
        }
        .footer {
            background-color: #212121;
            color: #fff;
            text-align: center;
            padding: 30px 0;
            width: 100%;
        }
        .footer a {
            color: #fcfcfc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: #3a8eef;
            text-decoration: underline;
        }
       .pinyin {
            font-size: 14px;
            color: #1A1D24;
            position: absolute;
            top: 145px;
            left: 33%;
            transform: translateX(-80%);
            text-align: center;
        }
        .content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            background-color:#212121;
            width: 100%;
            margin-bottom: 0;
            position: relative;
        }
        .footer {
            background-color:#212121;
            color: #fff;
            text-align: center;
            padding: 30px 0;
            width: 100%;
        }
        .social-icon {
            width: 60px;
            height: 60px;
            margin: 0 10px;
            filter: grayscale(100%) brightness(1.5);
        }
        .social-icon:hover {
            filter: none;
        }
        /* 特定图标调整 */
        .douyin-icon {
            margin: 0 0 10px 350px;
        }
        .wechat-icon {
            margin: 0 0 10px 40px;
        }
        .kuaishou-icon {
            margin: 0 0 10px 45px;
        }
        .redbook-icon {
            margin: 0 0 10px 50px;
        }

        .social-icon {
            display: inline-block;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: background-image 0.3s ease;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        /* 默认状态 */
        .douyin-icon {
            background-image: url('./image/抖音.png');
        }
        .wechat-icon {
            background-image: url('./image/微信.png');
        }
        .kuaishou-icon {
            background-image: url('./image/快手.png')
        }
        .redbook-icon {
            background-image: url('./image/小红书.png');
        }

        /* 悬停状态 */
        .douyin-icon:hover {
            background-image: url('./image/抖音2.png')
        }
        .wechat-icon:hover {
            background-image: url('./image/微信2.png')
        }
        .kuaishou-icon:hover {
            background-image: url('./image/快手2.png')
        }
        .redbook-icon:hover {
            background-image: url('./image/小红书2.png')
        }
        /* 新增全屏模态框样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(228, 234, 226, 0.5);
            z-index: 9999;
            overflow: auto;
        }
        
        .modal.active {
            display: block;
        }

        .modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }
        .close-btn {
            position: absolute;
            top: 30px;
            right: 40px;
            color: rgb(45, 43, 43);
            font-size: 50px;
            cursor: pointer;
            transition: transform 0.3s;
            z-index: 10000;
        }

        .close-btn:hover {
            transform: scale(1.2);
        }

        .modal img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border: 2px solid white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        }

        /* 防止背景滚动 */
        body.modal-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
            height: 100%;
        }
        /* 响应式设计 */
        @media (max-width: 768px) {
            .content {
                flex-direction: column; /* 在小屏幕上将内容垂直排列 */
                align-items: center;
            }

            .title {
                margin-bottom: 10px;
            }

            .social-icon {
                width: 30px; /* 在小屏幕上减小图标大小 */
                margin: 5px;
            }

            .icon-container {
                justify-content: space-around; /* 图标在一行内均匀分布 */
            }
        }
        /* 新增的底部样式 */
        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
        }
        .footer-item {
            display: flex;
            /* flex-direction: column; */
            align-items: center;
            margin: 0 10px;
        }

    .footer-item img {
    margin: 0 10px; /* 添加一些间距 */
    }
        .footer-logo {
            width: 80px;
            height: auto;
            margin-bottom: 5px;
        }
        .footer-text {
            width: 120px;
            height: auto;
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            .footer-item {
                margin: 10px 0;
            }
            .footer-logo {
                width: 60px;
            }
            .footer-text {
                width: 80px;
            }
        }