parent
f03fe68d93
commit
311558a3a7
@ -0,0 +1,52 @@
|
|||||||
|
.menu_item {
|
||||||
|
width: 260px;
|
||||||
|
height: 32px;
|
||||||
|
background: linear-gradient(180deg, #4AB4E4 0%, #A2E1FF 100%);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #FFFFFF;
|
||||||
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.triangle {
|
||||||
|
position: absolute;
|
||||||
|
right: 20px;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-left: 6px solid #fff;
|
||||||
|
border-bottom: 6px solid transparent;
|
||||||
|
border-top: 6px solid transparent;
|
||||||
|
transition: all 0.15s ease-in;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item_warp {
|
||||||
|
transition: all 2s ease-in;
|
||||||
|
|
||||||
|
.item1 {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin: 20px 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item1_img {
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
background-color: saddlebrown;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item1_name {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #1A374A;
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue