123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .comment-item-speak-audio-container {
- background-color: #f5f5f5;
- border: 1px solid rgba(210, 210, 210, 1);
- border-radius: 4px;
- display: flex;
- align-items: center;
- height: 100%;
-
- .icon {
- cursor: pointer;
- width: 28px;
- height: 28px;
- line-height: 28px;
- text-align: center;
- border-radius: 14px;
- background-color: #fff;
- color: #71c135;
- margin-left: 12px;
- font-size: 14px;
- }
-
- .icon-loading {
- width: 100%;
- height: 100%;
- }
-
- .slider {
- margin: 0 0 0 16px;
- width: 195px;
-
- :global {
- .ant-slider-rail {
- background-color: #dfdfdf;
- }
- }
- }
-
- .time {
- margin-left: 14px;
- color: #848484;
- font-size: 12px;
- }
- }
-
- @media screen and (max-width: 616px) and (min-width: 449px) {
- .comment-item-speak-audio-container {
- .slider {
- width: 195px;
- }
- }
- }
- @media screen and (max-width: 449px) and (min-width: 365px) {
- .comment-item-speak-audio-container {
- .slider {
- width: 114px;
- }
- }
- }
- @media screen and (max-width: 365px) {
- .comment-item-speak-audio-container {
- .slider {
- width: 60px;
- }
- }
- }
|