schedule.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .container{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. page{
  6. background: #f1f1f1;
  7. }
  8. /* 日历组件 */
  9. .calendar{
  10. height: 712rpx;
  11. background: #FFF;
  12. }
  13. /* end */
  14. /* 课表列表 */
  15. .class-box{
  16. display: flex;
  17. flex-wrap: wrap;
  18. align-content: space-between;
  19. width: 646rpx;
  20. background: #FFF;
  21. border-left: 4rpx solid #cc6031;
  22. padding: 25rpx;
  23. border-radius: 15rpx;
  24. margin: 0 auto 40rpx;
  25. }
  26. .class-box view{
  27. height: 60rpx;
  28. line-height: 60rpx;
  29. }
  30. .class-name,.class-time{
  31. font-size: 36rpx;
  32. font-weight: 600;
  33. }
  34. .class-time,.class-flag{
  35. text-align: right;
  36. width: 240rpx;
  37. margin-left: auto;
  38. }
  39. .class-name,.class-room,.class-teacher{
  40. width: 400rpx;
  41. }
  42. .class-flag,.class-teacher{
  43. color: #999;
  44. }
  45. .class-date{
  46. height: 80rpx;
  47. line-height: 80rpx;
  48. text-align: center;
  49. color: #666;
  50. font-size: 32rpx;
  51. }
  52. .class-type{
  53. color: #FFF;
  54. background: #cc6031;
  55. line-height: 30rpx;
  56. height: 30rpx;
  57. margin-top: 20rpx;
  58. font-size: 24rpx;
  59. margin-right: 10rpx;
  60. padding: 0 5rpx;
  61. border-radius: 10rpx;
  62. font-weight: 400;
  63. }
  64. /* end */