123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /* pages/modify-mine/modify-mine.wxss */
- @import '../../wxParse/wxParse.wxss';
- page {
- background-color: #F5F6FA;
- }
- .head-bg {
- width: 100%;
- overflow: hidden;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1;
- }
- .wrap {
- width: 100%;
- position: fixed;
- left: 0;
- top: 0;
- background-color: rgba(0, 0, 0, 0);
- z-index: 999999999;
- display: flex;
- align-items: center;
- }
- .title {
- width: 100%;
- height: 30px;
- line-height: 30px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 16px;
- color: #fff;
- position: absolute;
- bottom: 12px;
- left: 0;
- }
- .return {
- height: 30px;
- position: absolute;
- bottom: 12px;
- left: 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 12px;
- box-sizing: border-box;
- z-index: 9999999999;
- }
- .back-icon {
- width: 10px;
- }
- .container-wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .module {
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- margin: 20rpx 0;
- padding: 22rpx 30rpx;
- box-sizing: border-box;
- }
- .item {
- width: 100%;
- display: flex;
- flex-direction: column;
- margin-bottom: 20rpx;
- }
- .item:last-child {
- margin-bottom: 0;
- }
- .item-title {
- color: #333333;
- font-size: 30rpx;
- margin-bottom: 10rpx;
- }
- .item-msg {
- width: 100%;
- color: #999999;
- font-size: 26rpx;
- }
- .normal-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: 30rpx;
- color: #999999;
- padding: 280rpx 0;
- }
- .normal-box>image {
- width: 420rpx;
- }
- .normal-box>text {
- margin-top: -56rpx;
- }
|