.component-tab-container{
|
display: flex;
|
.tab-item{
|
display: flex;
|
text-align: center;
|
border-radius: 8rpx;
|
border: 2rpx solid var(--topicolor);
|
background: #fff;
|
color: var(--topicolor);
|
}
|
.tab-item.cur{
|
background: var(--topicolor);
|
border-radius: 0rpx 8rpx 8rpx 0rpx;
|
}
|
}
|
.component-button-upload{
|
width: 96rpx;
|
height: 96rpx;
|
border-radius: 4rpx;
|
border: 2rpx solid #CECECE;
|
position: relative;
|
background-image: 100% 100%;
|
&::after{
|
content: "+";
|
position: absolute;
|
left: 50%;
|
top: 50%;
|
transform: translate(50%,50%);
|
// width: 22rpx;
|
// height: 22rpx;
|
font-size: 24rpx;
|
color: #000000;
|
}
|
}
|