1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .saomiao{
- display: flex;
- justify-content: center;
- align-items: center;
- width: 150rpx;
- height: 60rpx;
- }
- .tapbtn[plain]{
- padding: 0;
- border: none;
- width: 220rpx;
- height: 220rpx;
- }
- .zhaohuan{
- display: flex;
- justify-content: end;
- align-items: center;
- width: 150rpx;
- height: 60rpx;
- }
- .shibietu{
- display: flex;
- justify-content: end;
- align-items: center;
- width: 150rpx;
- height: 60rpx;
- }
- .wenzi{
- display: flex;
- justify-content: center;
- align-items: center;
- width: 150rpx;
- height: 60rpx;
- }
- .img-size {
- width: 100%;
- margin: auto;
-
- }
- .swiper-container {
- z-index: 999; /* 设置一个足够高的值,确保在大多数情况下都位于最上方 */
- position: relative; /* 确保 z-index 生效的前提是,元素的 position 属性不是 static */
- width: 100vw; /* 设置 swiper 宽度为屏幕宽度 */
- height: 100vh; /* 设置 swiper 高度为屏幕高度 */
- }
-
- /* 如果 Swiper 的子元素也需要显示在最上方,可以设置其 z-index */
- .swiper-slide {
- z-index: 999;
- }
- .liucheng-img {
- width: 100%;
- height: 100%;
-
- }
- .item {
- height: 100%;
- width: 100%;
- }
-
|