123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* crmeb颜色变量 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .mask {
- z-index: 99;
- }
- .cartList {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: #fff;
- z-index: 100;
- padding: 0 30rpx 100rpx 30rpx;
- box-sizing: border-box;
- border-radius: 16rpx 16rpx 0 0;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
- }
- .cartList.on {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
- .cartList .title {
- height: 108rpx;
- }
- .cartList .title .name {
- font-size: 28rpx;
- color: #282828;
- font-weight: bold;
- }
- .cartList .title .del {
- font-size: 26rpx;
- color: var(--view-theme);
- }
- .cartList .title .del .iconfont {
- margin-right: 5rpx;
- font-size: 34rpx;
- }
- .cartList .list {
- max-height: 720rpx;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .cartList .list .item {
- margin-bottom: 40rpx;
- }
- .cartList .list .item .pictrue {
- width: 176rpx;
- height: 176rpx;
- border-radius: 16rpx;
- position: relative;
- }
- .cartList .list .item .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 16rpx;
- }
- .cartList .list .item .pictrue .mantle {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(255, 255, 255, 0.65);
- border-radius: 16rpx;
- }
- .cartList .list .item .txtPic {
- width: 486rpx;
- }
- .cartList .list .item .txtPic .name {
- font-size: 28rpx;
- color: #282828;
- }
- .cartList .list .item .txtPic .name.on {
- color: #A3A3A3;
- }
- .cartList .list .item .txtPic .noBnt {
- width: 126rpx;
- height: 44rpx;
- background: #f2f2f2;
- border-radius: 22rpx;
- text-align: center;
- line-height: 44rpx;
- font-size: 24rpx;
- color: #A3A3A3;
- margin-top: 10rpx;
- }
- .cartList .list .item .txtPic .delTxt {
- margin-top: 48rpx;
- font-size: 24rpx;
- color: #E93323;
- }
- .cartList .list .item .txtPic .delTxt text {
- width: 70rpx;
- height: 50rpx;
- text-align: center;
- line-height: 50rpx;
- }
- .cartList .list .item .txtPic .info {
- font-size: 23rpx;
- color: #989898;
- margin-top: 5rpx;
- }
- .cartList .list .item .txtPic .bottom {
- margin-top: 11rpx;
- }
- .cartList .list .item .txtPic .bottom .money {
- font-weight: bold;
- font-size: 26rpx;
- color: var(--view-priceColor);
- }
- .cartList .list .item .txtPic .bottom .money .num {
- font-size: 34rpx;
- }
- .cartList .list .item .txtPic .bottom .cartNum {
- font-weight: bold;
- }
- .cartList .list .item .txtPic .bottom .cartNum .num {
- font-size: 34rpx;
- color: #282828;
- width: 120rpx;
- text-align: center;
- }
- .cartList .list .item .txtPic .bottom .cartNum .reduce {
- color: #282828;
- font-size: 24rpx;
- width: 60rpx;
- height: 60rpx;
- text-align: center;
- line-height: 60rpx;
- }
- .cartList .list .item .txtPic .bottom .cartNum .plus {
- color: #282828;
- font-size: 24rpx;
- width: 60rpx;
- height: 60rpx;
- text-align: center;
- line-height: 60rpx;
- }
|