1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .YtableVideo {
- display: flex;
- justify-content: center;
- :global {
- .TvideoBox {
- cursor: pointer;
- width: 60px;
- height: 60px;
- position: relative;
- .TvideoBoxLook {
- position: absolute;
- z-index: 10;
- opacity: 0;
- transition: opacity 0.3s;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 14px;
- color: #fff;
- background-color: rgba(0, 0, 0, 0.6);
- .anticon-eye {
- font-size: 18px;
- }
- }
- video {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- &:hover {
- .TvideoBoxLook {
- opacity: 1;
- }
- }
- }
- }
- }
|