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.

189 lines
4.3 KiB
Plaintext

2 months ago
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.cloudStoreDeatil {
min-height: 100vh;
background: #F5F5F6;
}
.topImgCon {
height: 300rpx;
2 months ago
width: 750rpx;
2 months ago
overflow-y: hidden;
}
.topBg {
2 months ago
width: 750rpx;
2 months ago
position: relative;
}
.shopTip {
width: 678rpx;
height: 176rpx;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
display: flex;
margin: 0 auto;
position: absolute;
top: 248rpx;
right: 0;
left: 0;
padding: 16rpx;
box-sizing: border-box;
}
.shopTip .left > image {
width: 144rpx;
height: 144rpx;
background: #FFFFFF;
border-radius: 20rpx;
border: 2rpx solid rgba(0, 0, 0, 0.1);
margin-right: 12rpx;
}
.shopTip .right {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.shopTip .right .box1 {
font-weight: 500;
font-size: 32rpx;
color: #000000;
width: 490rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.shopTip .right .box2 {
display: flex;
}
.shopTip .right .box3 {
display: flex;
}
.shopTip .right .box3 .label1 {
width: 156rpx;
height: 42rpx;
border-radius: 12rpx;
border: 2rpx solid rgba(6, 115, 237, 0.3);
display: flex;
box-sizing: border-box;
padding-top: 1rpx;
justify-content: center;
}
.shopTip .right .box3 .label1 > image {
width: 32rpx;
height: 32rpx;
}
.shopTip .right .box3 .label1 > text {
font-weight: 500;
font-size: 24rpx;
color: #0673ED;
}
.shopTip .right .box3 .label2 {
width: 204rpx;
height: 42rpx;
border-radius: 8rpx;
border: 2rpx solid rgba(155, 118, 56, 0.3);
display: flex;
box-sizing: border-box;
padding-top: 1rpx;
justify-content: center;
}
.shopTip .right .box3 .label2 > image {
width: 32rpx;
height: 32rpx;
}
.shopTip .right .box3 .label2 > text {
font-weight: 500;
font-size: 24rpx;
color: #9B7638;
}
.shopBody {
position: absolute;
top: 452rpx;
background: #FFFFFF;
left: 0;
right: 0;
border-radius: 18rpx;
}
2 months ago
.shopBody .bodyHeader {
height: 196rpx;
2 months ago
border-radius: 20rpx 20rpx 0rpx 0rpx;
background: linear-gradient(91deg, #43A1FF 0%, #2F80F9 100%);
display: flex;
}
2 months ago
.shopBody .bodyHeader .itemBox {
2 months ago
width: 196rpx;
font-weight: 400;
font-size: 32rpx;
text-align: center;
padding-top: 36rpx;
box-sizing: border-box;
color: #FFFFFF;
}
2 months ago
.shopBody .bodyHeader .active {
width: 224rpx;
height: 135rpx;
2 months ago
font-weight: 600;
font-size: 32rpx;
color: #0066D6;
2 months ago
line-height: 45rpx;
background-size: 100% 100%;
bottom: 70rpx;
box-sizing: border-box;
2 months ago
}
2 months ago
.shopBody .bodyHeader .active.act-0 {
position: absolute;
left: 0;
2 months ago
background-image: url("https://files.hecrab.com/crab-net/yxs-cloudStore-rate-tab-left.png");
2 months ago
padding-top: 42rpx;
padding-left: 20rpx;
2 months ago
}
2 months ago
.shopBody .bodyHeader .active.act-1 {
position: absolute;
left: 170rpx;
2 months ago
background-image: url("https://files.hecrab.com/crab-net/yxs-cloudStore-rate-tab-center.png");
2 months ago
padding-top: 42rpx;
2 months ago
text-align: center;
}
2 months ago
.shopBody .bodyHeader .active.act-2 {
position: absolute;
left: 360rpx;
background-image: url("https://files.hecrab.com/crab-net/yxs-cloudStore-rate-tab-center.png");
padding-top: 42rpx;
2 months ago
text-align: center;
2 months ago
}
.shopBody .bodyHeader .active.act-3 {
position: absolute;
right: 0;
2 months ago
background-image: url("https://files.hecrab.com/crab-net/yxs-cloudStore-rate-tab-right.png");
2 months ago
padding-top: 42rpx;
text-align: center;
}
.shopBody .body {
border-radius: 18rpx;
position: absolute;
top: 104rpx;
box-sizing: border-box;
2 months ago
}