| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* components/dk-table/dk-table.wxss */
- .top-data {
- background: linear-gradient(180deg, #D9F2F8 0%, #FAFEFF 100%);
- border-radius: 15rpx 15rpx 0px 0px;
- display: flex;
- padding: 34rpx 0;
- }
- .top-data>view:nth-child(n) {
- text-align: center;
- }
- .top-data>view:nth-child(n)>view:nth-child(1) {
- margin-bottom: 10rpx;
- font-family: 'PingFang HK';
- font-style: normal;
- font-weight: 600;
- font-size: 20px;
- color: #1B365D;
- }
- .top-data>view:nth-child(n)>view:nth-child(2) {
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 12px;
- color: #95A8CB;
- }
- .top-data>view:nth-child(n+2) {
- border-left: 1px solid #ABC6CC;
- }
- .header {
- display: flex;
- width: calc(100% - 38rpx);
- background: #fff;
- padding: 0 19rpx;
- }
- .header>view:nth-child(n) {
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 10px;
- line-height: 40px;
- color: #00A7B5;
- }
- .cell {
- font-family: 'PingFang HK';
- font-style: normal;
- font-weight: 400;
- font-size: 13px;
- color: #1B365D;
- padding: 15rpx 10rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|