index.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .courseDesc {
  2. padding-top: 50px;
  3. padding-left: 30px;
  4. padding-right: 30px;
  5. white-space: normal;
  6. .intro {
  7. position: relative;
  8. .intro-bg {
  9. width: 100%;
  10. }
  11. .intro-title {
  12. position: absolute;
  13. font-size: 38px;
  14. width: 100%;
  15. top: 0;
  16. color: #fff;
  17. text-align: center;
  18. height: 80px;
  19. line-height: 80px;
  20. }
  21. .intro-desc {
  22. position: absolute;
  23. width: 100%;
  24. top: 100px;
  25. padding: 0 30px;
  26. left: 10px;
  27. color: #5c6066;
  28. font-size: 30px;
  29. }
  30. }
  31. .problem {
  32. position: relative;
  33. .intro-bg {
  34. width: 100%;
  35. }
  36. .intro-title {
  37. position: absolute;
  38. font-size: 38px;
  39. width: 100%;
  40. top: 0;
  41. color: #fff;
  42. text-align: center;
  43. height: 80px;
  44. line-height: 80px;
  45. }
  46. .intro-question {
  47. position: absolute;
  48. top:70px;
  49. left: 10px;
  50. padding: 0 30px;
  51. color: #5c6066;
  52. }
  53. .intro-question-title {
  54. font-size: 34px;
  55. color: #333;
  56. padding-top: 30px;
  57. }
  58. .intro-question-answer {
  59. font-size: 30px;
  60. color: #5c6066;
  61. }
  62. }
  63. }