index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <style>
  2. .tab{
  3. width: 100%;
  4. height: 600px;
  5. }
  6. .tab .tab-1{
  7. /*background: #408eba;*/
  8. background-image: linear-gradient(to bottom right, #408eba , steelblue);
  9. width: 100%;
  10. height: 80%;
  11. padding: 30px 30px 0 30px;
  12. color: white;
  13. }
  14. .tab .tab-2{
  15. background: #ffffff;
  16. height: 20%;
  17. width: 100%;
  18. text-align: right;
  19. color: grey;
  20. font-style: italic;
  21. padding: 0 10px 0 0;
  22. }
  23. </style>
  24. <div class="tab">
  25. <div class="tab-1">
  26. <h2>{$user.nickname}</h2>
  27. <h2>欢迎使用!<i class="fa fa-handshake-o"></i> </h2> <br>
  28. <span style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display: inline-block;width: 90%;">
  29. 当前机构:{$user.institution.my_institution_name}
  30. </span> <br>
  31. <span>登录时间:{:date('Y-m-d H:i:s', $user.logintime)}</span> <br>
  32. <span>登录地址:{$user.loginip}</span> <br>
  33. </div>
  34. <div class="tab-2">
  35. <br><br><br><br>
  36. <span>技术支持:中世康恺科技有限公司</span>
  37. &nbsp;&nbsp;&nbsp;&nbsp;
  38. <span>版本信息:3.0</span>
  39. </div>
  40. </div>