123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* components/apply-refound/apply-refound.wxss */
- .useRefound-pop {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .useRefound-mask {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.6);
- }
- .useRefound-container {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- background: #F8F8F8;
- border-radius: 32rpx 32rpx 0rpx 0rpx;
- .icon-close {
- position: absolute;
- width: 30rpx;
- height: 30rpx;
- top: 40rpx;
- right: 40rpx;
- }
- .use-title {
- font-weight: 600;
- font-size: 36rpx;
- color: #000000;
- line-height: 50rpx;
- padding-top: 34rpx;
- padding-bottom: 30rpx;
- text-align: center;
- }
- .use-form {
- margin: 0 40rpx 0;
- background: #FFFFFF;
- border-radius: 20rpx;
- textarea {
- padding: 24rpx;
- height: 180rpx;
- font-size: 30rpx;
- width: 100%;
- margin: 0;
- line-height: 46rpx;
- box-sizing: border-box;
- &::placeholder {
- color: #AAAAAA;
- }
- }
- .num {
- padding-right: 24rpx;
- padding-bottom: 24rpx;
- text-align: right;
- font-size: 28rpx;
- color: #AAAAAA;
- line-height: 40rpx;
- }
- }
- .use-form__input {
- margin: 20rpx 40rpx 0;
- background: #FFFFFF;
- border-radius: 20rpx;
- padding: 24rpx;
- margin-bottom: 180rpx;
- display: flex;
- justify-content: space-between;
- .title {
- display: inline;
- font-size: 30rpx;
- color: #131415;
- .red {
- color: #F44541;
- }
- .sencd {
- color: #AAAAAA;
- }
- }
- input {
- text-align: right;
- font-size: 30rpx;
- }
- }
- .btnSection {
- padding: 0 32rpx 58rpx;
- button {
- margin: 0;
- width: 100%;
- background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
- border-radius: 78rpx;
- padding: 22rpx 84rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FBEAC9;
- line-height: 44rpx;
- }
- }
- }
- }
|