index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <style type="text/css">
  2. .table_list_box{
  3. overflow: hidden;
  4. margin: 16px;
  5. }
  6. .table_list_box table{
  7. margin: 0;
  8. padding: 0;
  9. width: 100%;
  10. text-align: center;
  11. background-color: #cdcdcd;
  12. }
  13. .table_list_box table th{
  14. margin: 0;
  15. padding: 0;
  16. height: 40px;
  17. font-size: 16px;
  18. color: #333;
  19. line-height: 40px;
  20. background-color: #efefef;
  21. border: 1px solid #ccc;
  22. text-align: center;
  23. }
  24. .table_list_box table td{
  25. margin: 0;
  26. padding: 0;
  27. height: 40px;
  28. font-size: 16px;
  29. color: #333;
  30. line-height: 40px;
  31. background-color: #fff;
  32. border: 1px solid #ccc;
  33. }
  34. .table_tit{
  35. margin: 16px 6px;
  36. overflow: hidden;
  37. background-color: #e5e5e5;
  38. }
  39. .table_tit div{
  40. float: left;
  41. width: 50%;
  42. padding: 30px 20px;
  43. background-color: #fff;
  44. border-left: 10px #fff solid;
  45. border-right: 10px #f1f4f6 solid;
  46. box-sizing: border-box;
  47. }
  48. .table_tit div strong{
  49. display: block;
  50. padding: 0;
  51. margin: 10px 0 0;
  52. font-size: 14px;
  53. color: #333;
  54. font-weight: normal;
  55. line-height: 24px;
  56. }
  57. .table_tit div span{
  58. display: block;
  59. padding: 0;
  60. margin: 6px 0 10px;
  61. font-size: 24px;
  62. color: #333;
  63. font-weight: normal;
  64. line-height: 30px;
  65. }
  66. .table_head_box{
  67. overflow: hidden;
  68. margin: 20px 16px;
  69. }
  70. .table_head_box strong{
  71. float: left;
  72. padding: 6px 10px 6px 0;
  73. font-size: 18px;
  74. color: #333;
  75. font-weight: normal;
  76. line-height: 24px;
  77. }
  78. .table_head_box a{
  79. float: right;
  80. padding: 0 60px;
  81. height: 36px;
  82. background-color: #d7d7d7;
  83. font-size: 16px;
  84. color: #333;
  85. text-decoration: none;
  86. line-height: 36px;
  87. }
  88. </style>
  89. <div class="table_tit">
  90. <div>
  91. <strong>今日赏金金额</strong>
  92. <span>¥{empty name="$todaySum"}0.00{else}{$todaySum}{/empty}</span>
  93. </div>
  94. <div>
  95. <strong>累计赏金金额</strong>
  96. <span>¥{empty name="$totalSum"}0.00{else /}{$totalSum}{/empty}</span>
  97. </div>
  98. </div>
  99. <div class="panel panel-default panel-intro">
  100. {:build_heading()}
  101. <div class="panel-body">
  102. <div id="myTabContent" class="tab-content">
  103. <div class="tab-pane fade active in" id="one">
  104. <div class="widget-body no-padding">
  105. <table id="table" class="table table-striped table-bordered table-hover"
  106. data-operate-edit="true"
  107. data-operate-del="false"
  108. width="100%">
  109. </table>
  110. </div>
  111. </div>
  112. </div>
  113. </div>
  114. </div>