123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /* pages/me/me.wxss */
- .containerss {
- padding: 20rpx 30rpx;
- background-color: #f5f5f5;
- height: calc(100vh - 40rpx);
- }
- .user-info {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .avatar {
- width: 140rpx;
- height: 140rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- background-color: palegreen
- }
- .info .name {
- font-size: 34rpx;
- color: #333;
- }
- .info .role {
- font-size: 24rpx;
- color: #999;
- margin-top: 10rpx;
- margin-left: 40rpx;
- }
- .info_view2 {
- font-size: 22rpx;
- padding: 10rpx 16rpx;
- background: #ecf5ff;
- border-radius: 30rpx;
- border: 1rpx solid #d9ecff;
- display: inline-block;
- color: #409eff;
- margin-top: 16rpx;
- }
- .phone-binding {
- display: flex;
- background-color: #fff;
- padding: 40rpx 20rpx;
- border-radius: 16rpx;
- margin: 20rpx 0;
- }
- .phone-binding text {
- font-size: 28rpx;
- color: #666;
- }
- .phone-binding navigator {
- font-size: 24rpx;
- color: #007aff;
- margin-left: 10rpx;
- }
- .order-status {
- display: flex;
- justify-content: space-between;
- margin: 40rpx 0;
- }
- .status-item {
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- }
- .circle {
- width: 110rpx;
- height: 110rpx;
- background-color: #ccc;
- border-radius: 50%;
- margin-right: 10rpx;
- }
- .history {
- background-color: #fff;
- padding: 20rpx;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- }
- .title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .title text {
- font-size: 32rpx;
- color: #333;
- }
- .title navigator {
- font-size: 28rpx;
- color: #007aff;
- }
- .items {
- margin-top: 30rpx;
- }
- .items .item {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .thumbnail {
- width: 130rpx;
- height: 130rpx;
- margin-right: 20rpx;
- background: palegreen;
- border-radius: 12rpx;
- }
- .details .name {
- font-size: 32rpx;
- color: #333;
- }
- .details {
- width: 440rpx;
- }
- .details .date {
- font-size: 28rpx;
- color: #999;
- margin-top: 10rpx;
- }
- .logout-btn {
- width: 100% !important;
- height: 80rpx;
- background-color: #007aff;
- color: #fff;
- font-size: 32rpx;
- border-radius: 40rpx;
- }
- .xiazai_img {
- width: 45rpx;
- height: 40rpx;
- float: right;
- }
- .search-icon {
- width: 100%;
- height: 100%;
- }
|