12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/zzdy/components/mine/mine.wxss */
- .menu {
- margin: auto;
- margin-top: 40rpx;
- width: 650rpx;
- background: #ffffff;
- height: 200rpx;
- border-radius: 20rpx;
- box-shadow: 0 0 10rpx #ececec;
- display: flex;
- align-items: center;
- }
- .menu-hover {
- background: #f7f7f7;
- }
- .menu:nth-child(1) {
- margin-top: 0rpx;
- }
- .menu .icon {
- margin-left: 50rpx;
- width: 80rpx;
- height: 80rpx;
- }
- .menu .icon > image {
- width: 100%;
- height: auto;
- }
- .menu .infos {
- margin-left: 30rpx;
- flex: 1;
- height: 100rpx;
- }
- .menu .infos > view {
- width: 100%;
- height: 50%;
- line-height: 50rpx;
- }
- .menu .infos > view:nth-child(1) {
- font-size: 36rpx;
- font-weight: bold;
- color: #212121;
- }
- .menu .infos > view:nth-child(2) {
- font-size: 24rpx;
- color: #999999;
- }
- .menu .icon1 {
- margin-right: 50rpx;
- width: 50rpx;
- height: 50rpx;
- }
- .menu .icon1 > image {
- width: 100%;
- height: auto;
- }
|