1234567891011121314151617181920212223 |
- .list{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: .1rem .3rem;
- border-bottom: 1px solid rgba(238,238,238,1);
- span{
- color: rgba(108,108,108,1);
- display: block;
- width: 60%;
- text-align: center;
- }
- span:nth-of-type(1){
- width: 40%;
- }
- }
- .title{
- background-color: rgba(242,242,242,1);
- span{
- color: #000;
- font-weight: bold;
- }
- }
|