123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* components/returnOrderNo/idnex.wxss */
- .gray{
- color: #999;
- }
- .content{
- text-align: center;
- background: #fff;
- width: 500rpx;
- position: absolute;
- top: 25%;
- right: 0;
- left: 0;
- margin: auto;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx;
- font-size: 28rpx;
- box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
- }
- .content form{
- width: 100%;
- }
- .content .cell{
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 10rpx;
- padding: 20rpx 10rpx;
- }
- .content .cell .cell-label{
- margin-right: 20rpx;
- }
- .content .cell .cell-input{
- flex: 1;
- border: 1px solid #999;
- border-radius: 10rpx;
- padding: 10rpx;
- text-align: left;
- }
- .placeholderinput{
- color: #999;
- }
- .content .btn{
- margin-top: 20rpx;
- display: flex;
- align-items: center;
- }
- .content .btn button{
- font-size: 30rpx;
- line-height: 2;
- padding: 0 40rpx;
- }
|