导游中台-游客端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

192 lines
4.5 KiB

@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.bg.data-v-4ce02d00 {
min-height: 100vh;
background: #F7F7F7;
padding-bottom: 100rpx;
}
.top-box.data-v-4ce02d00 {
background: #FFFFFF;
}
.top-box .search-box.data-v-4ce02d00 {
height: 84rpx;
padding: 0 26.67rpx;
}
.top-box .search-box .left.data-v-4ce02d00 {
width: 563rpx;
height: 60rpx;
background: #FFFFFF;
border: 1rpx solid #96684F;
padding: 0 26rpx;
display: flex;
align-items: center;
}
.top-box .search-box .left image.data-v-4ce02d00 {
width: 29.33rpx;
height: 29.33rpx;
margin-right: 21rpx;
}
.top-box .search-box .left input.data-v-4ce02d00 {
flex: 1;
font-weight: 500;
font-size: 28rpx;
color: #999999;
}
.top-box .search-box .search-btn.data-v-4ce02d00 {
width: 120rpx;
height: 60rpx;
background: #96684F;
font-weight: 500;
font-size: 28rpx;
color: #FFFFFF;
}
.top-box .common-box.data-v-4ce02d00 {
height: 93rpx;
display: flex;
align-items: center;
}
.top-box .common-box .common-type.data-v-4ce02d00 {
width: 20%;
text-align: center;
font-weight: 500;
font-size: 28rpx;
color: #666666;
}
.top-box .common-box .common-type.active.data-v-4ce02d00 {
font-weight: bold;
font-size: 28rpx;
color: #96684F;
position: relative;
}
.top-box .common-box .common-type.active.data-v-4ce02d00::after {
width: 20%;
height: 4rpx;
content: '1';
font-size: 0;
display: block;
position: absolute;
left: 0;
right: 0;
bottom: -10rpx;
margin: auto;
background: #96684F;
}
.noDate.data-v-4ce02d00 {
display: flex;
justify-content: center;
align-items: center;
margin-top: 200rpx;
font-size: 24rpx;
color: #777777;
}
.item.data-v-4ce02d00 {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 13rpx;
margin: 27rpx auto 0;
}
.item .item-top.data-v-4ce02d00 {
height: 100rpx;
background: linear-gradient(90deg, #F4E8DD, #F9F2EC);
border-radius: 13rpx 13rpx 0rpx 0rpx;
padding: 0 20rpx;
font-weight: 500;
font-size: 27rpx;
color: #96684F;
}
.item .item-top .item-state.data-v-4ce02d00 {
font-weight: bold;
font-size: 28rpx;
color: #DC2525;
}
.item .item-center.data-v-4ce02d00 {
height: 270rpx;
padding: 20rpx;
display: flex;
}
.item .item-center .item-img.data-v-4ce02d00 {
width: 140rpx;
height: 140rpx;
border-radius: 7rpx;
margin-right: 20rpx;
}
.item .item-center .item-content.data-v-4ce02d00 {
flex: 1;
justify-content: space-between;
}
.item .item-center .item-content .title.data-v-4ce02d00 {
font-weight: 500;
font-size: 31rpx;
color: #000000;
}
.item .item-center .item-content .subtitle.data-v-4ce02d00 {
font-weight: 500;
font-size: 24rpx;
color: #999999;
}
.item .item-center .item-content .price.data-v-4ce02d00 {
font-weight: 500;
font-size: 24rpx;
color: #333333;
display: flex;
align-items: baseline;
justify-content: flex-end;
}
.item .item-center .item-content .price ._span.data-v-4ce02d00 {
font-weight: bold;
font-size: 32rpx;
color: #DC2525;
}
.item .item-center .item-content .price ._span.data-v-4ce02d00::before {
font-size: 24rpx;
content: '¥';
}
.item .item-btns.data-v-4ce02d00 {
height: 102rpx;
border-top: 1rpx solid rgba(216, 216, 216, 0.5);
padding-right: 20rpx;
display: flex;
align-items: center;
justify-content: flex-end;
}
.item .item-btns view.data-v-4ce02d00 {
width: 160rpx;
height: 60rpx;
line-height: 60rpx;
text-align: center;
background: rgba(237, 237, 237, 0);
border-radius: 7rpx;
border: 1rpx solid #D8D8D8;
margin-left: 13rpx;
}
.item .item-btns .pay-btn.data-v-4ce02d00 {
background: #DC2525;
color: #fff;
border: none;
}