| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .new-footer {
- display: flex;
- justify-content: flex-end;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- .new-submit {
- width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- margin-right: 30rpx;
- margin-top: 10rpx;
- }
- .sub {
- width: 180rpx;
- }
- }
- .info {
- height: 48rpx;
- text-align: center;
- line-height: 48rpx;
- color: #E7EEFF;
- border-radius: 8rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- background-color: #3874F6;
- padding: 0 10rpx;
- }
- .box {
- width: 100vw;
- box-sizing: border-box;
- margin-top: 20rpx;
- background-color: #fff;
- .content {
- border-radius: 8rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- .upload {
- display: flex;
- align-items: center;
- width: 100%;
- height: 88rpx;
- box-sizing: border-box;
- .title {
- flex: 1;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- font-weight: bold;
- }
- navigator {
- width: 100rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- padding: 0;
- }
- }
- }
- }
|