index.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <style>
  2. .profile-avatar-container {
  3. position: relative;
  4. width: 100px;
  5. margin: 0 auto;
  6. }
  7. .profile-avatar-container .profile-user-img {
  8. width: 100px;
  9. height: 100px;
  10. }
  11. .profile-avatar-container .profile-avatar-text {
  12. display: none;
  13. }
  14. .profile-avatar-container:hover .profile-avatar-text {
  15. display: block;
  16. position: absolute;
  17. height: 100px;
  18. width: 100px;
  19. background: #444;
  20. opacity: .6;
  21. color: #fff;
  22. top: 0;
  23. left: 0;
  24. line-height: 100px;
  25. text-align: center;
  26. }
  27. .profile-avatar-container button {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. width: 100px;
  32. height: 100px;
  33. opacity: 0;
  34. }
  35. .panel-heading{font-size: 18px}
  36. </style>
  37. <div class="row animated fadeInRight">
  38. <div class="col-md-12">
  39. <div class="box box-primary">
  40. <div class="panel-body">
  41. <form id="update-form" role="form" data-toggle="validator" method="POST" action="">
  42. {:token()}
  43. <div class="panel-heading">
  44. {:__('基本信息')}
  45. </div>
  46. <div class="box-body box-profile">
  47. <div class="row">
  48. <div class="form-group col-sm-12">
  49. <label class="control-label">{:__('模拟器类型')}:</label>
  50. <select class="form-control" name="row[sim_type]" data-rule="required" style="width: 80%">
  51. <option value="">请选择</option>
  52. {volist name="sim_sim_type" id="vo"}
  53. <option value="{$key}">{$vo}</option>
  54. {/volist}
  55. </select>
  56. </div>
  57. </div>
  58. </div>
  59. <div class="panel-heading">
  60. {:__('注意事项')}
  61. </div>
  62. <div class="box-body box-profile">
  63. <div style="color: rgb(192, 74, 84)">1.遵守考场纪律‌</div>
  64. <div style="color: rgb(192, 74, 84)">2.合理安排时间</div>
  65. </div>
  66. <div class="form-group" style="text-align: center">
  67. <button type="submit" class="btn btn-info">{:__('开始练习')}</button>
  68. <!-- <button type="reset" class="btn btn-default">{:__('Reset')}</button>-->
  69. </div>
  70. </form>
  71. </div>
  72. </div>
  73. </div>
  74. </div>