.
This commit is contained in:
@@ -39,10 +39,11 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
box-shadow: 0px -2px 4px 0px rgba(51, 51, 51, 0.06);
|
// box-shadow: 0px -2px 4px 0px rgba(51, 51, 51, 0.06);
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
padding-bottom: env(safe-area-inset-bottom);
|
padding-bottom: env(safe-area-inset-bottom);
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
border-top: 1px solid rgba(119, 119, 119, 0.25);
|
||||||
|
|
||||||
.cover-tabbar-item {
|
.cover-tabbar-item {
|
||||||
width: 20%;
|
width: 20%;
|
||||||
|
|||||||
@@ -61,9 +61,33 @@
|
|||||||
.record-li {
|
.record-li {
|
||||||
width: 25%;
|
width: 25%;
|
||||||
height: 272rpx;
|
height: 272rpx;
|
||||||
border: 1px solid #000;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 200%;
|
||||||
|
height: 200%;
|
||||||
|
border-right: 1px solid #000;
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
transform: scale(0.5);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
pointer-events: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
&:nth-child(4n + 1)::after {
|
||||||
|
border-left: 1px solid #000;
|
||||||
|
}
|
||||||
|
&:nth-child(1)::after,
|
||||||
|
&:nth-child(2)::after,
|
||||||
|
&:nth-child(3)::after,
|
||||||
|
&:nth-child(4)::after {
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -204,7 +204,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
box-shadow: 0px -2px 4px 0px rgba(51, 51, 51, 0.06);
|
// box-shadow: 0px -2px 4px 0px rgba(51, 51, 51, 0.06);
|
||||||
|
border-top: 1px solid rgba(119, 119, 119, 0.25);
|
||||||
|
|
||||||
&__item-wrapper {
|
&__item-wrapper {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
|||||||
Reference in New Issue
Block a user