123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /* dispatcher/pages/me/me.wxss */
- @import '../../../templates/footer/footer.wxss';
- .header {
- padding: 40rpx 30rpx;
- background: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .header-row {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-top: 18rpx;
- }
- .header-row:nth-of-type(1) {
- margin-top: 0;
- }
- .header-col {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .header-flex {
- flex: 1;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .header-images {
- position: relative;
- margin-right: 30rpx;
- }
- .header-image {
- width: 148rpx;
- height: 148rpx;
- border-radius: 200rpx;
- }
- .header-icon {
- position: absolute;
- right: 0;
- bottom: 0;
- width: 40rpx;
- height: 40rpx;
- }
- .header-text-black {
- font-size: 38rpx;
- color: #333;
- }
- .header-button {
- border-radius: 100rpx;
- border: 1rpx solid rgba(0,183,255,1);
- font-size: 30rpx;
- color: #00B7FF;
- padding: 8rpx 20rpx;
- margin-left: 20rpx;
- }
- .header-icon-two {
- width: 30rpx;
- height: 34rpx;
- margin-right: 14rpx;
- }
- .header-text {
- font-size: 28rpx;
- color: #999;
- }
- .header-arrow {
- width: 14rpx;
- height: 24rpx;
- }
- .section-list {
- margin: 20rpx;
- background:rgba(255,255,255,1);
- border-radius: 18rpx;
- }
- .section-li {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx;
- border-bottom: solid 1rpx #e6e6e6;
- cursor: pointer;
- }
- .section-li:nth-last-of-type(1) {
- border-bottom: solid 1rpx transparent;
- }
- .section-arrow {
- width: 14rpx;
- height: 24rpx;
- }
- .section-icon {
- width: 36rpx;
- height: 36rpx;
- margin-right: 20rpx;
- }
- .section-text {
- font-size: 30rpx;
- color: #666;
- }
- .modal-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.5);
- z-index: 999;
- }
- .modal-wrapper {
- position: absolute;
- top: 240rpx;
- left: 50%;
- width: 710rpx;
- transform: translateX(-50%);
- background: rgba(255,255,255,1);
- border-radius: 18rpx;
- }
- .modal-wrapper::after {
- content: "";
- position: absolute;
- left: 60rpx;
- top: -20rpx;
- border-left: solid 20rpx transparent;
- border-right: solid 20rpx transparent;
- border-bottom: solid 25rpx #fff;
- }
- .modal-li {
- border-bottom: solid 1rpx #E6E6E6;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 40rpx;
- }
- .modal-li:nth-last-of-type(1) {
- border-bottom: none;
- }
- .modal-row {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .modal-image {
- width: 98rpx;
- height: 98rpx;
- border-radius: 200rpx;
- margin-right: 30rpx;
- }
- .modal-text {
- font-size: 32rpx;
- color: #999;
- }
- .modal-icon {
- width: 30rpx;
- height: 24rpx;
- margin-left: 30rpx;
- }
|