123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .mediaPic {
- position: relative;
- display: inline-flex;
- width: 64px;
- height: 36px;
- background: #eef1f4;
- color: #c4c7cc;
- border-radius: 4px;
- overflow: hidden;
- justify-content: center;
- >img {
- max-width: 100%;
- max-height: 100%;
- vertical-align: middle;
- display: inline-block;
- object-fit: contain;
- }
- .mediaPicVideo {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- background-color: rgba(0, 0, 0, .1);
- display: flex;
- justify-content: center;
- align-items: center;
- &>img {
- width: 20px;
- height: 20px;
- display: inline-block;
- cursor: pointer;
- }
- }
- }
- .mediaPic-imgList {
- display: flex;
- flex-wrap: wrap;
- width: 36px;
- height: 36px;
- justify-content: center;
- align-items: center;
- gap: 1px;
- >img {
- max-width: 100%;
- box-sizing: border-box;
- max-height: 100%;
- object-fit: contain;
- }
- }
- .mediaPicPopover {
- width: 280px;
- height: auto;
- >img {
- width: 100%;
- }
- .mediaPic-imgList {
- width: 100%;
- height: auto;
- }
- }
- .mediaPicPopoverContent {
- .ant-popover-inner {
- border-radius: 6px;
- }
- .ant-popover-inner-content {
- padding: 4px 6px;
- }
- }
- .video {
- width: 100%;
- max-width: 320px;
- max-height: 600px;
- display: block;
- margin: auto;
- }
- .mediaPic-C {
- .mediaPic-imgList {
- width: 100%;
- height: 100%;
- }
- }
|