37 lines
460 B
Plaintext
37 lines
460 B
Plaintext
|
|
.shopcard{
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
height: 80px;
|
||
|
|
gap: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.shopcard_img{
|
||
|
|
width: 120px;
|
||
|
|
height: 100%;
|
||
|
|
border-radius: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.shopcard_content{
|
||
|
|
height: 100%;
|
||
|
|
flex: 6;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 6px;
|
||
|
|
justify-content: space-around;
|
||
|
|
}
|
||
|
|
|
||
|
|
.shopcard_content_title{
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.shopcard_content_auth{
|
||
|
|
font-size: 10px!important;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.shopcard_num{
|
||
|
|
font-size: 10px;
|
||
|
|
display: flex;
|
||
|
|
gap: 20px;
|
||
|
|
color: #707070;
|
||
|
|
}
|