 @import url('https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&display=swap');
        
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background: #8B0000;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: transparent;
        }
        
        .company-name {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 24px;
            color: white;
            font-weight: bold;
            background: linear-gradient(to bottom, #FFF, #DDD);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            cursor: pointer;
        }
        
        .top-right-img {
            width: 50px;
            height: 35px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
        }
        
        .content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            margin-top: 80px;
            padding: 20px;
            text-align: center;
            padding-bottom: 80px; /* 为底部版权留出空间 */
        }
        
        .ink-main-text {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 72px;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            margin-bottom: 20px;
        }
        
        .ink-text {
            background: linear-gradient(to bottom, #FFF, #EEE);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            position: relative;
            margin: 0 5px;
        }
        
        .ink-text::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, transparent, white, transparent);
            opacity: 0.6;
        }
        
        .chinese-dot {
            font-size: 50px;
            color: #FFD700;
            margin: 0 5px;
            vertical-align: middle;
        }
        
        .ink-sub-text {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 24px;
            font-weight: bold;
            color: white;
            margin-top: 15px;
            background: linear-gradient(to bottom, #FFF, #DDD);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .profile-image {
            max-width: 80%;
            height: auto;
            margin-top: 30px;
        }
        
        .copyright {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 18px;
            color: white;
            background: linear-gradient(to bottom, #FFF, #DDD);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            text-align: center;
            padding: 20px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 99;
        }
        
        .copyright a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 响应式调整 */
        @media (min-width: 768px) {
            .profile-image {
                max-width: 60%; /* 电脑端显示更大 */
            }
            .ink-main-text {
                font-size: 96px;
            }
            .ink-sub-text {
                font-size: 32px;
            }
        }
        
        /* 泼墨动画效果 */
        @keyframes inkDrop {
            0% { 
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
                text-shadow: 0 0 10px rgba(0,0,0,0);
            }
            50% {
                opacity: 0.8;
                text-shadow: 0 0 15px rgba(0,0,0,0.5);
            }
            100% { 
                opacity: 1;
                transform: translateY(0) scale(1);
                text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            }
        }
        
        .ink-main-text {
            animation: inkDrop 1.2s ease-out forwards;
        }
        
        .ink-sub-text {
            animation: inkDrop 1.2s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        /* 墨迹飞溅效果 */
        .ink-splash {
            position: absolute;
            width: 100px;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q40,20 70,50 T90,50" stroke="%23FFF" stroke-width="1.5" fill="none" opacity="0.3"/></svg>') no-repeat;
            z-index: -1;
        }
        
        .splash-1 {
            top: -15px;
            left: -25px;
            transform: rotate(-10deg);
        }
        
        .splash-2 {
            bottom: -15px;
            right: -25px;
            transform: rotate(10deg);
        }