1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* pages/work/index.wxss */
- .w_body{
- width: 100%;
- height: 100%;
- }
- .w_body > .work{
- width: 100%;
- height: 100%;
- }
- .w_video{
- background: #fff;
- position: fixed;
- top: 40%;
- left: 50%;
- transform: translate(-50%,-50%);
- z-index: 9999;
- padding: 16rpx;
- font-size: 0;
- width: 90%;
- }
- .w_video > video,.w_video > image{
- width: 100%;
- }
- .work_bg{
- position: fixed;
- z-index: 999;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .work_bg::after{
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.7);
- }
- .w_btn{
- position: fixed;
- z-index: 9999;
- left: 0;
- bottom: 10%;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .w_btn>image{
- width: 40%;
- }
|