invite.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-weight: 600;
  22. font-size: 20px;
  23. color: #1E72FF;
  24. line-height: 50px;
  25. border-bottom:#DDD 1px solid;
  26. margin-bottom:5px;
  27. padding: 0 10px;
  28. }
  29. .impoortant{
  30. color: #1E72FF;
  31. }
  32. .hello{
  33. line-height: 40px;
  34. padding: 0 10px;
  35. }
  36. .invite{
  37. line-height: 22px;
  38. padding: 0 10px;
  39. }
  40. .info{
  41. background-color: #EEE;
  42. margin: 20px 0;
  43. padding: 10px;
  44. border-radius: 3px;
  45. }
  46. .info1{
  47. padding-left: 10px;
  48. border-left:#1E72FF 1px solid;
  49. line-height: 18px;
  50. }
  51. .info2{
  52. line-height: 20px;
  53. padding: 10px 0;
  54. }
  55. .info3{
  56. line-height: 20px;
  57. }
  58. .info2 span{
  59. position:relative;
  60. left: 40px;
  61. color:#999;
  62. }
  63. .info3 span{
  64. position:relative;
  65. left: 25px;
  66. color:#999;
  67. }
  68. button{
  69. background-color: #1E72FF;
  70. border: 0;
  71. color: white;
  72. border-radius: 5px;
  73. width: 100%;
  74. height: 40px;
  75. }
  76. </style>
  77. <script>
  78. function join(){
  79. console.log("点击了立即加入,但什么都没有发生");
  80. }
  81. </script>
  82. </head>
  83. <body>
  84. <div class="main">
  85. <div class="title">云模管理平台</div>
  86. <p class="hello">王二小您好!</p>
  87. <p class="invite">陈晨 邀您参与 <span class="impoortant">南京火石闪信网络公司</span>的<span class="impoortant">face水杯</span>项目</p>
  88. <div class="info">
  89. <p class="info1">您的账户信息</p>
  90. <p class="info2">手机号<span>16651112436</span></p>
  91. <p class="info3">初始密码<span>000000</span></p>
  92. </div>
  93. <button onclick="join()">立即加入</button>
  94. </div>
  95. </body>
  96. </html>