You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

183 lines
4.2 KiB
Plaintext

1 month ago
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.order-search {
width: 750rpx;
min-height: 100vh;
background: #F5F5F5;
padding: 36rpx;
}
.order-search .search-box {
width: 678rpx;
height: 120rpx;
background: #FFFFFF;
border-radius: 16rpx;
display: flex;
justify-content: center;
padding: 22rpx 24rpx 22rpx 24rpx;
box-sizing: border-box;
position: relative;
}
.order-search .search-box .search-input {
width: 628rpx;
height: 76rpx;
background: #FFFFFF;
border-radius: 200rpx;
border: 2rpx solid #000000;
font-weight: 400;
font-size: 28rpx;
color: rgba(0, 0, 0, 0.3);
line-height: 39rpx;
padding-left: 88rpx;
}
.order-search .search-box .search-img {
width: 48rpx;
height: 48rpx;
position: absolute;
}
.order-search .search-box .search-img.search {
left: 48rpx;
top: 36rpx;
}
.order-search .search-box .search-img.scan {
right: 50rpx;
top: 36rpx;
}
.order-search .order-item {
width: 678rpx;
height: 210rpx;
background: #FFFFFF;
border-radius: 16rpx;
margin-top: 24rpx;
padding: 24rpx;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.order-search .order-item .order-num-box {
height: 48rpx;
text-align: center;
display: flex;
}
.order-search .order-item .order-num-box > image {
width: 48rpx;
height: 48rpx;
}
.order-search .order-item .order-num-box .order-company {
font-weight: 500;
font-size: 28rpx;
margin-left: 12rpx;
line-height: 39rpx;
text-align: center;
}
.order-search .order-item .order-state {
display: flex;
font-weight: 500;
font-size: 32rpx;
color: #2388FF;
line-height: 45rpx;
}
.order-search .order-item .order-state > image {
width: 48rpx;
height: 48rpx;
margin-right: 12rpx;
}
.order-search .order-item .order-state > text {
margin-left: 12rpx;
}
.order-search .order-item .tips {
font-weight: 400;
font-size: 24rpx;
color: rgba(34, 34, 34, 0.6);
line-height: 34rpx;
margin-left: 60rpx;
}
.order-search .order-apply {
width: 678rpx;
background: #FFFFFF;
border-radius: 16rpx;
margin-top: 24rpx;
padding: 24rpx;
box-sizing: border-box;
}
.order-search .order-apply .title {
font-weight: 500;
font-size: 32rpx;
color: #000000;
line-height: 45rpx;
}
.order-search .order-apply .tips {
font-weight: 400;
font-size: 24rpx;
color: #999999;
line-height: 34rpx;
margin-top: 12rpx;
}
.order-search .order-apply .image-box {
display: flex;
flex-wrap: wrap;
justify-content: left;
}
.order-search .order-apply .image-box .image-item {
width: 226rpx;
height: 226rpx;
background: #F3F4F5;
border-radius: 10rpx 10rpx 10rpx 10rpx;
margin-right: 10rpx;
text-align: center;
overflow: hidden;
margin-top: 12rpx;
}
.order-search .order-apply .image-box .image-item > image {
width: 100%;
height: 100%;
}
.order-search .order-apply .image-box .image-item .image-add {
margin-top: 90rpx;
width: 48rpx;
height: 48rpx;
}
.order-search .next-btn {
position: fixed;
bottom: 68rpx;
box-sizing: border-box;
}
.order-search .next-btn > button {
width: 678rpx;
height: 92rpx;
background: linear-gradient(91deg, #43A1FF 0%, #2F80F9 100%), #FFFFFF;
border-radius: 24rpx;
font-weight: 500;
font-size: 28rpx;
color: #FFFFFF;
line-height: 39rpx;
text-align: center;
padding-top: 24rpx;
box-sizing: border-box;
}