index.acss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/make_appointment/changeUserInfo/index.wxss */
  2. /* 所在楼宇 */
  3. .card-cont {
  4. overflow: hidden;
  5. padding: 35rpx 0;
  6. }
  7. .picker::after {
  8. content: "";
  9. display: inline-block;
  10. width: 16rpx;
  11. height: 16rpx;
  12. margin-left: 15rpx;
  13. border-top: 2rpx solid #333333;
  14. border-right: 2rpx solid #333333;
  15. transform: rotate(45deg);
  16. }
  17. /* 尾部提示信息 */
  18. .end-tip {
  19. text-align: center;
  20. color: #229954;
  21. font-size: 23rpx;
  22. margin-top: 25rpx;
  23. }
  24. /* 按钮区 */
  25. .btn-area {
  26. position: fixed;
  27. bottom: 28rpx;
  28. left: 0;
  29. width: calc(100% - 56rpx);
  30. margin: 0 28rpx;
  31. /* margin-left: 28rpx; */
  32. }
  33. .btn-area button {
  34. width: 100%;
  35. background: linear-gradient(180deg, #6eaaff 0%, #2f6fd1 100%);
  36. font-size: 30rpx;
  37. height: 110rpx;
  38. line-height: 110rpx;
  39. border-radius: 8rpx;
  40. color: #fff;
  41. }
  42. .bg-grey {
  43. background: linear-gradient(180deg, #d1dded 0%, #9dadc6 100%) !important;
  44. color: #000 !important;
  45. }
  46. .bg-blue {
  47. background: linear-gradient(180deg, #6eaaff 0%, #2f6fd1 100%) !important;
  48. }
  49. .box {
  50. padding-bottom: 200rpx;
  51. }