english.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* pages/english/english.wxss */
  2. .english {
  3. width: 100%;
  4. padding: 0 15rpx;
  5. box-sizing: border-box;
  6. }
  7. .material,
  8. .works,
  9. .share {
  10. width: 100%;
  11. margin: 20rpx 0;
  12. border-radius: 25rpx;
  13. padding: 20rpx 0;
  14. box-sizing: border-box;
  15. background: #fff;
  16. position: relative;
  17. }
  18. .this-week {
  19. display: flex;
  20. padding: 0 25rpx;
  21. box-sizing: border-box;
  22. }
  23. .this-week image {
  24. width: 86rpx;
  25. height: 86rpx;
  26. }
  27. .lesson-name {
  28. display: flex;
  29. flex-direction: column;
  30. margin: 8rpx 16rpx;
  31. }
  32. .lesson-name text:nth-child(1) {
  33. height: 38rpx;
  34. font-size: 32rpx;
  35. font-weight: 600;
  36. }
  37. .lesson-name text:nth-child(2) {
  38. height: 30rpx;
  39. margin-top: 10rpx;
  40. font-size: 24rpx;
  41. color: #C3C3C3;
  42. }
  43. /* 标题定位到顶部 */
  44. .adsorb {
  45. position: fixed;
  46. left: 0;
  47. top: 72rpx;
  48. }
  49. /* 定位图片 */
  50. .questions-one {
  51. position: fixed;
  52. right: 20rpx;
  53. bottom: 30rpx;
  54. width: 100rpx;
  55. height: 100rpx;
  56. border-radius: 50%;
  57. }
  58. .questions-one image {
  59. width: 100%;
  60. height: 100%;
  61. }
  62. .upload-one {
  63. position: fixed;
  64. right: 20rpx;
  65. bottom: 150rpx;
  66. width: 100rpx;
  67. height: 100rpx;
  68. border-radius: 50%;
  69. }
  70. .upload-one image {
  71. width: 100%;
  72. height: 100%;
  73. }