| 1234567891011121314151617181920212223242526272829303132333435 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .search {
- width: 100%;
- }
- .u-content {
- border-radius: 0 !important;
- }
- .cancel {
- width: 14%;
- text-align: center;
- }
- .list .item {
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- border-bottom: 1rpx solid #efefef;
- }
- .list .item.last-child {
- border: none;
- }
|