| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .home-banner{
- width: 100%;
- }
- a{
- text-decoration: none;
- color: white;
- &:hover{
- color: $focus-color;
- }
- }
- .hot-courses{
- text-align: center;
- width: 100%;
- &__title{
- margin-top: 20px;
- }
- &__list{
- color: $sub-color;
- margin: 20px 0 40px 0;
- }
- }
- .title{
- width: 100%;
- text-align: center;
- //color: #409eff;
- margin-top: 40px;
- font-weight: 500;
- }
- .course-list{
- display: flex;
- flex-wrap: nowrap;
- align-items: flex-end;
- justify-content: space-between;
- padding: 30px 0;
- width: 1200px;
- margin: 0 auto;
- }
|