yyjl.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /* pages/recordPages/yyjl/yyjl.wxss */
  2. .containers {
  3. width: 100%;
  4. height: 100vh;
  5. }
  6. .tips {
  7. padding: 0 32rpx;
  8. width: 100%;
  9. height: 140rpx;
  10. font-family: "苹方R";
  11. font-size: 60rpx;
  12. color: #FFFFFF;
  13. display: flex;
  14. align-items: center;
  15. background: #CCCCCC;
  16. }
  17. .tipsWarning {
  18. background: #FF9200;
  19. }
  20. .tipsSuccess {
  21. background: #02C3CA;
  22. }
  23. .tipsError {
  24. background: #ff5500;
  25. }
  26. .numbers {
  27. margin-top: 60rpx;
  28. width: 100%;
  29. height: 140rpx;
  30. font-family: "苹方M";
  31. font-size: 100rpx;
  32. color: #333333;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .tip {
  38. width: 100%;
  39. font-family: "苹方R";
  40. font-size: 24rpx;
  41. color: #5BAFED;
  42. text-align: center;
  43. }
  44. .infosBox {
  45. padding: 30rpx 50rpx;
  46. margin: 60rpx 32rpx;
  47. width: calc(100% - 64rpx);
  48. background: #ffffff;
  49. border: 0.5px solid #dfdfdf;
  50. border-radius: 20rpx;
  51. box-shadow: 0px 2rpx 8rpx 0px rgba(0, 0, 0, 0.08);
  52. box-sizing: border-box;
  53. }
  54. .infosBox .item {
  55. padding: 15rpx 0;
  56. display: flex;
  57. align-items: flex-start;
  58. justify-content: space-between;
  59. }
  60. .infosBox .item .label {
  61. width: 170rpx;
  62. font-family: "苹方R";
  63. font-size: 28rpx;
  64. color: #8E8E8E;
  65. }
  66. .infosBox .item .value {
  67. width: 0;
  68. flex: 1;
  69. font-family: "苹方R";
  70. font-size: 28rpx;
  71. color: #333333;
  72. text-align: left;
  73. }
  74. .button {
  75. margin: 60rpx 32rpx;
  76. width: calc(100% - 64rpx);
  77. height: 80rpx;
  78. font-family: "苹方R";
  79. font-size: 36rpx;
  80. color: #ffffff;
  81. border-radius: 40rpx;
  82. background: #4686F6;
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. box-sizing: border-box;
  87. }
  88. .button1 {
  89. color: #4686F6;
  90. background: none;
  91. border: 1px solid #4686f6;
  92. }
  93. .button2 {
  94. margin-top: 150rpx;
  95. background: #FF9200;
  96. }
  97. .button3 {
  98. font-family: "苹方M";
  99. font-size: 46rpx;
  100. }
  101. .nobutton {
  102. position: relative;
  103. background: #D5D5D5;
  104. }
  105. .nobutton::before {
  106. position: absolute;
  107. top: -50rpx;
  108. left: 0;
  109. content: "请在预约时间段内点击";
  110. width: 100%;
  111. text-align: center;
  112. font-family: "苹方R";
  113. font-size: 24rpx;
  114. color: #5BAFED;
  115. }
  116. .active {
  117. opacity: 0.6;
  118. }