|
|
@@ -0,0 +1,67 @@
|
|
|
+.content {
|
|
|
+ width: 100vw;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 20rpx 30rpx;
|
|
|
+
|
|
|
+ .title {
|
|
|
+ font-size: 28rpx;
|
|
|
+ font-family: PingFangSC-Regular-, PingFangSC-Regular;
|
|
|
+ color: #333333;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tags {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+ .basic {
|
|
|
+ height: 72rpx;
|
|
|
+ line-height: 72rpx;
|
|
|
+ background: #FFFFFF;
|
|
|
+ border-radius: 36rpx;
|
|
|
+ border: 1px solid #CCCCCC;
|
|
|
+ padding: 0 20rpx;
|
|
|
+ margin-top: 20rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ font-family: PingFang SC-Regular, PingFang SC;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+
|
|
|
+ .active {
|
|
|
+ background: #FFEFD9;
|
|
|
+ border: 1px solid #FA8C16;
|
|
|
+ color: #FA8C16;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.footer {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding: 0 30rpx;
|
|
|
+ position: fixed;
|
|
|
+ width: 100vw;
|
|
|
+ height: 130rpx;
|
|
|
+ background: #FFFFFF;
|
|
|
+ box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
|
|
|
+ bottom: 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+
|
|
|
+ .count {
|
|
|
+ font-size: 28rpx;
|
|
|
+ font-family: PingFang SC-Regular, PingFang SC;
|
|
|
+ color: #333333;
|
|
|
+ }
|
|
|
+
|
|
|
+ .but {
|
|
|
+ width: 156rpx;
|
|
|
+ height: 90rpx;
|
|
|
+ background: #3874F6;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ font-family: PingFang SC-Bold, PingFang SC;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
+}
|