| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- .spec-contain.data-v-35ea5f84 {
- border-radius: 10rpx 10rpx 0 0;
- overflow: hidden;
- position: relative;
- }
- .spec-contain .close.data-v-35ea5f84 {
- position: absolute;
- right: 10rpx;
- top: 10rpx;
- }
- .spec-contain .header.data-v-35ea5f84 {
- padding: 30rpx;
- padding-right: 70rpx;
- align-items: flex-start;
- border: 1px solid #E5E5E5;
- }
- .spec-contain .spec-main.data-v-35ea5f84 {
- padding: 0 24rpx;
- }
- .spec-contain .spec-main .spec-list.data-v-35ea5f84 {
- padding: 30rpx 20rpx;
- }
- .spec-contain .spec-main .spec-list .spec-item.data-v-35ea5f84 {
- line-height: 54rpx;
- padding: 0 30rpx;
- background-color: #F4F4F4;
- border-radius: 60rpx;
- margin: 0 20rpx 20rpx 0;
- border: 1px solid #F4F4F4;
- }
- .spec-contain .spec-main .spec-list .spec-item.checked.data-v-35ea5f84 {
- background-color: #FFE9EB;
- color: #FF2C3C;
- border-color: currentColor;
- }
- .spec-contain .spec-main .spec-list .spec-item.spec-disabled.data-v-35ea5f84 {
- position: relative;
- }
- .spec-contain .spec-main .spec-list .spec-item.spec-disabled.data-v-35ea5f84::after {
- content: '缺货';
- position: absolute;
- right: -20rpx;
- top: -24rpx;
- color: #ffffff;
- width: 70rpx;
- height: 36rpx;
- text-align: center;
- line-height: 36rpx;
- font-size: 22rpx;
- border-radius: 20rpx 20rpx 20rpx 0;
- background-color: #FF2C3C;
- }
- .spec-contain .spec-main .spec-list .spec-item.unspec-disabled.data-v-35ea5f84::after {
- background-color: gray;
- }
- .spec-contain .disabled.data-v-35ea5f84 {
- opacity: 0.4;
- }
- .spec-contain .btns.data-v-35ea5f84 {
- height: 120rpx;
- padding: 0 30rpx;
- margin-top: 80rpx;
- }
- .spec-contain .btns .add-cart.data-v-35ea5f84 {
- background-color: #FF9E1E;
- }
- .spec-contain .btns .btn.data-v-35ea5f84 {
- margin: 0 10rpx;
- flex: 1;
- }
- .spec-contain .vip-price.data-v-35ea5f84 {
- margin: 0 24rpx;
- background-color: #FFE9BA;
- line-height: 36rpx;
- border-radius: 6rpx;
- overflow: hidden;
- }
- .spec-contain .vip-price .price-name.data-v-35ea5f84 {
- background-color: #101010;
- padding: 3rpx 12rpx;
- color: #FFD4B7;
- position: relative;
- overflow: hidden;
- }
- .spec-contain .vip-price .price-name.data-v-35ea5f84::after {
- content: '';
- display: block;
- width: 20rpx;
- height: 20rpx;
- position: absolute;
- right: -15rpx;
- background-color: #FFE9BA;
- border-radius: 50%;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- box-sizing: border-box;
- }
|