common.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .content {
  2. padding: 0 30rpx;
  3. }
  4. .btn-outer {
  5. background: #fff;
  6. overflow: hidden;
  7. position: absolute;
  8. left: 0;
  9. right: 0;
  10. bottom: 0;
  11. }
  12. textarea,
  13. input {
  14. width: 100%;
  15. color: #222;
  16. }
  17. .btn-outer .btn {
  18. margin: 40rpx;
  19. height: 110rpx;
  20. line-height: 110rpx;
  21. }
  22. .l-label {
  23. min-width: 60rpx;
  24. margin-right: 20rpx;
  25. max-width: 200rpx;
  26. }
  27. .l-content {
  28. flex: 1;
  29. min-height: 36rpx;
  30. }
  31. /* picker {
  32. flex: 1;
  33. } */
  34. .arrow {
  35. font-size: 30rpx;
  36. margin-left: 20rpx;
  37. }
  38. .picker {
  39. overflow: hidden;
  40. white-space: nowrap;
  41. text-overflow: ellipsis;
  42. }
  43. .noData,
  44. .noMoreData {
  45. margin: 100rpx 0 0;
  46. display: flex;
  47. align-items: center;
  48. justify-content: center;
  49. font-size: 28rpx;
  50. padding-top: 100rpx;
  51. color: #666;
  52. }
  53. .noMoreData {
  54. margin: 0;
  55. padding-top: 10rpx;
  56. }
  57. input::-webkit-input-placeholder {
  58. color: #B5B7BD;
  59. }
  60. input::-moz-placeholder {
  61. /* Mozilla Firefox 19+ */
  62. color: #B5B7BD;
  63. }
  64. input:-moz-placeholder {
  65. /* Mozilla Firefox 4 to 18 */
  66. color: #B5B7BD;
  67. }
  68. input:-ms-input-placeholder {
  69. /* Internet Explorer 10-11 */
  70. color: #B5B7BD;
  71. }
  72. .loading-image {
  73. width: 90rpx;
  74. height: 120rpx;
  75. position: fixed;
  76. top: 50%;
  77. left: 50%;
  78. transform: translate(-50%, -50%);
  79. display: block;
  80. }