TestEShopDist/src/components/moveBtn/index.module.scss
2023-03-14 14:27:02 +08:00

100 lines
1.8 KiB
SCSS

.movableItem {
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
overflow: hidden;
flex-flow: column nowrap;
}
.moveBtn {
width: 100px;
height: 100px;
border-radius: 50%;
border: 2px solid #cde5ff;
box-shadow: 0px 0px 20px 0px rgba(104, 180, 255, 0.7);
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
z-index: 1300;
position: fixed;
image {
width: 100%;
height: 100%;
}
.shop_icon {
font-size: 70px;
color: $color_main;
}
.product_num {
position: absolute;
font-size: 23px;
background-color: red;
color: #fff;
height: 36px;
line-height: 36px;
padding: 0 6px;
border-radius: 72px;
min-width: 25px;
text-align: center;
top: 0;
right: 0;
}
.wxBtn {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
}
}
.no_bg_moveBtn {
box-shadow: none;
background-color: transparent;
border: none;
width: 130px;
height: 130px;
}
.no_bg_moveBtn_next {
box-shadow: none;
background-color: transparent;
border: none;
width: 200px;
height: 130px;
}
.no_bg_moveBtn_next_ever {
display: none;
}
.video_box {
border-radius: 16px;
width: 300px;
height: 300px;
// background-color: red;
position: relative;
.clearBtn {
z-index: 9999;
position: absolute;
top: 20px;
right: 10px;
}
.bottom_box {
width: 100%;
position: absolute;
bottom: -100px;
z-index: 999;
text-align: center;
width: 100%;
height: 40px;
line-height: 40px;
background-color: #337fff;
color: #fff;
border-bottom-left-radius: 16px;
border-bottom-right-radius: 16px;
font-size: 26px;
}
}