123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .zhilin-picker {
- font-size: 28rpx;
- }
- .zhilin-picker uni-popup .uni-popup {
- width: 750rpx;
- background: #fff;
- height: 1056rpx;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- z-index: 999 !important;
- }
- .zhilin-picker uni-popup .usb {
- padding: 0 32rpx;
- background: #fff;
- }
- .main {
- height: calc(800rpx - 192rpx);
- flex: 1;
- position: relative;
- background: #fff;
- }
- .main scroll-view {
- height: 100%;
- }
- .main scroll-view .scroll-view-item {
- box-sizing: border-box;
- padding: 18rpx 44rpx !important;
- display: flex;
- justify-content: space-between;
- align-items: center;
- min-height: 80rpx;
- }
- .main scroll-view .scroll-view-item.selected {
- background: rgba(0, 122, 255, 0.1);
- }
- .main scroll-view .scroll-view-item uni-text {
- width: 85%;
- }
- .main scroll-view .isBottom {
- display: flex;
- justify-content: center;
- color: #777;
- position: relative;
- padding: 18rpx 44rpx;
- font-size: 24rpx;
- }
- .main scroll-view .isBottom::after {
- content: '';
- position: absolute;
- bottom: 10rpx;
- width: 60rpx;
- height: 4rpx;
- left: 50%;
- -webkit-transform: translateX(-51%);
- transform: translateX(-51%);
- background: #777;
- }
- .main .loadingBox {
- height: 100%;
- width: 100%;
- position: absolute;
- top: 0;
- left: 0;
- background: rgba(255, 255, 255, 0.7);
- z-index: 2;
- }
- .main .loadingBox uni-load-more {
- display: flex;
- justify-content: center;
- position: absolute;
- width: 100%;
- top: 35%;
- left: 50%;
- -webkit-transform: translate(-50%);
- transform: translate(-50%);
- }
- .detail_address {
- color: #969696;
- font-size: 24rpx;
- padding-top: 10rpx;
- }
- .empty {
- background: #fff;
- }
|