invite.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>邀请</title>
  8. <style>
  9. * {
  10. font-family: 'Microsoft YaHei', '微软雅黑', '黑体';
  11. margin: 0;
  12. padding: 0;
  13. }
  14. .main {
  15. margin: 80px auto;
  16. width: 300px;
  17. color: #555;
  18. }
  19. .title{
  20. text-align: center;
  21. font-size: 20px;
  22. color: #999;
  23. line-height: 50px;
  24. border-bottom:#DDD 1px solid;
  25. margin-bottom:5px;
  26. padding: 0 10px;
  27. }
  28. .impoortant{
  29. color: #1E72FF;
  30. }
  31. .hello{
  32. line-height: 40px;
  33. padding: 0 10px;
  34. }
  35. .invite{
  36. line-height: 22px;
  37. padding: 0 10px;
  38. }
  39. .info{
  40. background-color: #EEE;
  41. margin: 20px 0;
  42. padding: 10px;
  43. border-radius: 3px;
  44. }
  45. .info1{
  46. padding-left: 10px;
  47. border-left:#1E72FF 1px solid;
  48. line-height: 18px;
  49. }
  50. .info2{
  51. line-height: 20px;
  52. padding: 10px 0;
  53. }
  54. .info3{
  55. line-height: 20px;
  56. }
  57. .info2 span{
  58. position:relative;
  59. left: 40px;
  60. color:#999;
  61. }
  62. .info3 span{
  63. position:relative;
  64. left: 25px;
  65. color:#999;
  66. }
  67. button{
  68. background-color: #1E72FF;
  69. border: 0;
  70. color: white;
  71. border-radius: 5px;
  72. width: 100%;
  73. height: 40px;
  74. }
  75. </style>
  76. <script>
  77. function join(){
  78. console.log("点击了立即加入,但什么都没有发生");
  79. }
  80. </script>
  81. </head>
  82. <body>
  83. <div class="main">
  84. <div class="title">云模管理平台</div>
  85. <p class="hello">王二小您好!</p>
  86. <p class="invite">陈晨 邀您参与 <span class="impoortant">南京火石闪信网络公司</span>的<span class="impoortant">face水杯</span>项目</p>
  87. <div class="info">
  88. <p class="info1">您的账户信息</p>
  89. <p class="info2">手机号<span>16651112436</span></p>
  90. <p class="info3">初始密码<span>000000</span></p>
  91. </div>
  92. <button onclick="join()">立即加入</button>
  93. </div>
  94. </body>
  95. </html>