common.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* */
  2. .page-block {}
  3. .page-block .page-title-block {
  4. padding: 20rpx 25rpx;
  5. }
  6. .page-block .page-title-block .title {
  7. font-size: 28rpx;
  8. line-height: 40rpx;
  9. color: #999;
  10. }
  11. .page-block .content {
  12. padding: 0 25rpx;
  13. background-color: #fff;
  14. }
  15. .page-block .cell {
  16. min-height: 100rpx;
  17. border-bottom: 1rpx solid #f5f5f5;
  18. }
  19. .page-block .cell:last-child {
  20. border-bottom: none;
  21. }
  22. .page-block .cell .title-block {
  23. min-width: 155rpx;
  24. flex: none;
  25. font-size: 30rpx;
  26. color: #333;
  27. font-weight: 600;
  28. padding-right: 20rpx;
  29. }
  30. .page-block .cell .required::after {
  31. content: "*";
  32. color: #f00;
  33. }
  34. .page-block .cell .desc {
  35. flex: auto;
  36. height: 100%;
  37. }
  38. .page-block .cell .desc .desc-info{
  39. padding:30rpx 0;
  40. font-size: 28rpx;
  41. color: #999;
  42. line-height: 40rpx;
  43. }
  44. .page-block .cell .input-box {
  45. height: 100rpx;
  46. line-height: 100rpx;
  47. font-size: 28rpx;
  48. /* color: #999; */
  49. }
  50. .page-block .radio-btn {
  51. zoom: 0.7;
  52. }
  53. .page-block .radio-text {
  54. margin: 0 40rpx 0 8rpx;
  55. font-size: 28rpx;
  56. color: #999;
  57. }
  58. /* */
  59. .footer-bar {
  60. height: 160rpx;
  61. /*兼容 IOS<11.2*/
  62. padding-bottom: constant(safe-area-inset-bottom);
  63. /*兼容 IOS>11.2*/
  64. padding-bottom: env(safe-area-inset-bottom);
  65. box-sizing: content-box;
  66. }
  67. .footer-bar .content {
  68. width: 100%;
  69. height: 160rpx;
  70. background-color: #fff;
  71. position: fixed;
  72. left: 0;
  73. bottom: 0;
  74. z-index: 100;
  75. /*兼容 IOS<11.2*/
  76. padding-bottom: constant(safe-area-inset-bottom);
  77. /*兼容 IOS>11.2*/
  78. padding-bottom: env(safe-area-inset-bottom);
  79. box-sizing: content-box;
  80. box-shadow: 0 -5rpx 10rpx #eee;
  81. }
  82. .footer-bar .content .btn {
  83. width: 700rpx;
  84. height: 100rpx;
  85. background: linear-gradient(315deg, #3387ff 2%, #569bff 99%);
  86. border-radius: 8rpx;
  87. box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(51, 135, 255, 0.20);
  88. text-align: center;
  89. line-height: 100rpx;
  90. font-size: 36rpx;
  91. font-weight: 500;
  92. color: #fff;
  93. }
  94. .footer-bar .content .detail-btn {
  95. width: 50%;
  96. height: 40rpx;
  97. }
  98. .footer-bar .content .detail-btn .btn-icon {
  99. flex: none;
  100. display: block;
  101. width: 32rpx;
  102. height: 32rpx;
  103. margin-right: 8rpx;
  104. }