| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* pages/thirdPartyContentEdit/thirdPartyContentEdit.wxss */
- .container {
- padding: 20rpx;
- background-color: #f5f5f5;
- min-height: 100vh;
- }
- .form-item {
- background: white;
- padding: 30rpx;
- margin-bottom: 20rpx;
- border-radius: 16rpx;
- }
- .label {
- display: block;
- font-size: 28rpx;
- color: #333;
- margin-bottom: 20rpx;
- font-weight: 500;
- }
- .input,
- .textarea {
- width: 100%;
- font-size: 28rpx;
- color: #333;
- background: #f5f5f5;
- border-radius: 8rpx;
- padding: 20rpx;
- }
- .textarea {
- min-height: 200rpx;
- }
- .picker {
- width: 100%;
- font-size: 28rpx;
- color: #333;
- background: #f5f5f5;
- border-radius: 8rpx;
- padding: 20rpx;
- }
- .submit-btn {
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- background: #667eea;
- color: white;
- border-radius: 16rpx;
- font-size: 32rpx;
- border: none;
- margin-top: 40rpx;
- }
|