12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .tui-list-title{
- width: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- line-height: 30rpx;
- color: #666;
- }
- .tui-list-content{
- width: 100%;
- position: relative;
- }
- .tui-list-content::before {
- content: " ";
- position: absolute;
- top: -1rpx;
- right: 0;
- left: 0;
- border-top: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .tui-list-content::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left: 0;
- }
- .tui-border-top::before {
- border-top: 0;
- }
- .tui-border-bottom::after {
- border-bottom:0;
- }
- .tui-border-all::after {
- border-bottom:0;
- }
- .tui-border-all::before {
- border-top:0;
- }
|