12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .live-page{
- height: 100%;
- background-color: #000000;
- .swiper {
- width: 100%;
- height: 100%;
- }
- .swiper-slide{
- position: relative;
- background-repeat: no-repeat;
- background-position: center top;
- background-size: 100% 100%;
- }
- .post-footer{
- position: absolute;
- bottom: 0;
- height: 380px;
- color: white;
- padding: 50px 10px 120px;
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- background: linear-gradient(to top, #000000, rgba(255, 255, 255, 0));
- .user-dateil{
- display: flex;
- flex-direction: column;
- align-items: center;
- .avatar{
- width: 50px;
- height: 50px;
- border-radius: 50%;
- margin-bottom: 10px;
- }
- .btn{
- padding: 10px;
- border-radius: 30px;
- border: 1px solid;
- // margin:auto;
- }
- }
- .block{
- width: 100%;
- .tag{
- background: #fc4942;
- padding: 4px 6px;
- border-radius: 4px;
- display: inline-flex;
- align-items: center;
- img{
- width: 20px;
- }
- }
- .live-room{
- margin: 6px auto;
- font-weight: 600;
- }
- }
- }
- }
|