1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <style>
- .tab{
- width: 100%;
- height: 600px;
- }
- .tab .tab-1{
- /*background: #408eba;*/
- background-image: linear-gradient(to bottom right, #408eba , steelblue);
- width: 100%;
- height: 80%;
- padding: 30px 30px 0 30px;
- color: white;
- }
- .tab .tab-2{
- background: #ffffff;
- height: 20%;
- width: 100%;
- text-align: right;
- color: grey;
- font-style: italic;
- padding: 0 10px 0 0;
- }
- </style>
- <div class="tab">
- <div class="tab-1">
- <h2>{$user.nickname}</h2>
- <h2>欢迎使用!<i class="fa fa-handshake-o"></i> </h2> <br>
- <span style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display: inline-block;width: 90%;">
- 当前机构:{$user.institution.my_institution_name}
- </span> <br>
- <span>登录时间:{:date('Y-m-d H:i:s', $user.logintime)}</span> <br>
- <span>登录地址:{$user.loginip}</span> <br>
- </div>
- <div class="tab-2">
- <br><br><br><br>
- <span>技术支持:中世康恺科技有限公司</span>
-
- <span>版本信息:3.0</span>
- </div>
- </div>
|