1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* pages/student/menu/menu.wxss */
- page{
- background-color: #f5f5f5;
- }
- .menu{
- width: 690rpx;
- margin: 0 auto;
- margin-top: 20rpx;
- display: flex;
- flex-wrap:wrap;
- justify-content: center;
- background: #fff;
- border-radius: 10rpx;
- padding: 20rpx 10rpx;
- }
- .menu-list{
- width: 306rpx;
- height: 110rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: red;
- margin: 10rpx;
- border-radius: 10rpx;
- }
- .menu-icon{
- width: 44rpx;
- height: 44rpx;
- }
- .menu-title{
- margin-left: 20rpx;
- font-size: 34rpx;
- color: #fff;
- }
- /* 列表 */
- .list{
- margin-top: 20rpx;
- width: 100%;
- background: #fff;
- }
- .line{
- margin: 0 auto;
- width: 690rpx;
- height: 110rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #e5e5e5;
- }
- .line view{
- font-size: 30rpx;
- color:#333;
- }
- .line image{
- width: 14rpx;
- height: 26rpx;
- }
- .list :last-child .line {
- border-bottom:none;
- }
- .list-title{
- display: flex;
- height: 100%;
- align-items: center;
- }
- .list-title image{
- width: 36rpx;
- height: 36rpx;
- margin-left: 30rpx;
- }
- .list-title view{
- margin-left: 10rpx;
- }
|