123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .overview {
- padding: 15px;
- &-tabs {
- width: 100%;
- border: solid 1px #fff;
- display: flex;
- justify-content: space-between;
- border-radius: 5px;
- margin-bottom: 18px;
- &-item {
- width: 50%;
- text-align: center;
- line-height: 49px;
- color: #fff;
- font-size: 20px;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- .active {
- background-color: #fff;
- color: #434343;
- }
- }
- &-content {
- padding: 26px 15px;
- background-color: #fff;
- border-radius: 5px;
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 15px;
- background-color: #edf3ff;
- border-radius: 5px;
- margin-bottom: 10px;
- &:last-child {
- margin-bottom: 0;
- }
- .title {
- color: #535353;
- font-size: 15px;
- font-family: PingFangSC-Regular, PingFang SC;
- margin-bottom: 5px;
- }
- &-right {
- width: 60px;
- height: 35px;
- line-height: 35px;
- text-align: center;
- font-size: 30px;
- font-weight: bold;
- }
- }
- }
- }
|