08-split-screen.html 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>登录 - 分屏设计风格</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet">
  9. <style>
  10. body { font-family: 'Plus Jakarta Sans', sans-serif; }
  11. @keyframes slide-up {
  12. from { opacity: 0; transform: translateY(20px); }
  13. to { opacity: 1; transform: translateY(0); }
  14. }
  15. .animate-slide-up { animation: slide-up 0.6s ease-out forwards; }
  16. </style>
  17. </head>
  18. <body class="min-h-screen bg-gray-50">
  19. <div class="min-h-screen flex">
  20. <!-- Left Panel - Branding -->
  21. <div class="hidden lg:flex lg:w-1/2 bg-gradient-to-br from-indigo-600 via-purple-600 to-pink-500 relative overflow-hidden">
  22. <!-- Pattern Overlay -->
  23. <div class="absolute inset-0 opacity-10" style="background-image: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 80 80%22><circle cx=%2240%22 cy=%2240%22 r=%2230%22 fill=%22white%22 fill-opacity=%220.1%22/></svg>'); background-size: 80px 80px;"></div>
  24. <!-- Content -->
  25. <div class="relative z-10 flex flex-col justify-between p-12 w-full">
  26. <!-- Logo -->
  27. <div class="flex items-center gap-3">
  28. <div class="w-12 h-12 bg-white/20 backdrop-blur-sm rounded-xl flex items-center justify-center">
  29. <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
  30. <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
  31. </svg>
  32. </div>
  33. <span class="text-white font-bold text-xl">TG Live</span>
  34. </div>
  35. <!-- Hero Text -->
  36. <div class="animate-slide-up">
  37. <h1 class="text-5xl font-extrabold text-white leading-tight mb-6">
  38. 实时直播<br/>尽在掌控
  39. </h1>
  40. <p class="text-white/80 text-lg max-w-md">
  41. 专业的直播管理平台,让您的内容触达更多观众
  42. </p>
  43. </div>
  44. <!-- Stats -->
  45. <div class="flex gap-12">
  46. <div>
  47. <div class="text-4xl font-bold text-white">10K+</div>
  48. <div class="text-white/60 text-sm mt-1">活跃用户</div>
  49. </div>
  50. <div>
  51. <div class="text-4xl font-bold text-white">99.9%</div>
  52. <div class="text-white/60 text-sm mt-1">在线率</div>
  53. </div>
  54. <div>
  55. <div class="text-4xl font-bold text-white">24/7</div>
  56. <div class="text-white/60 text-sm mt-1">技术支持</div>
  57. </div>
  58. </div>
  59. </div>
  60. <!-- Decorative Circles -->
  61. <div class="absolute -bottom-40 -right-40 w-80 h-80 bg-white/10 rounded-full"></div>
  62. <div class="absolute top-20 -right-20 w-40 h-40 bg-white/10 rounded-full"></div>
  63. </div>
  64. <!-- Right Panel - Login Form -->
  65. <div class="w-full lg:w-1/2 flex items-center justify-center p-8">
  66. <div class="w-full max-w-md">
  67. <!-- Mobile Logo -->
  68. <div class="lg:hidden flex items-center gap-3 mb-8">
  69. <div class="w-10 h-10 bg-indigo-600 rounded-xl flex items-center justify-center">
  70. <svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
  71. <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
  72. </svg>
  73. </div>
  74. <span class="font-bold text-xl text-gray-900">TG Live</span>
  75. </div>
  76. <div class="mb-10">
  77. <h2 class="text-3xl font-bold text-gray-900 mb-2">欢迎回来</h2>
  78. <p class="text-gray-500">请登录您的账户继续</p>
  79. </div>
  80. <!-- Form -->
  81. <form class="space-y-5">
  82. <div>
  83. <label class="block text-gray-700 text-sm font-medium mb-2">用户名</label>
  84. <input type="text" placeholder="请输入用户名"
  85. class="w-full px-4 py-3.5 bg-gray-100 border border-gray-200 rounded-xl text-gray-900 placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent transition-all">
  86. </div>
  87. <div>
  88. <label class="block text-gray-700 text-sm font-medium mb-2">密码</label>
  89. <input type="password" placeholder="请输入密码"
  90. class="w-full px-4 py-3.5 bg-gray-100 border border-gray-200 rounded-xl text-gray-900 placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent transition-all">
  91. </div>
  92. <div class="flex items-center justify-between">
  93. <label class="flex items-center text-gray-600 cursor-pointer">
  94. <input type="checkbox" class="w-4 h-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500 mr-2">
  95. <span class="text-sm">记住我</span>
  96. </label>
  97. <a href="#" class="text-sm text-indigo-600 hover:text-indigo-700 font-medium">忘记密码?</a>
  98. </div>
  99. <button type="submit"
  100. class="w-full py-4 bg-indigo-600 hover:bg-indigo-700 text-white font-semibold rounded-xl transition-colors duration-200 cursor-pointer">
  101. 登 录
  102. </button>
  103. </form>
  104. <!-- Divider -->
  105. <div class="flex items-center my-8">
  106. <div class="flex-1 h-px bg-gray-200"></div>
  107. <span class="px-4 text-gray-400 text-sm">或使用以下方式登录</span>
  108. <div class="flex-1 h-px bg-gray-200"></div>
  109. </div>
  110. <!-- Social Login -->
  111. <div class="grid grid-cols-2 gap-4">
  112. <button class="py-3 px-4 bg-white border border-gray-200 rounded-xl hover:bg-gray-50 transition-colors flex items-center justify-center gap-2 cursor-pointer">
  113. <svg class="w-5 h-5" viewBox="0 0 24 24">
  114. <path fill="#4285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/>
  115. <path fill="#34A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/>
  116. <path fill="#FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/>
  117. <path fill="#EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/>
  118. </svg>
  119. <span class="text-gray-700 font-medium">Google</span>
  120. </button>
  121. <button class="py-3 px-4 bg-gray-900 border border-gray-900 rounded-xl hover:bg-gray-800 transition-colors flex items-center justify-center gap-2 cursor-pointer">
  122. <svg class="w-5 h-5 text-white" viewBox="0 0 24 24" fill="currentColor">
  123. <path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
  124. </svg>
  125. <span class="text-white font-medium">GitHub</span>
  126. </button>
  127. </div>
  128. <!-- Footer -->
  129. <p class="text-center text-gray-500 text-sm mt-8">
  130. 还没有账户?<a href="#" class="text-indigo-600 hover:text-indigo-700 font-medium">立即注册</a>
  131. </p>
  132. </div>
  133. </div>
  134. </div>
  135. </body>
  136. </html>