12345678910111213141516171819202122232425262728293031323334353637 |
- @charset "utf-8";
- #course-answer {
- .top {
- height: 60px;
- line-height: 60px;
- }
- .center {
- background: #fff;
- border-radius: 14px;
- padding: 20px;
- .answer-item {
- border-bottom: 1px solid #eee;
- padding-top: 20px;
- padding-left: 15px;
- .small-tag {
- display: inline-block;
- height: 16px;
- background: rgba(163, 207, 255, 1);
- border-radius: 2px;
- color: #fff;
- line-height: 16px;
- font-size: 10px;
- padding: 0 9px;
- }
- .desc {
- color: #303139;
- margin-bottom: 20px;
- }
- }
- }
- }
|