|
@@ -52,6 +52,7 @@
|
|
|
height: 329rpx;
|
|
|
padding: 46rpx 0 33rpx;
|
|
|
margin-top: 52rpx;
|
|
|
+ margin-bottom: 50rpx;
|
|
|
border-radius: 32rpx;
|
|
|
background: pink;
|
|
|
|
|
@@ -87,3 +88,115 @@
|
|
|
color: rgba(157, 151, 177, 1);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.excellent-goods-title {
|
|
|
+ position: relative;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ width: 690rpx;
|
|
|
+ padding-left: 24rpx;
|
|
|
+ line-height: 40rpx;
|
|
|
+ font-size: 36rpx;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #1F1F39;
|
|
|
+
|
|
|
+ &:before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 1rpx;
|
|
|
+ width: 14rpx;
|
|
|
+ height: 37rpx;
|
|
|
+ border-radius: 40rpx;
|
|
|
+ background: #91B379;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ right: 36rpx;
|
|
|
+ top: 0;
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ background: pink;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.nav-wrap {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ margin-top: 50rpx;
|
|
|
+ margin-bottom: 80rpx;
|
|
|
+
|
|
|
+ & > view {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ image {
|
|
|
+ width: 104rpx;
|
|
|
+ height: 104rpx;
|
|
|
+ background: pink;
|
|
|
+ }
|
|
|
+
|
|
|
+ text {
|
|
|
+ margin-top: 30rpx;
|
|
|
+ line-height: 40rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: rgba(37, 31, 57, 1);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.list {
|
|
|
+ display: flex;
|
|
|
+ margin-top: 40rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.photo-wrap {
|
|
|
+ width: 82rpx;
|
|
|
+ height: 82rpx;
|
|
|
+ border-radius: 16rpx;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ image {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background: pink;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.box {
|
|
|
+ width: 326rpx;
|
|
|
+ padding-left: 19rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.goods-name {
|
|
|
+ width: 100%;
|
|
|
+ line-height: 48rpx;
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: rgba(37, 31, 57, 1);
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time {
|
|
|
+ margin-top: 6rpx;
|
|
|
+ line-height: 40rpx;
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: rgba(157, 151, 177, 1);
|
|
|
+}
|
|
|
+
|
|
|
+.price {
|
|
|
+ width: 282rpx;
|
|
|
+ line-height: 40rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: rgba(166, 166, 166, 1);
|
|
|
+ text-align: right;
|
|
|
+}
|