1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .table {
- padding: 19px 15px;
- background-color: #fff;
- border-radius: 5px;
- font-family: PingFangSC-Regular, PingFang SC;
- &-title {
- text-align: center;
- margin-bottom: 10px;
- }
- &-date {
- margin-bottom: 10px;
- font-size: 14px;
- color: #434343;
- text-align: center;
- }
- &-search {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- &-item {
- width: 38%;
- margin-right: 2%;
- .input {
- height: 29px;
- padding: 0 9px!important;
- }
- &:last-child {
- width: 53px;
- margin-right: 0;
- .btn {
- width: 53px;
- height: 31px;
- }
- }
- }
- }
- &-box {
- &-th {
- border-bottom: none;
- background-color: #EDF3FF;
- font-size: 12px;
- color: #434343;
- }
- &-td {
- font-size: 12px;
- color: #434343;
- word-wrap: break-word;
- }
- }
- &-pagination {
- width: 130px;
- margin: 20px auto 0;
- }
- }
- .total {
- color: #CADDFC;
- margin-top: 24px;
- text-align: center;
- font-size: 14px;
- line-height: 17px;
- text {
- color: #fff;
- padding: 0 5px;
- }
- }
|