| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 | <style type="text/css">    .sm-st {        background: #fff;        padding: 20px;        -webkit-border-radius: 3px;        -moz-border-radius: 3px;        border-radius: 3px;        margin-bottom: 20px;        -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.05);        box-shadow: 0 1px 0px rgba(0, 0, 0, 0.05);    }    .sm-st-icon {        width: 60px;        height: 60px;        display: inline-block;        line-height: 60px;        text-align: center;        font-size: 30px;        background: #eee;        -webkit-border-radius: 5px;        -moz-border-radius: 5px;        border-radius: 5px;        float: left;        margin-right: 10px;        color: #fff;    }    .sm-st-info {        font-size: 12px;        padding-top: 2px;    }    .sm-st-info span {        display: block;        font-size: 24px;        font-weight: 600;    }    .orange {        background: #fa8564 !important;    }    .tar {        background: #45cf95 !important;    }    .sm-st .green {        background: #86ba41 !important;    }    .pink {        background: #AC75F0 !important;    }    .yellow-b {        background: #fdd752 !important;    }    .stat-elem {        background-color: #fff;        padding: 18px;        border-radius: 40px;    }    .stat-info {        text-align: center;        background-color: #fff;        border-radius: 5px;        margin-top: -5px;        padding: 8px;        -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.05);        box-shadow: 0 1px 0px rgba(0, 0, 0, 0.05);        font-style: italic;    }    .stat-icon {        text-align: center;        margin-bottom: 5px;    }    .st-red {        background-color: #F05050;    }    .st-green {        background-color: #27C24C;    }    .st-violet {        background-color: #7266ba;    }    .st-blue {        background-color: #23b7e5;    }    .stats .stat-icon {        color: #28bb9c;        display: inline-block;        font-size: 26px;        text-align: center;        vertical-align: middle;        width: 50px;        float: left;    }    .stat {        white-space: nowrap;        overflow: hidden;        text-overflow: ellipsis;        display: inline-block;        margin-right: 10px;    }    .stat .value {        font-size: 20px;        line-height: 24px;        overflow: hidden;        text-overflow: ellipsis;        font-weight: 500;    }    .stat .name {        overflow: hidden;        text-overflow: ellipsis;    }    .stat.lg .value {        font-size: 26px;        line-height: 28px;    }    .stat.lg .name {        font-size: 16px;    }    .stat-col .progress {        height: 2px;    }    .stat-col .progress-bar {        line-height: 2px;        height: 2px;    }    .item {        padding: 30px 0;    }    .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {        z-index: 2;        color: #ffffff;        background-color: #1f8064;        border-color: #1f8064;    }    .centerstate{        text-align: center;    }</style><div class="panel panel-default panel-intro">    <div class="panel-body">        <div id="myTabContent" class="tab-content">            <div class="row">                <div class="panel panel-success">                    <ul class="list-group">                        <li class="list-group-item active">                            <div class="row">                                <div class="col-xs-12 centerstate" style="width:20%">座次</div>                                <div class="col-xs-12 centerstate" style="width:20%">学员账号</div>                                <div class="col-xs-12 centerstate" style="width:20%">学员姓名</div>                                <div class="col-xs-12 centerstate" style="width:20%">开始考试时间</div>                                <div class="col-xs-12 centerstate" style="width:20%">结束考试时间</div>                            </div>                        </li>                        {volist name="list"  id="vo"}                        <li class="list-group-item " >                            <div class="row">                                <div class="col-xs-12 centerstate" style="width:20%">{$vo.seat_id}</div>                                <div class="col-xs-12 centerstate" style="width:20%">{$vo.user_username}</div>                                <div class="col-xs-12 centerstate " style="width:20%" >{$vo.user_nickname}</div>                                <div class="col-xs-12 centerstate " style="width:20%" >{$vo.start_time}</div>                                <div class="col-xs-12 centerstate " style="width:20%" >{$vo.end_time}</div>                            </div>                        </li>                        {/volist}                    </ul>                </div>            </div>        </div>    </div></div>
 |