.wechat-service-page { min-height: 100vh; .service-tabs { background-color: #fff; .nut-tabs__titles { background-color: #fff; } .nut-tabs__content { padding: 0; } } .qr-container { padding: 20px; min-height: calc(100vh - 100px); .qr-header { text-align: center; margin-bottom: 30px; .qr-title { display: block; font-weight: bold; color: #333; margin-bottom: 8px; } .qr-description { display: block; color: #666; line-height: 1.5; } } .qr-content { display: flex; flex-direction: column; align-items: center; gap: 30px; .qr-code-wrapper { background-color: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); text-align: center; .qr-code-image { width: 360px; height: 360px; border-radius: 8px; margin-bottom: 15px; } .wechat-id { display: block; color: #333; font-weight: 500; } } .qr-tips { background-color: #fff; border-radius: 12px; padding: 20px; width: 100%; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); .tip-title { display: block; font-weight: bold; color: #333; margin-bottom: 15px; } .tip-item { display: block; color: #666; line-height: 1.8; margin-bottom: 8px; padding-left: 10px; position: relative; &:before { content: '•'; color: #07c160; font-weight: bold; position: absolute; left: 0; } &:last-child { margin-bottom: 0; } } } } } } // 响应式适配 @media (max-width: 375px) { .wechat-service-page { .qr-container { padding: 15px; .qr-content { .qr-code-wrapper { padding: 20px; .qr-code-image { width: 180px; height: 180px; } } } } } } // 深色模式适配 @media (prefers-color-scheme: dark) { .wechat-service-page { background-color: #1a1a1a; .service-tabs { .nut-tabs__titles { background-color: #2a2a2a; border-bottom-color: #333; } } .qr-container { background-color: #1a1a1a; .qr-header { .qr-title { color: #fff; } .qr-description { color: #ccc; } } .qr-content { .qr-code-wrapper { background-color: #2a2a2a; .qr-code-image { border-color: #444; } .wechat-id { color: #fff; } } .qr-tips { background-color: #2a2a2a; .tip-title { color: #fff; } .tip-item { color: #ccc; } } } } } }