/* pages/myAccount/index.wxss */ .container { min-height: calc(100vh - 190rpx); padding: 30rpx; padding-top: 160rpx; } .header { display: flex; justify-content: space-around; align-items: center; height: 200rpx; background: #1a191e; border-radius: 20rpx; } .header .item { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 86rpx; } .header .item>image { width: 42rpx; height: 42rpx; } .header .item>text { margin-top: 20rpx; font-size: 24rpx; line-height: 24rpx; color: rgba(255, 255, 255, 0.6); } .header .item>text:first-child { /* margin-top: -10rpx; */ color: #f3515c; font-size: 36rpx; line-height: 30rpx; font-weight: bold; } .title { margin-top: 50rpx; margin-bottom: 40rpx; color: #fff; font-size: 24rpx; line-height: 24rpx; } .list { display: flex; justify-content: space-between; flex-wrap: wrap; } .list .cell { display: flex; flex-direction: column; justify-content: center; align-items: center; width: calc((100% - 88rpx)/ 3); height: 140rpx; margin-bottom: 20rpx; border: 8rpx solid #3b3945; border-radius: 16rpx; color: rgba(255, 255, 255, 0.6); } .list .cell.isActive { color: #ffda2e; border-color: #ffda2e; } .list .cell .top>text:first-child { font-size: 20rpx; line-height: 20rpx; } .list .cell .top>text:last-child { font-size: 32rpx; font-weight: bold; line-height: 32rpx; } .list .cell .bottom { margin-top: 20rpx; font-size: 24rpx; line-height: 24rpx; } .footer-btn { height: 80rpx; margin: 100rpx; margin-bottom: 0rpx; background: #ffda2e; color: #252330; line-height: 80rpx; text-align: center; font-size: 30rpx; border-radius: 40rpx; }