1234567891011121314151617181920212223242526272829303132 |
- .vip{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- height: 250px;
- border-radius: 14px;
- background-color: #fff;
- padding: 20PX 30PX;
- padding-top: 30PX;
- min-width: 230PX;
- >img{
- width: 161PX;
- margin-bottom: 20PX;
- }
- >p{
- margin: 0;
- font-size: 14PX;
- color: #808080;
- margin-bottom: 20PX;
- }
- .btn{
- font-size: 16PX;
- height: 40PX;
- line-height: 40PX;
- width: 100%;
- }
- &+i{
- right: 10PX;
- top: 10PX;
- }
- }
|