1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- page{
- background-color: #f1f2f3;
- }
- .type{
- padding: 5px;
- font-size: 22rpx;
- color:#fff;
- letter-spacing: 3px;
- writing-mode: vertical-lr;
- background: #4F7BFD;
- border-radius: 3px;
- margin-right:5px ;
- }
- .flex-column-between{
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .small{
- font-size: 26rpx;
- color:#333;
- line-height: 25px;
- }
- .mr-5{
- margin-right: 5px;
- }
- .mt-5{
- margin-bottom: 5px;
- }
- .textIndentNodeChild{
- padding-left: 10px;
- }
- .smallChild{
- font-size: 24rpx;
- color:#666
- }
- .footer{
- width: 100vw;
- position: fixed;
- bottom: 0;
- background-color: #fff;
- }
|