| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- /* pages/work/index.wxss */
- .w_body {
- position: relative;
- 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;
- font-size: 0;
- width: calc(100% - 40rpx);
- box-sizing: border-box;
- background: no-repeat center / 100% 100%;
- }
- .w_video > video,
- .w_video > image {
- width: 100%;
- height: 400px;
- }
- .fill-img{
- width: 100%;
- height: 600rpx;
- }
- .w_video.fill-img .zoom-scroll {
- width: 100%;
- height: 100%;
- overflow-x: scroll;
- }
- .w_video.fill-img .zoom-image {
- height: 600rpx;
- width: auto;
- display: block;
- }
- .work_bg,
- .work_bg_filter {
- position: fixed;
- z-index: 999;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .work_bg.filter::after {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.7);
- }
- .work_bg_filter {
- z-index: 1000;
- }
- .w_btn {
- position: fixed;
- z-index: 9999;
- left: 0;
- bottom: 0;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .w_btn > view:not(:nth-child(2)) {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .w_btn image {
- width: 240rpx;
- }
- .btn_paise__border {
- width: 4rpx;
- height: 89rpx;
- background: #d9d9d9;
- }
- .top_bar {
- position: fixed;
- top: 0; /* Adjusted to be below standard header or just visually placed */
- left: 0;
- width: 100%;
- padding: 40rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- z-index: 10001;
- pointer-events: none;
- }
- .zoom_tip {
- display: flex;
- flex-direction: row;
- align-items: center;
- pointer-events: auto;
- }
- .zoom_tip image {
- width: 60rpx;
- height: 60rpx;
- margin-right: 10rpx;
- margin-bottom: 0;
- animation: swipe 1.5s infinite;
- }
- .zoom_tip text {
- color: #fff;
- font-size: 28rpx;
- text-shadow: 0 2rpx 4rpx rgba(0,0,0,0.5);
- }
- .w_zoom {
- margin-left: auto;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 2rpx solid #fff;
- border-radius: 40rpx;
- padding: 10rpx 30rpx;
- color: #fff;
- font-size: 28rpx;
- pointer-events: auto;
- }
- .w_zoom image {
- width: 40rpx;
- height: 40rpx;
- margin-right: 10rpx;
- }
- @keyframes swipe {
- 0% { transform: translateX(-10rpx); }
- 50% { transform: translateX(10rpx); }
- 100% { transform: translateX(-10rpx); }
- }
- .ip-list {
- position: fixed;
- left: 0;
- bottom: 140rpx;
- width: 100%;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- background: rgba(255, 255, 255, 0.96);
- z-index: 10002;
- }
- .ip-scroll {
- max-height: 300rpx;
- }
- .ip-grid {
- display: flex;
- flex-wrap: wrap;
- }
- .ip-item-wrapper {
- width: 25%;
- padding: 10rpx 0;
- display: flex;
- justify-content: center;
- }
- .ip-item {
- width: 140rpx;
- height: 140rpx;
- border-radius: 16rpx;
- background: #f5f5f5;
- }
- .ip-item__active {
- border: 4rpx solid #ff9900;
- box-sizing: border-box;
- }
- .ip-overlay {
- position: absolute;
- right: 40rpx;
- bottom: 40rpx;
- min-width: 140rpx;
- max-width: 220rpx;
- min-height: 160rpx;
- max-height: 240rpx;
- z-index: 10001;
- }
- .ip-main {
- min-width: 140rpx;
- max-width: 220rpx;
- min-height: 160rpx;
- max-height: 240rpx;
- }
- .ip-btn {
- position: absolute;
- width: 84rpx;
- height: 84rpx;
- }
- .ip-btn__rotate {
- top: -28rpx;
- left: -28rpx;
- }
- .ip-btn__scale {
- top: -28rpx;
- right: -28rpx;
- }
- .ip-btn__delete {
- bottom: -28rpx;
- left: -28rpx;
- }
- .ip-btn__confirm {
- bottom: -28rpx;
- right: -28rpx;
- }
- .ip-overlay__confirmed .ip-btn {
- display: none;
- }
|