12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .table-layout{
- width: 100%;
- color: #777;
- font-size: 12px;
- .check-cls{
- width:80px;
- text-align:left!important;
- margin-left:20px;
- }
- .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;
- // display: inline-block;
- }
- }
- }
- .line{
- min-height: 50px;
- border-bottom: 1px solid rgba($color: #202020, $alpha: 0.1);
- &:first-of-type{
- border-top: 1px solid rgba($color: #202020, $alpha: 0.1);
- }
- }
- }
- }
|