123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /* pages/my/my.wxss */
- .nav {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 36rpx;
- color: #000;
- padding: 0 5%;
- box-sizing: border-box;
- }
- .nav view {
- flex: 1;
- height: 89rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 89rpx;
- }
- .slecte-nav {
- background: #fff;
- }
- .my-information {
- padding: 0 16rpx;
- box-sizing: border-box;
- }
- .information-item {
- display: flex;
- align-items: center;
- width: 100%;
- height: 266rpx;
- margin-top: 27rpx;
- border-radius: 20rpx;
- background: #fff;
- padding: 0 25rpx;
- box-sizing: border-box;
- }
- .information-item image {
- width: 193rpx;
- height: 193rpx;
- border-radius: 50%;
- background: red;
- margin-right: 55rpx;
- }
- .information-item .set-name {
- display: flex;
- flex-direction: column;
- }
- .information-item .set-name .name {
- font-size: 40rpx;
- color: #424242;
- margin-bottom: 28rpx;
- }
- .information-item .set-name text {
- font-size: 32rpx;
- }
- .shaiwa {
- display: flex;
- align-items: center;
- width: 100%;
- height: 116rpx;
- margin-top: 27rpx;
- border-radius: 20rpx;
- background: #386ca9;
- padding: 0 25rpx;
- box-sizing: border-box;
- color: #fff;
- font-size: 40rpx;
- font-weight: 600;
- }
- .mengwa {
- display: flex;
- align-items: center;
- width: 100%;
- height: 116rpx;
- margin-top: 27rpx;
- border-radius: 20rpx;
- background: #fece00;
- padding: 0 25rpx;
- box-sizing: border-box;
- color: #000;
- font-size: 40rpx;
- font-weight: 600;
- }
- .my-collection {
- padding: 0 16rpx;
- box-sizing: border-box;
- }
- .collection-item {
- width: 100%;
- height: 266rpx;
- margin-top: 27rpx;
- border-radius: 20rpx;
- background: red;
- }
|