123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .store {
- padding-bottom: 80rpx;
- background: #F9F9F9;
- }
- .store .bg {
- background: linear-gradient(180deg, #3988FF 0%, #F9F9F9 100%);
- height: 430rpx;
- background-size: 100% 430rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #fff;
- position: relative;
- }
- .store .bg .jump-img {
- position: absolute;
- bottom: 20rpx;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 660rpx;
- height: 134rpx;
- }
- .store .bg .info {
- text-align: center;
- color: #222222;
- }
- .store .bg .info .num {
- font-size: 56rpx;
- font-weight: bold;
- }
- .store .bg .info .label {
- font-size: 24rpx;
- }
- .store .bg .rule {
- position: absolute;
- top: 50%;
- right: 0%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- background: #fff;
- color: #FD7300;
- font-size: 28rpx;
- padding: 10rpx 18rpx;
- border-radius: 12rpx;
- }
- .store .title {
- font-size: 28rpx;
- font-weight: bold;
- color: #0F0F0F;
- display: flex;
- align-items: center;
- margin: 30rpx;
- }
- .store .title .icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 10rpx;
- }
- .store .item {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 25rpx;
- margin: 0 30rpx 20rpx;
- border-radius: 16rpx;
- background: #fff;
- }
- .store .item .top {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .store .item .top .item-title {
- font-size: 28rpx;
- }
- .store .item .top .score {
- font-size: 38rpx;
- color: #3951fb;
- color: #0F0F0F;
- font-weight: bold;
- }
- .store .item .bottom {
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #999999;
- margin-top: 15rpx;
- font-size: 24rpx;
- }
- .store .goods-box {
- padding: 20rpx 50rpx;
- }
- .store .goods-box .store-title {
- font-size: 34rpx;
- display: flex;
- align-items: center;
- position: relative;
- padding-left: 18rpx;
- font-weight: bold;
- margin: 20rpx 0 30rpx;
- }
- .store .goods-box .store-title::before {
- width: 7rpx;
- height: 100%;
- background: #3951fb;
- content: '';
- display: flex;
- position: absolute;
- top: 0%;
- left: 0;
- }
- .store .goods-box .box {
- display: flex;
- justify-content: space-between;
- border-bottom: 1rpx solid #cacaca;
- padding-bottom: 30rpx;
- }
- .store .goods-box .box .item {
- width: 200rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .store .goods-box .box .item .icon {
- width: 100%;
- height: 210rpx !important;
- border-radius: 12rpx;
- object-fit: cover;
- }
- .store .goods-box .box .item .item-title {
- font-size: 26rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- -webkit-line-clamp: 2;
- text-overflow: ellipsis;
- margin-top: 10rpx;
- }
- .store .goods-box .box .item .handle-box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 15rpx;
- }
- .store .goods-box .box .item .handle-box .price {
- font-size: 26rpx;
- color: #FE5B47;
- }
- .store .goods-box .box .item .handle-box .exchange-btn {
- width: 96rpx;
- height: 40rpx;
- line-height: 40rpx;
- background: #61B5FD;
- border-radius: 20rpx;
- text-align: center;
- color: #fff;
- font-size: 22rpx;
- }
|