12345678910111213141516171819202122232425 |
- /* 开发者 */
- .section .item{
- overflow: hidden;
- width: 100%;
- box-sizing: border-box;
- }
- .section .title::after{
- content:":";
- display: inline-block;
- padding: 0 4rpx;
- }
- .section .item>view{
- white-space: nowrap;
- }
- .section .item .btns{
- display: flex;
- justify-content: flex-end;
- flex-wrap: wrap;
- }
- .section .item .lheight{
- line-height: 42rpx;
- }
|