| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- // 颜色
- $color-blue:#3387FF;
- $color-white:#FFFFFF;
- // 字体大小
- $font_size_34:34rpx;
- $font_size_36:36rpx;
- body,html{
- margin: 0;
- padding: 0;
- }
- .center_in_sequence{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .center_in{
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .space_between{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .up_and_down{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- // 伪元素1rpx边框
- .frame {
- position: relative; //重要
- }
- .frame::after {
- position: absolute;
- content: '';
- border-bottom: 4rpx solid #e4e7ed;
- width: 200%;
- height: 200%;
- top: 0;
- left: 0;
- transform: scale(0.5);
- transform-origin: 0 0;
- pointer-events: none; /* 使伪元素不会阻止鼠标事件 */
- }
- .uni-table-th{
- padding: 3px 2px !important;
- font-size: 8px !important;
- }
- .uni-table-td{
- padding: 3px 2px !important;
- font-size: 8px !important;
- line-height: 10px !important;
- }
- .uni-table{
- min-width: 300px !important;
- }
- .uni-date-x .icon-calendar{
- font-size: 12px !important;
- }
- .uni-date__x-input{
- height: 16px !important;
- line-height: 16px !important;
- font-size: 8px !important;
- padding-left: 2px !important;
- }
- .uni-date-x--border{
- border-radius: 2px !important;
- }
- .uni-date-single--x{
- top: 4px !important;
- // z-index: 9999 !important;
- }
- .uni-calendar__header{
- align-items: flex-end !important;
- height: 18px !important;
- }
- .uni-calendar__weeks:nth-child(1){
- padding-top: 4px !important;
- padding-bottom: 0px !important;
- }
- .uni-calendar__weeks-day{
- height: 14px !important;
- }
- .uni-calendar__header-btn{
- width: 8rpx !important;
- height: 8rpx !important;
- }
- .uni-calendar__header-text{
- font-size: 8px !important;
- }
- .uni-calendar__weeks-day-text{
- font-size: 8px !important;
- }
- .uni-calendar__header-btn-box{
- width: 20px !important;
- height: 16px !important;
- }
- .uni-calendar-item__weeks-box-item{
- width: 16px !important;
- height: 16px !important;
- }
- .uni-calendar-item__weeks-box .uni-calendar-item--checked{
- border: 1px solid #FFFFFF !important;
- }
- .uni-calendar-item__weeks-box-text{
- font-size: 8px !important;
- }
- .uni-calendar-item--today{
- top: 4px !important;
- right: 11% !important;
- width: 3px !important;
- height: 3px !important;
- }
- .uni-date__input{
- height: 18px !important;
- font-size: 8px !important;
- }
- .popup-x-footer{
- padding: 0rpx 15rpx !important;
- line-height: 14px !important;
- }
- .popup-x-footer .confirm-text{
- font-size: 8px !important;
- }
- .uni-calendar__box{
- padding-bottom: 0px !important;
- }
- .uni-datetime-picker-popup{
- width: 120px !important;
- padding: 15rpx !important;
- }
- .uni-datetime-picker__container-box{
- margin-top: 20rpx !important;
- }
- .uni-datetime-picker-text{
- font-size: 8px !important;
- line-height: 10px !important;
- }
- .uni-datetime-picker-view{
- height: 80px !important;
- width: 100px !important;
- }
- .uni-picker-view-indicator{
- height: 30px !important;
- }
- .uni-datetime-picker-item{
- line-height: 30px !important;
- }
- .uni-datetime-picker-item{
- font-size: 9px !important;
- height: 30px !important;
- }
- .uni-datetime-picker-btn{
- margin-top: 0px !important;
- }
- .uni-datetime-picker-btn-text{
- font-size: 8px !important;
- }
- .uni-datetime-picker-cancel{
- margin-right: 10px !important;
- }
- .uni-datetime-picker-sign{
- top: 28px !important;
- }
- .sign-left{
- left: 75px !important;
- }
- .sign-right{
- right: 75px !important;
- }
- .uni-picker-container .uni-picker-content{
- height: 180px !important;
- }
|