Schedule.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. @import '@/utils/common.scss';
  2. .duration_bg{
  3. margin-left: 50px;
  4. display: flex;
  5. flex-direction: column;
  6. flex: 1;
  7. }
  8. .duration_title{
  9. font-size: 32px;
  10. line-height: 32px;
  11. color: #fff;
  12. opacity: 0.6;
  13. font-weight: 400;
  14. }
  15. .duration_value2{
  16. font-size: 36px;
  17. line-height: 36px;
  18. font-weight: 500;
  19. margin-bottom: 12px;
  20. }
  21. .arrow1{
  22. width: 48px;
  23. height: 48px;
  24. }
  25. .tip_bg2{
  26. height: 80px;
  27. width: 100%;
  28. box-sizing: border-box;
  29. // background-color: rgba(250, 81, 81, 0.1);
  30. display: flex;
  31. flex-direction: column;
  32. // padding-left: 40px;
  33. }
  34. .tip_text2{
  35. line-height: 80px;
  36. color: #fff;
  37. opacity: 0.8;
  38. font-size: 28px;
  39. }
  40. .schedule_more{
  41. display: flex;
  42. flex-direction: row;
  43. height: 84px;
  44. align-items: center;
  45. color: $fastColor;
  46. }
  47. .schedule_box{
  48. margin-left: 46px;
  49. margin-right: 46px;
  50. margin-bottom: 24px;
  51. background-color: $boxColor;
  52. border-radius: $boxBorderRadius;
  53. display: flex;
  54. flex-direction: column;
  55. padding-top: 40px;
  56. padding-left: 40px;
  57. padding-bottom: 34px;
  58. }
  59. .schedule_line{
  60. margin-bottom: 30px;
  61. height: 2px;
  62. -webkit-transform: scaleY(0.5);
  63. transform: scaleY(0.5);
  64. background-color: #fff;
  65. opacity: 0.1;
  66. }
  67. .schedule_row{
  68. display: flex;
  69. flex-direction: row;
  70. justify-content: space-between;
  71. box-sizing: border-box;
  72. margin-right: 40px;
  73. align-items: center;
  74. }