index.wxss 913 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* components/returnOrderNo/idnex.wxss */
  2. .gray{
  3. color: #999;
  4. }
  5. .content{
  6. text-align: center;
  7. background: #fff;
  8. width: 500rpx;
  9. position: absolute;
  10. top: 25%;
  11. right: 0;
  12. left: 0;
  13. margin: auto;
  14. border-radius: 10rpx;
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. padding: 20rpx;
  19. font-size: 28rpx;
  20. box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
  21. }
  22. .content form{
  23. width: 100%;
  24. }
  25. .content .cell{
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. padding: 10rpx;
  30. padding: 20rpx 10rpx;
  31. }
  32. .content .cell .cell-label{
  33. margin-right: 20rpx;
  34. }
  35. .content .cell .cell-input{
  36. flex: 1;
  37. border: 1px solid #999;
  38. border-radius: 10rpx;
  39. padding: 10rpx;
  40. text-align: left;
  41. }
  42. .placeholderinput{
  43. color: #999;
  44. }
  45. .content .btn{
  46. margin-top: 20rpx;
  47. display: flex;
  48. align-items: center;
  49. }
  50. .content .btn button{
  51. font-size: 30rpx;
  52. line-height: 2;
  53. padding: 0 40rpx;
  54. }