123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .page.data-v-846eb3b4 {
- position: relative;
- }
- .page.data-v-846eb3b4::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 200rpx;
- background: linear-gradient(180deg, #cfddfc, #eff2f5);
- z-index: -1;
- }
- .filter-icon-container.data-v-846eb3b4 {
- position: relative;
- float: right;
- top: 20rpx;
- right: 40rpx;
- }
- .filter-icon-container image.data-v-846eb3b4 {
- width: 40rpx;
- height: 40rpx;
- }
- .warehouse-list.data-v-846eb3b4 {
- padding: 80rpx 40rpx 20rpx;
- }
- .warehouse-list .warehouse-item.data-v-846eb3b4 {
- background: linear-gradient(180deg, #ffffff, #F5F8FF);
- border-radius: 10px;
- padding: 20px;
- margin-bottom: 20px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- }
- .warehouse-list .warehouse-item .warehouse-header.data-v-846eb3b4 {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- padding-bottom: 30rpx;
- border-bottom: 1px solid #E7E8EA;
- font-size: 35rpx;
- color: #00122F;
- }
- .warehouse-list .warehouse-item .warehouse-header .info-container.data-v-846eb3b4 {
- flex-grow: 1;
- }
- .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-name.data-v-846eb3b4,
- .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-address.data-v-846eb3b4 {
- display: flex;
- align-items: center;
- margin-bottom: 5px;
- }
- .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-name.data-v-846eb3b4:last-child,
- .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-address.data-v-846eb3b4:last-child {
- margin-bottom: 0;
- }
- .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-name image.data-v-846eb3b4,
- .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-address image.data-v-846eb3b4 {
- width: 20px;
- height: 20px;
- margin-right: 10px;
- }
- .warehouse-list .warehouse-item .warehouse-header .select-button.data-v-846eb3b4 {
- display: flex;
- align-items: flex-start;
- margin-left: 10px;
- }
- .warehouse-list .warehouse-item .warehouse-details.data-v-846eb3b4 {
- padding-top: 30rpx;
- font-size: 30rpx;
- color: #747476;
- }
- .warehouse-list .warehouse-item .warehouse-details .detail-row.data-v-846eb3b4 {
- display: flex;
- justify-content: space-between;
- margin-bottom: 10px;
- }
- .button-container.data-v-846eb3b4 {
- position: fixed;
- bottom: 0;
- background-color: #ffffff;
- width: 100vw;
- padding: 40rpx 0;
- }
- .button-container .button-pad.data-v-846eb3b4 {
- padding: 0 40rpx;
- display: flex;
- justify-content: space-between;
- }
- .button-container .select-all.data-v-846eb3b4,
- .button-container .confirm.data-v-846eb3b4 {
- width: 44%;
- height: 70rpx;
- line-height: 70rpx;
- border-radius: 10rpx;
- background-color: #1E5FDF;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- }
|