| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- .flex{display: flex;align-items: center;}
- .flex-center{display: flex;align-items: center;justify-content: center}
- .flex-space{display: flex;align-items: center;justify-content: space-between}
- .flex-end{display: flex;align-items: center;justify-content: flex-end}
- .ov-1x{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
- .ov-2x{text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
- /* #ifdef H5 */
- .uni-page-head {
- background-color: transparent !important;
- }
- /* #endif */
- /* #ifdef H5 */
- /* #endif */
- uni-page-body,
- body,
- html {
- height: auto;
- min-height: 100%;
- }
- body {
- -webkit-overflow-scrolling: touch;
- }
- // 修改uni-nav-bar样式
- .uni-navbar-header {
- line-height: 96upx !important;
- height: 96upx !important;
- }
- // 修改uni-toast样式
- uni-toast {
- z-index: 99999 !important;
- }
- .uni-status-bar {
- height: auto !important;
- }
- .uni-navbar-container {
- display: flex !important;
- align-items: center !important;
- justify-content: center !important;
- }
- .uni-navbar-shadow {
- box-shadow: 0 0 6upx 2upx #ccc;
- }
- uni-picker .uni-picker-item {
- font-size: 30upx;
- }
- .iconfont {
- display: inline-block;
- vertical-align: middle;
- }
- // 修改image的图片样式
- // image {
- // width: 100%;
- // height: auto;
- // display: block;
- // }
- // 修改radio大小
- .uni-radio-wrapper {
- .uni-radio-input {
- width: 42upx;
- height: 42upx;
- }
- .uni-radio-input-checked {
- background-color: $mainColor !important;
- border-color: $mainColor !important;
- }
- }
- // 修改checkbox 样式
- .ljd-checkbox,.ljd-checkbox .uni-checkbox-input {
- width: 42upx;
- height: 42upx;
- border-radius: 50% !important;
- margin-right: 12upx;
- }
- .ljd-checkbox .uni-checkbox-input.uni-checkbox-input-checked {
- color: #fff !important;
- background-color: $mainColor !important;
- // border: none !important;
- border-color: $mainColor !important;
- }
- .ljd-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before {
- font-size: 36upx;
- }
- img {
- width: 100%;
- height: auto;
- display: block;
- }
- image {
- width: 100%;
- height: auto;
- display: block;
- }
- .datetime-picker {
- .picker-body {
- font-size: 32upx !important;
- }
- .btn-picker {
- font-size: 32upx !important;
- &.submit {
- color: #3a1b06 !important;
- padding: 0 20upx !important;
- border-radius: 24upx !important;
- }
- &.cancel {
- color: #878787 !important;
- }
- }
- }
- // 轮播tag样式修改
- .swiper-wrap {
- .tui-tag-class {
- position: absolute;
- color: #fff;
- bottom: 30upx;
- right: 0;
- }
- }
- // 支付页样式修改
- // .pay-wrap {
- // .delivery-wrap {
- // .remark-wrap {
- // margin-bottom: 0 !important;
- // }
- // }
- // }
- uni-button::after {
- border: none;
- }
|