123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /* pages/my/activity/release.wxss */
- page {
- width: 100%;
- /* height: 100%; */
- }
- .activity-release-container {
- padding-top: 100rpx;
- padding-bottom: calc(100rpx + constant(safe-area-inset-bottom));
- /*兼容 IOS<11.2*/
- padding-bottom: calc(100rpx + env(safe-area-inset-bottom));
- /*兼容 IOS>11.2*/
- }
- .tabs {
- position: fixed;
- top: 0;
- left: 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 100rpx;
- padding: 0 60rpx;
- font-size: 28rpx;
- font-family: 'PingFang SC, PingFang SC-Regular';
- font-weight: 400;
- color: #666666;
- background-color: #fff;
- box-sizing: border-box;
- z-index: 9;
- }
- .tabs .tab {
- position: relative;
- height: 100%;
- line-height: 100rpx;
- }
- .tabs .tab-active {
- font-size: 32rpx;
- font-family: 'PingFang SC, PingFang SC-Bold';
- font-weight: 700;
- color: #1a1a1a;
- }
- .tabs .tab-active::after {
- display: block;
- position: absolute;
- bottom: 0;
- content: '';
- width: 100%;
- height: 4rpx;
- background: #ffdd36;
- border-radius: 2rpx;
- z-index: 1;
- }
- .body {
- padding: 30rpx 30rpx;
- }
- .activity-box {
- position: relative;
- height: 461rpx;
- background: #ffffff;
- border-radius: 8rpx;
- margin-bottom: 20rpx;
- overflow: hidden;
- }
- .status {
- position: absolute;
- top: 0;
- left: 0;
- padding: 3rpx 20rpx;
- font-size: 24rpx;
- background-color: #ffdb29;
- border-radius: 8rpx 0 8rpx 0;
- font-family: 'PingFang SC, PingFang SC-Regular';
- font-weight: 400;
- color: #51491d;
- z-index: 3;
- }
- .pic-box {
- position: relative;
- margin-bottom: 10rpx; overflow: hidden;
- }
- .pic-box .status-pic {
- width: 100%;
- height: 260rpx;
- }
- .pic-box .pic {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 133rpx;
- height: 116rpx;
- font-size: 130rpx;
- color: #fff;
- transform: translate(-50%, -50%);
- }
- .activity-box .info {
- padding: 0 30rpx;
- }
- .activity-box .info .title {
- font-size: 28rpx;
- font-family: 'PingFang SC, PingFang SC-Bold';
- font-weight: 700;
- color: #1a1a1a;
- margin-bottom: 7rpx;
- }
- .activity-box .info {
- font-size: 24rpx;
- font-family: 'PingFang SC, PingFang SC-Regular';
- font-weight: 400;
- color: #333333;
- }
- .activity-box .info .time {
- color: #333333;
- margin-bottom: 7rpx;
- }
- .activity-box .info .info-box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 7rpx;
- }
- .activity-box .info .info-box .activity-price {
- font-size: 20rpx;
- color: #ec2e26;
- font-weight: 500;
- }
- .activity-box .info .info-box .activity-price .price-num {
- font-size: 32rpx;
- color: #ec2e26;
- font-weight: 700;
- }
- .activity-box .info .info-box .address {
- color: #999999;
- }
- .footer {
- position: fixed;
- left: 50%;
- bottom: 0;
- width: 100%;
- padding: 30rpx;
- background-color: #fff;
- transform: translateX(-50%);
- padding-bottom: constant(safe-area-inset-bottom);
- /*兼容 IOS<11.2*/
- padding-bottom: env(safe-area-inset-bottom);
- }
- .footer .btn {
- width: 690rpx;
- height: 85rpx;
- background: #ffdc2f;
- border-radius: 43rpx;
- font-size: 30rpx;
- font-family: 'PingFang SC, PingFang SC-Regular';
- font-weight: 400;
- text-align: center;
- color: #1a1a1a;
- color: #fff;
- line-height: 85rpx;
- }
|