127 lines
2.8 KiB
Plaintext
127 lines
2.8 KiB
Plaintext
|
@charset "UTF-8";
|
|||
|
/**
|
|||
|
* 这里是uni-app内置的常用样式变量
|
|||
|
*
|
|||
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|||
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|||
|
*
|
|||
|
*/
|
|||
|
/**
|
|||
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|||
|
*
|
|||
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|||
|
*/
|
|||
|
/* 颜色变量 */
|
|||
|
/* 行为相关颜色 */
|
|||
|
/* 文字基本颜色 */
|
|||
|
/* 背景颜色 */
|
|||
|
/* 边框颜色 */
|
|||
|
/* 尺寸变量 */
|
|||
|
/* 文字尺寸 */
|
|||
|
/* 图片尺寸 */
|
|||
|
/* Border Radius */
|
|||
|
/* 水平间距 */
|
|||
|
/* 垂直间距 */
|
|||
|
/* 透明度 */
|
|||
|
/* 文章场景相关 */
|
|||
|
.gg {
|
|||
|
height: 100%;
|
|||
|
background-color: #f3f4f6;
|
|||
|
}
|
|||
|
.gg-cart-sv-container {
|
|||
|
height: calc(100vh - 90rpx - 136rpx);
|
|||
|
}
|
|||
|
.gg-navigation {
|
|||
|
width: 100%;
|
|||
|
height: 90rpx;
|
|||
|
position: fixed;
|
|||
|
bottom: 0;
|
|||
|
}
|
|||
|
.gg-navigation .navigation {
|
|||
|
height: 100%;
|
|||
|
display: flex;
|
|||
|
border: solid 2rpx #f2f2f2;
|
|||
|
background-color: #ffffff;
|
|||
|
padding: 12rpx 0;
|
|||
|
}
|
|||
|
.gg-navigation .navigation .left {
|
|||
|
display: flex;
|
|||
|
flex: 1;
|
|||
|
font-size: 20rpx;
|
|||
|
}
|
|||
|
.gg-navigation .navigation .left .item {
|
|||
|
margin: 0 10rpx;
|
|||
|
}
|
|||
|
.gg-navigation .navigation .left .item.car {
|
|||
|
text-align: center;
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
.gg-navigation .navigation .right {
|
|||
|
display: flex;
|
|||
|
font-size: 28rpx;
|
|||
|
align-items: center;
|
|||
|
}
|
|||
|
.gg-navigation .navigation .right .btn {
|
|||
|
line-height: 66rpx;
|
|||
|
padding: 0 30rpx;
|
|||
|
border-radius: 36rpx;
|
|||
|
color: #ffffff;
|
|||
|
}
|
|||
|
.gg-navigation .navigation .right .buy {
|
|||
|
background-color: #ff7900;
|
|||
|
margin: 0 30rpx;
|
|||
|
}
|
|||
|
.coupon {
|
|||
|
background-color: #ffffff;
|
|||
|
width: 100%;
|
|||
|
color: #ff9900;
|
|||
|
font-size: 28rpx;
|
|||
|
}
|
|||
|
.coupon .content {
|
|||
|
display: flex;
|
|||
|
justify-content: space-around;
|
|||
|
align-items: center;
|
|||
|
padding: 40rpx 20rpx;
|
|||
|
border: 10rpx;
|
|||
|
background-color: #fff5f4;
|
|||
|
}
|
|||
|
.coupon .content .left .sum {
|
|||
|
font-size: 32rpx;
|
|||
|
}
|
|||
|
.coupon .content .left .sum .num {
|
|||
|
font-size: 60rpx;
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
.coupon .content .centre {
|
|||
|
margin-left: 40rpx;
|
|||
|
}
|
|||
|
.coupon .content .centre .title {
|
|||
|
font-size: 32rpx;
|
|||
|
font-weight: bold;
|
|||
|
color: #303133;
|
|||
|
}
|
|||
|
.coupon .content .right {
|
|||
|
margin-left: 10rpx;
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
align-items: center;
|
|||
|
}
|
|||
|
.coupon .content .right u-tag {
|
|||
|
padding: 5rpx;
|
|||
|
}
|
|||
|
.coupon .content .right .immediate-use {
|
|||
|
padding: 0 20rpx;
|
|||
|
height: 50rpx;
|
|||
|
border-radius: 25rpx;
|
|||
|
line-height: 50rpx;
|
|||
|
background-color: #ff9900 !important;
|
|||
|
color: #ffffff !important;
|
|||
|
font-size: 24rpx;
|
|||
|
border: none;
|
|||
|
word-break: keep-all;
|
|||
|
}
|
|||
|
.selected {
|
|||
|
background-color: #fa3534 !important;
|
|||
|
}
|
|||
|
|