.app_header { display: flex; align-items: center; height: 100rpx; background-color: #fff; padding: 0 40rpx; .location { width: 30rpx; } .add { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0 10rpx; font-weight: 500; font-size: 30rpx; } .right { display: flex; align-items: center; justify-content: flex-end; font-size: 26rpx; width: 160rpx; image{ width: 28rpx; margin-right: 10rpx; } } } .main_content { padding: 40rpx; min-height: calc(100vh - 100rpx); background-color: #F7F7F7; .app_title { font-weight: 600; font-size: 36rpx; margin-bottom: 40rpx; } .shops { .shop { width: 670rpx; height: 362rpx; background: linear-gradient(180deg, #F2E7E1 0%, #FEFEFD 30%, #FFFFFF 100%); border-radius: 8rpx; margin-bottom: 20rpx; padding: 30rpx; .header{ display: flex; align-items: center; .left{ flex: 1; .title{ width: 520rpx; font-weight: 500; font-size: 32rpx; white-space: nowrap; overflow: hidden;//文本超出隐藏 text-overflow: ellipsis; margin-bottom: 16rpx; } .address{ width: 520rpx; display: flex; align-items: center; white-space: nowrap; overflow: hidden;//文本超出隐藏 text-overflow: ellipsis; font-size: 26rpx; color: #888888; image{ width: 13rpx; margin-left: 8rpx; } } } .right{ width: 60rpx; font-size: 24rpx; color: #333333; text-align: center; margin-left: 20rpx; .phone{ width: 60rpx; margin-bottom: 4rpx; } } } .user_list{ display: flex; padding: 24rpx 10rpx; .item{ width: 240rpx; height: 180rpx; padding: 20rpx 0; background: #FFFFFF; box-shadow: 0rpx 0rpx 10rpx rgba(0,0,0,0.12); border-radius: 8rpx; margin-right: 20rpx; flex-shrink: 0; .info{ display: flex; align-items: center; padding: 0 20rpx 14rpx; border-bottom: 1rpx solid #eeeeee; .avatar{ width: 72rpx; height: 72rpx; border-radius: 50%; margin-right: 16rpx; } .name{ width: 120rpx; overflow: hidden; text-overflow: ellipsis; //文本溢出显示省略号 white-space: nowrap; //文本不会换行 } .ex{ font-size: 24rpx; color: #999999; margin-top: 4rpx; } } .btn{ display: flex; justify-content: center; align-items: center; height: 66rpx; font-weight: 500; font-size: 26rpx; color: var(--themeColor); } } } } } }