1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* required by usingComponents */
- /* pages/mine_data/mine_data.wxss */
- page {
- background-color: #f2f3f5;
- }
- .mine-data {
- margin-top: 20rpx;
- }
- .mine-data-list {
- background-color: #fff;
- padding: 0 40rpx;
- }
- .list-item {
- height: 100rpx;
- line-height: 100rpx;
- font-size: 28rpx;
- border-bottom: solid 1rpx #e5e5e5;
- }
- .list-item:last-child {
- border: none;
- }
- .iconfont {
- float: right;
- font-size: 28rpx;
- color: #cccccc;
- }
- .exit{
- width:60%;
- margin: 0 auto;
- margin-top: 80rpx;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- border: solid 1rpx var(--globleColor);
- color: var(--orgFont);
- background-color: #fff;
- font-size: 28rpx;
- border-radius: 50rpx;
- }
|