classdetail.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .week_view {
  2. white-space: nowrap;
  3. }
  4. .week_view .week_item {
  5. display: inline-block;
  6. vertical-align: top;
  7. height: 140rpx;
  8. width: 120rpx;
  9. margin: 20rpx;
  10. padding: 20rpx;
  11. border-radius: 12rpx;
  12. background-color: #FFF;
  13. }
  14. .week_view .week_item .item_box {
  15. width: 100%;
  16. height: 100%;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. justify-content: space-around;
  21. }
  22. .week_view .week_item .item_box ._title {
  23. font-size: 30rpx;
  24. color: #898b91;
  25. }
  26. .week_view .week_item .item_box ._day {
  27. font-size: 40rpx;
  28. font-weight: bold;
  29. color: #505155;
  30. }
  31. .week_view .week_item_select {
  32. display: inline-block;
  33. vertical-align: top;
  34. height: 160rpx;
  35. width: 140rpx;
  36. margin: 20rpx;
  37. padding: 20rpx;
  38. border-radius: 12rpx;
  39. background-color: #FFF;
  40. border: 3px solid #303133;
  41. }
  42. .week_view .week_item_select .item_box {
  43. width: 100%;
  44. height: 100%;
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. justify-content: space-between;
  49. }
  50. .week_view .week_item_select .item_box .tag_fill {
  51. border-radius: 6rpx;
  52. background-color: #303133;
  53. padding: 5rpx 20rpx;
  54. }
  55. .week_view .week_item_select .item_box .tag_fill .tag_text {
  56. font-size: 28rpx;
  57. color: #FFF;
  58. }
  59. .week_view .week_item_select .item_box ._title {
  60. font-size: 34rpx;
  61. color: #303133;
  62. }
  63. .week_view .week_item_select .item_box ._day {
  64. font-size: 50rpx;
  65. font-weight: bold;
  66. color: #303133;
  67. }
  68. .class_list {
  69. display: flex;
  70. flex-direction: column;
  71. justify-content: space-between;
  72. margin: 0 30rpx 20rpx 30rpx;
  73. }
  74. .class_list .class_item {
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: space-around;
  78. margin: 10rpx 0;
  79. padding: 10rpx 0;
  80. height: 100rpx;
  81. border-bottom: 4rpx solid #f3f4f9;
  82. border-top: 4rpx solid #f3f4f9;
  83. border-image: linear-gradient(to right, #FFF, #d5d5d5) 1;
  84. }
  85. .class_list .class_item_title {
  86. font-size: 32rpx;
  87. font-weight: bold;
  88. color: #303133;
  89. }
  90. .class_list .class_item_subtitle {
  91. font-size: 30rpx;
  92. font-weight: bold;
  93. color: #909399;
  94. overflow: hidden;
  95. text-overflow: ellipsis;
  96. white-space: nowrap;
  97. }
  98. .class_list .class_item_detail {
  99. margin-left: 40rpx;
  100. line-height: 30rpx;
  101. font-size: 26rpx;
  102. font-weight: bold;
  103. color: #909399;
  104. }
  105. .flex_cloumn {
  106. margin: 140rpx 0 0 50rpx;
  107. height: 170rpx;
  108. justify-content: space-around;
  109. }
  110. .flex_cloumn .content_title {
  111. font-size: 35rpx;
  112. font-weight: bold;
  113. -webkit-transform: skew(-10deg);
  114. transform: skew(-10deg);
  115. color: #FFF;
  116. z-index: 2;
  117. text-shadow: 1px -1px 0px #c0c0c0, 2px -2px 0px #b0b0b0, 1px -1px 0px #a0a0a0, 2px -2px 0px #909090;
  118. }
  119. .flex_cloumn .content_subtitle {
  120. font-size: 35rpx;
  121. color: #FFF;
  122. z-index: 2;
  123. }
  124. .image_box {
  125. display: flex;
  126. flex-direction: column;
  127. height: 100%;
  128. align-items: center;
  129. margin-bottom: 70rpx;
  130. }
  131. .detail_image1 {
  132. width: 500rpx;
  133. height: 600rpx;
  134. background-size: 100%;
  135. background-repeat: no-repeat;
  136. z-index: 51;
  137. }