123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- page{
- background-color: #fff;
- color: #000;
- height: calc(100vh - 50px);
- }
- uni-toast,
- [longpressactions]{
- z-index: 99999!important;
- }
- .page_padding{
- padding-left: 24rpx;
- padding-right: 24rpx;
- }
- .text_center{
- text-align: center;
- }
- .text_left{
- text-align: left;
- }
- .text_justify{
- text-align: justify;
- }
- .primaryButton{
- color: #fff!important;
- background-color: $uni-primary!important;
- border-color: $uni-primary!important;
- }
- .required{
- color: #f00;
- font-size: 20rpx;
- }
- .flex1{
- flex: 1;
- }
- .label{
- margin-right: 35rpx;
- display: flex;
- align-items: center;
- font-size: 26rpx;
- }
- .is-focused{
- border-color: $uni-primary!important;
- }
- .uni-modal__bd{
- text-align: justify;
- }
- .btns{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-top: 24rpx;
- .btn{
- flex: 1;
- margin-right: 24rpx;
- &:last-of-type{
- margin-right: 0;
- }
- }
- }
- .ellipsis {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .ellipsis-multiline {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- }
|