123456789101112131415161718192021222324252627282930313233 |
- .table-layout{
- width: 100%;
- color: #777;
- font-size: 12px;
- .t-header{
- display: flex;
- justify-content: space-around;
- align-items: center;
- width: 100%;
- padding: 0 0 15px;
- li{
- text-align: center;
- display: inline-block;
- }
- }
- .t-con{
- .t-item{
- display: flex;
- justify-content: space-around;
- align-items: center;
- width: 100%;
- padding: 5px 0;
- li{
- text-align: center;
- display: inline-block;
- span{
- word-break: break-all;
- }
- }
- }
- }
- }
|