calendar.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .container {
  2. padding: 0 32rpx;
  3. }
  4. .uni-calendar {
  5. background-color: #F5F9FF;
  6. }
  7. .picker-info {
  8. width: 100%;
  9. }
  10. .picker-text {
  11. color: #2A3A5A;
  12. font-size: 32rpx;
  13. font-weight: bold;
  14. }
  15. .item-picker {
  16. line-height: 70rpx;
  17. text-align: center;
  18. }
  19. .con-bottom {
  20. margin: 60rpx 0 78rpx 0;
  21. }
  22. .bottom-left {
  23. color: #5E6F90;
  24. font-size: 30rpx;
  25. }
  26. .bottom-left > view:nth-of-type(1) {
  27. margin-bottom: 8rpx;
  28. }
  29. .con-bottom > view:nth-of-type(2) {
  30. color: #0074FF;
  31. font-size: 24rpx;
  32. text-align: center;
  33. border: 2rpx solid #0074FF;
  34. border-radius: 20rpx;
  35. height: 40rpx;
  36. line-height: 40rpx;
  37. padding-left: 20rpx;
  38. padding-right: 20rpx;
  39. }
  40. .custom-button{
  41. background-color: transparent; /* 取消背景颜色 */
  42. border: none; /* 取消边框 */
  43. color: inherit; /* 文字颜色继承 */
  44. padding: 0; /* 取消内边距 */
  45. font-size: inherit; /* 字体大小继承 */
  46. cursor: pointer; /* 鼠标指针设置为指针形状 */
  47. color: #FFFFFF;
  48. font-size: 32rpx;
  49. text-align: center;
  50. background-color: #0074FF;
  51. border-radius: 40rpx;
  52. height: 80rpx;
  53. line-height: 80rpx;
  54. padding-left: 78rpx;
  55. padding-right: 78rpx;
  56. }