CourseAddress.scss 865 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .com-course-address{
  2. background:#1a1a1a;
  3. display:flex;
  4. flex-direction: row;
  5. margin-left:10px;
  6. margin-right: 10px;
  7. border-radius: 10px;
  8. padding:10px;
  9. .address{
  10. display: flex;
  11. flex-direction: column;
  12. width:80%;
  13. .time{
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. justify-content: flex-start;
  18. height:30px;
  19. .icon{
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. width:10%;
  24. .img{
  25. height:16px;
  26. width:16px;
  27. }
  28. }
  29. .tips{
  30. color:#FFF;
  31. font-size:12px;
  32. margin-left:5px;
  33. }
  34. }
  35. }
  36. .service{
  37. display: flex;
  38. width:20%;
  39. flex-direction: column;
  40. justify-content: center;
  41. align-items: center;
  42. .icon{
  43. display: flex;
  44. .img{
  45. height:16px;
  46. width:16px;
  47. }
  48. }
  49. .tips{
  50. font-size:12px;
  51. color:#fFF;
  52. margin-top:5px;
  53. }
  54. }
  55. }