|
@@ -1,43 +1,50 @@
|
|
|
-.history-table-wrap{
|
|
|
- position: absolute;
|
|
|
- width: 668rpx;
|
|
|
- left: 50%;
|
|
|
- margin-left: -334rpx;
|
|
|
- top: 70rpx;
|
|
|
- overflow-y: scroll;
|
|
|
- overflow-x: hidden;
|
|
|
- }
|
|
|
- /* 表格代码 */
|
|
|
- .table{
|
|
|
- border:1px solid #dadada;
|
|
|
- border-right:0;
|
|
|
- border-bottom: 0;
|
|
|
- width: 98%;
|
|
|
- margin-left: 1%;
|
|
|
- }
|
|
|
- .tr{
|
|
|
- width:100%;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- overflow-x: scroll;
|
|
|
- }
|
|
|
- .th,.td{
|
|
|
- padding: 10px;
|
|
|
- border-bottom: 1px solid #dadada;
|
|
|
- border-right: 1px solid #dadada;
|
|
|
- text-align: center;
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
- .th1,.th2,.td1,.td2{
|
|
|
- width: 50%;
|
|
|
- }
|
|
|
- .th{
|
|
|
- font-weight: 800;
|
|
|
- background-color: #dadada;
|
|
|
- font-size: 12rpx;
|
|
|
- color: #330e0e;
|
|
|
- }
|
|
|
- .td{
|
|
|
- font-size: 14rpx;
|
|
|
- /* color: #ec9480; */
|
|
|
- }
|
|
|
+.ranking {
|
|
|
+ margin: 0 0 2vw 0;
|
|
|
+}
|
|
|
+.ranking .name {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: bold;
|
|
|
+ padding: 2vw;
|
|
|
+ background-color: #39434d;
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.ranking .view_1 {
|
|
|
+ width: 96vw;
|
|
|
+ margin: 0 0 2vw 0;
|
|
|
+}
|
|
|
+/* 表格代码 */
|
|
|
+.table {
|
|
|
+ border: 1px solid #dadada;
|
|
|
+ border-right: 0;
|
|
|
+ border-bottom: 0;
|
|
|
+ width: 95.6vw;
|
|
|
+}
|
|
|
+.tr {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ overflow-x: scroll;
|
|
|
+}
|
|
|
+.th,
|
|
|
+.td {
|
|
|
+ padding: 10px;
|
|
|
+ border-bottom: 1px solid #dadada;
|
|
|
+ border-right: 1px solid #dadada;
|
|
|
+ border-left: 1px solid #dadada;
|
|
|
+ text-align: center;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.th1,
|
|
|
+.th2,
|
|
|
+.td1,
|
|
|
+.td2 {
|
|
|
+ width: 50%;
|
|
|
+}
|
|
|
+.th {
|
|
|
+ font-size: 13px;
|
|
|
+ font-weight: 800;
|
|
|
+}
|
|
|
+.td {
|
|
|
+ font-size: 13px;
|
|
|
+}
|