access.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* pages/order/access/access.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F6F6F6;
  6. }
  7. .white_view{
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. z-index: 100;
  12. width: 100vw;
  13. height: 100vh;
  14. background: #fff;
  15. }
  16. .topBox {
  17. width: 750rpx;
  18. height: 174rpx;
  19. background: #FFFFFF;
  20. padding: 32rpx;
  21. }
  22. .topBox .tit {
  23. font-size: 30rpx;
  24. font-weight: 500;
  25. color: #191C27;
  26. }
  27. .topBox .adr {
  28. font-size: 24rpx;
  29. color: #666666;
  30. width: 473rpx;
  31. }
  32. .topBox .lr {
  33. font-size: 24rpx;
  34. color: #191C27;
  35. text-align: center;
  36. border-left: 1rpx solid #E4E4E4;
  37. padding-left: 32rpx;
  38. }
  39. .topBox .lr .icon {
  40. width: 40rpx;
  41. height: 40rpx;
  42. }
  43. .card {
  44. width: 702rpx;
  45. height: 272rpx;
  46. background: #FFFFFF;
  47. border-radius: 12rpx;
  48. margin: 25rpx auto;
  49. padding: 48rpx 32rpx;
  50. }
  51. .card .tit {
  52. font-size: 30rpx;
  53. font-weight: 500;
  54. color: #191C27;
  55. }
  56. .card .tips {
  57. font-size: 26rpx;
  58. color: #999999;
  59. margin: 15rpx 0;
  60. }
  61. .card .num {
  62. font-size: 72rpx;
  63. font-weight: 500;
  64. color: #191C27;
  65. }
  66. .card .lr {
  67. font-size: 24rpx;
  68. color: #191C27;
  69. }
  70. .card .lr image {
  71. width: 80rpx;
  72. height: 80rpx;
  73. }
  74. .footer {
  75. position: absolute;
  76. left: 50%;
  77. bottom: 5%;
  78. transform: translate(-50%, 0);
  79. font-size: 26rpx;
  80. color: #666666;
  81. }