123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- page {
- background-color: #f2f2f2;
- }
- .tab-item {
- width: 100%;
- box-sizing: border-box;
- background-color: #fff;
- flex-direction: row;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .tab-item .item {
- height: 80rpx;
- font-size: 32rpx;
- flex-direction: row;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .tab-item .item-checked {
- color: #6784f4;
- border-bottom: 2rpx #6784f4 solid;
- }
- .picker-item {
- width: 100%;
- background-color: #fff;
- padding: 30rpx;
- box-sizing: border-box;
- flex-direction: row;
- display: flex;
- align-items: center;
- }
- .weui-input {
- min-height: 60rpx;
- flex-direction: row;
- border: 2rpx solid #e5e5e5;
- border-radius: 8rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .weui-input .span {
- font-size: 24rpx;
- color: #666;
- margin-left: 16rpx;
- }
- .weui-input .imgjt {
- width: 26rpx;
- height: 14rpx;
- margin-left: 20rpx;
- margin-right: 16rpx;
- }
- scroll-view{
- width: 100%;
- height: 83vh;
- box-sizing: border-box;
- flex-direction: column;
- display: flex;
- padding: 20rpx 30rpx 0rpx 30rpx;
- }
- .list-item{
- width: 100%;
- height: 200rpx;
- flex-direction: row;
- display: flex;
- align-items: center;
- background-color: #fff;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- }
- .list-item .head-img{
- width: 140rpx;
- height: 140rpx;
- border-radius: 50%;
- margin-left: 50rpx;
- margin-right: 50rpx;
- border: 2rpx solid #e5e5e5;
- }
- .list-item .name{
- font-size: 30rpx;
- font-weight: 700;
- }
- .list-item .address{
- flex-direction: row;
- display: flex;
- align-items: center;
- }
- .list-item .address-img{
- width: 28rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .list-item .create-time{
- font-size: 26rpx;
- color: #666;
- }
|