12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* pages/user/user.wxss */
- .bodyclass{
- display: flex;
- flex-direction: column;
- height: 100%;
- background-color: #F4F6F7;
- }
- .diyi{
- height: 160px;
- background-color:#298DF7;
- }
- .diyi_yi{
- padding:15px 0px 0px 10px;
- font-size: 30rpx;
- color:#fff;
- }
- .diyi_er{
- border-radius: 50%;width: 70px;height: 70px;
- }
- .dier{
- margin-top:10px;
- flex: 100;
- }
- .diesan{
- flex: 15;
- }
- .btn-class{
- background-color: #298DF7;
- color:#fff;
- text-align: center;
- width: 80%;
- }
- .grids{
- display: flex;
- flex-wrap: wrap;
- border-left: 1rpx solid #eee;
- border-bottom: 1rpx solid #eee;
- font-size: 30rpx;
- }
- .grids .item{
- background-color: #fff;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-right: 1rpx solid #eee;
- border-top: 1rpx solid #eee;
- box-sizing: border-box;
- width: 33.33333333%;
- height: 250rpx;
- }
- .grids .item image{
- width: 70rpx;
- height: 70rpx;
- }
- .grids .item text{
- margin-top: 20rpx;
- color:#444444;
- }
|