123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <style type="text/css">
- .table_list_box{
- overflow: hidden;
- margin: 16px;
- }
- .table_list_box table{
- margin: 0;
- padding: 0;
- width: 100%;
- text-align: center;
- background-color: #cdcdcd;
- }
- .table_list_box table th{
- margin: 0;
- padding: 0;
- height: 40px;
- font-size: 16px;
- color: #333;
- line-height: 40px;
- background-color: #efefef;
- border: 1px solid #ccc;
- text-align: center;
- }
- .table_list_box table td{
- margin: 0;
- padding: 0;
- height: 40px;
- font-size: 16px;
- color: #333;
- line-height: 40px;
- background-color: #fff;
- border: 1px solid #ccc;
- }
- .table_tit{
- margin: 16px 6px;
- overflow: hidden;
- background-color: #e5e5e5;
- }
- .table_tit div{
- float: left;
- width: 50%;
- padding: 30px 20px;
- background-color: #fff;
- border-left: 10px #fff solid;
- border-right: 10px #f1f4f6 solid;
- box-sizing: border-box;
- }
- .table_tit div strong{
- display: block;
- padding: 0;
- margin: 10px 0 0;
- font-size: 14px;
- color: #333;
- font-weight: normal;
- line-height: 24px;
- }
- .table_tit div span{
- display: block;
- padding: 0;
- margin: 6px 0 10px;
- font-size: 24px;
- color: #333;
- font-weight: normal;
- line-height: 30px;
- }
- .table_head_box{
- overflow: hidden;
- margin: 20px 16px;
- }
- .table_head_box strong{
- float: left;
- padding: 6px 10px 6px 0;
- font-size: 18px;
- color: #333;
- font-weight: normal;
- line-height: 24px;
- }
- .table_head_box a{
- float: right;
- padding: 0 60px;
- height: 36px;
- background-color: #d7d7d7;
- font-size: 16px;
- color: #333;
- text-decoration: none;
- line-height: 36px;
- }
- </style>
- <div class="table_tit">
- <div>
- <strong>今日赏金金额</strong>
- <span>¥{empty name="$todaySum"}0.00{else}{$todaySum}{/empty}</span>
- </div>
- <div>
- <strong>累计赏金金额</strong>
- <span>¥{empty name="$totalSum"}0.00{else /}{$totalSum}{/empty}</span>
- </div>
- </div>
- <div class="panel panel-default panel-intro">
- {:build_heading()}
- <div class="panel-body">
- <div id="myTabContent" class="tab-content">
- <div class="tab-pane fade active in" id="one">
- <div class="widget-body no-padding">
- <table id="table" class="table table-striped table-bordered table-hover"
- data-operate-edit="true"
- data-operate-del="false"
- width="100%">
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|