/* pages/pulishPost/pulishPost.wxss */ page { background-color: #ffffff; } .container-wrap { padding: 30rpx; background-color: #ffffff; padding-bottom: calc(var(--safe-area-inset-bottom, 0) + 120rpx); } .container-wrap .textarea { min-height: 400rpx; width: 100%; } .container-wrap .tag-wrap { display: flex; align-items: center; flex-wrap: wrap; margin-top: 15rpx; } .container-wrap .tag-wrap .tag { position: relative; font-size: 24rpx; font-family: PingFangSC-Medium, PingFang SC; font-weight: 500; color: #333333; padding: 8rpx 40rpx 8rpx 20rpx; background: rgba(246, 246, 246, 1); border-radius: 28rpx; margin-left: 12rpx; } .tag-wrap .tag:first-child { margin-left: 0; } .tag-wrap .tag::before, .tag-wrap .tag::after { position: absolute; top: 31%; right: 20rpx; content: " "; height: 18rpx; width: 2rpx; background-color: #999999; } .tag-wrap .tag::before { transform: rotate(45deg); } .tag-wrap .tag::after { transform: rotate(-45deg); } .bottom-wrap { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; background-color: #ffffff; border-top: 1rpx solid #f7f7f7; padding-top: 10rpx; padding-left: 20rpx; padding-right: 20rpx; padding-bottom: calc(var(--safe-area-inset-bottom, 0) + 20rpx); } .add-tag { position: relative; font-size: 24rpx; font-family: PingFangSC-Medium, PingFang SC; font-weight: 500; color: rgba(51, 51, 51, 1); padding: 10rpx 20rpx 10rpx 45rpx; background: rgba(246, 246, 246, 1); border-radius: 28px; } .disabled { pointer-events: none; color: #999999; } .add-tag::before { content: ""; position: absolute; top: 50%; left: 20rpx; width: 20rpx; height: 4rpx; background: #3b7aff; transform: translateY(-50%); } .add-tag::after { content: ""; position: absolute; top: 50%; left: 28rpx; width: 4rpx; height: 20rpx; background: #3b7aff; transform: translateY(-50%); } .disabled::after, .disabled::before { background: #999999; } .btn { width: 108rpx; height: 56rpx; line-height: 56rpx; text-align: center; font-size: 28rpx; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; color: rgba(255, 255, 255, 1); background: rgba(59, 122, 255, 1); border-radius: 4rpx; }