123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .report {
- padding: 15px;
- font-family: PingFangSC-Regular, PingFang SC;
- &-header {
- background-color: #fff;
- border-radius: 5px;
- padding: 15px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- font-size: 15px;
- .tab {
- display: flex;
- border: solid 1px #1767f2;
- &-item {
- width: 40px;
- height: 28px;
- line-height: 28px;
- text-align: center;
- border-right: solid 1px #1767f2;
- color: #1767f2;
- font-size: 16px;
- &:last-child {
- border-right: none;
- }
- }
- .active {
- background-color: #1767f2;
- color: #fff;
- }
- }
- }
- }
- .total {
- color: #caddfc;
- margin-top: 24px;
- text-align: center;
- font-size: 14px;
- line-height: 17px;
- text {
- color: #fff;
- padding: 0 5px;
- }
- }
|