| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- page{
- background-color: $page-bg;
- color: $uni-text-color;
- }
- /* 基本信息样式 */
- .nav{
- .nav-content{
- padding: 30rpx 0;
- background-color: $uni-bg-color;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- .nav-item{
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 33.3%;
- height: 150rpx;
- margin: 40rpx 0;
- span{
- //display: block;
- font-size: 72rpx;
- color:$j-primary-border-green ;
- padding-bottom: 15rpx;
- }
- label{
- //color:$uni-text-color-grey ;
- font-size: $uni-font-size-base;
- }
- .badge {
- position: absolute;
- top: -8rpx;
- left: 140rpx;
- font-size: 24rpx;
- padding: 0rpx 10rpx;
- border-radius: 38rpx;
- background-color: #ff4949;
- color: #fff;
- font-style: normal;
- }
- }
- }
- }
|