123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .container{
- :global{
- .van-nav-bar .van-icon {
- color:#333;
- }
- .van-nav-bar__text{
- color:#01C1B5
- }
- }
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- .content{
- flex: 1;
- background-color: #F5F5F5;
- padding: 12px;
- .arrow {
- font-size: 18px;
- width: 20px;
- height: 20px;
- }
- .title{
- color: #333333;
- font-size: 18px;
- font-weight: 500;
- display: flex;
- align-items: center;
- &::before{
- content: '';
- display: block;
- width: 4px;
- height: 18px;
- border-radius: 2px;
- background-color: #01C1B5;
- margin-right: 6px;
- }
- }
- .items{
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- >div{
- margin-top: 20px;
- width: 33.333%;
- max-width: 180px;
- text-align: center;
- .inner {
- width: 105px;
- margin: 0 auto;
- }
- .img{
- margin-top: 0;
- }
- :global {
- .van-image, .van-image__error,.van-image__loading {
- width: 105px;
- min-height: 134px;
- }
- }
- >div{
- margin-top: 7px;
- font-size: 14px;
- font-weight: 500;
- color: #1A1A1A;
- line-height: 20px;
- }
- }
- }
- }
- }
|