12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @import '../../app.less';
- .other-answer {
- border-bottom: 1px solid rgba(239, 243, 247, 1);
- position: relative;
- .title {
- color: #303036;
- font-size: 16px;
- margin-bottom: 10px;
- }
- .small-tag {
- display: inline-block;
- background: rgb(172, 206, 251);
- padding: 0 5px;
- border-radius: 5px;
- color: #fff;
- margin-bottom: 5px;
- font-size: 10px;
- }
- .desc {
- color: #686872;
- font-size: 16px;
- margin-bottom: 20px;
- }
- .icon {
- position: absolute;
- bottom: -18px;
- left: 50%;
- transform: translateX(-50%);
- display: none;
- }
- .super-open.more.hide {
- .desc {
- background: linear-gradient(360deg, rgba(161, 161, 171, 0) 0%, rgba(104, 104, 114, 1) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- }
- }
- .other-answer:hover {
- .super-open.more {
- .icon {
- display: block;
- }
- }
- }
|