select_times.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pages/set_time/set_time.wxss */
  2. .li{
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .li-select{
  7. display: flex;
  8. justify-content: space-around;
  9. margin: 40rpx 50rpx;
  10. font-size:30rpx;
  11. font-family:PingFang SC;
  12. font-weight:bold;
  13. color:rgba(57,57,57,1);
  14. }
  15. .li-select-btn{
  16. padding: 10rpx 0;
  17. border-bottom: 5rpx solid transparent;
  18. transition: all 0.3s;
  19. }
  20. .li-select-btn-active{
  21. border-bottom: 5rpx solid #FF6465;
  22. color: #FF6465;
  23. }
  24. .li-items{
  25. display: flex;
  26. justify-content: space-between;
  27. color: #393939;
  28. font-size: 30rpx;
  29. padding: 65rpx 25rpx;
  30. }
  31. .li-items-day{
  32. color: #8489A3;
  33. font-size: 24rpx;
  34. margin-top: 10rpx;
  35. }
  36. .li-items-img{
  37. width: 88rpx;
  38. height: 59rpx;
  39. margin: auto 0;
  40. }
  41. .li-items-red{
  42. color: #FF6465;
  43. font-size: 24rpx;
  44. }
  45. .li-active{
  46. background: #F8F8F8;
  47. }
  48. .li-time{
  49. margin: 84rpx 50rpx;
  50. padding: 0;
  51. color: #8489A3;
  52. font-size: 30rpx;
  53. }
  54. .li-time-item{
  55. display: flex;
  56. justify-content: center;
  57. }
  58. .li-time-star{
  59. color: #B7B7B7;
  60. font-size: 34rpx;
  61. padding: 20rpx 30rpx;
  62. border-bottom: 1rpx solid #B7B7B7;
  63. }
  64. .li-time-word{
  65. margin: auto 30rpx;
  66. }
  67. .li-items-arrows{
  68. width: 10rpx;
  69. height: 18rpx;
  70. margin-left: 15rpx;
  71. }