1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .container {
- background-color: #f3f3f3;
- }
- .headerBox{
- margin: 30rpx;
- display: flex;
- justify-content: left;
- align-items: center;
- }
- .headerImg{
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- .headerTxt{
- font-size: 40rpx;
- color: #555;
- }
- .contentBox{
- height: calc(100% - 260rpx);
- overflow-y: auto;
- }
- .userBox{
- padding: 20rpx 0;
- margin: 0 30rpx;
- background-color: #fff;
- border-radius: 20rpx;
- border-top: 2rpx #3e6ffd solid;
- }
- .userItemBox{
- display: inline-block;
- vertical-align: middle;
- width: calc(50% - 60rpx);
- margin: 20rpx 30rpx;
- }
- .userItem{
- position: relative;
- }
- .userItemBGImg{
- width: 100%;
- height: 100%;
- }
- .userItemText{
- position: absolute;
- bottom: 35%;
- left: 0rpx;
- width: calc(100% - 40rpx);
- padding: 0 20rpx;
- text-align: center;
- font-size: 40rpx;
- line-height: 42rpx;
- color: #000;
- }
- .userItemTextActive{
- color: #fff;
- }
- .fway-btnBox{
- padding: 40rpx 0 20rpx;
- }
- .fway-btn{
- height: 90rpx;
- line-height: 90rpx;
- border-radius: 30rpx;
- width: calc(100% - 60rpx);
- font-size: 40rpx;
- }
- .noneTips{
- text-align: center;
- color: #555;
- font-size: 36rpx;
- padding: 50rpx 0;
- }
|