1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .item-info {
- width: 690rpx;
- min-height: 222rpx;
- padding: 32rpx 16rpx 28rpx 38rpx;
- margin: 0 auto 20rpx;
- border-radius: 24rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.1);
- }
- .item-info .top {
- display: flex;
- justify-content: space-between;
- }
- .logo {
- width: 100rpx;
- height: 100rpx;
- border-radius: 5rpx;
- overflow: hidden;
- }
- .logo image {
- display: block;
- width: 100%;
- height: 100%;
- }
- .info {
- width: 400rpx;
- padding: 0 20rpx;
- }
- .info .name {
- line-height: 44rpx;
- font-size: 30rpx;
- color: rgba(51, 51, 51, 1);
- word-break: break-all;
- word-wrap: break-word;
- }
- .info .goods-count {
- margin-top: 22rpx;
- font-size: 24rpx;
- line-height: 34rpx;
- color: rgba(102, 102, 102, 1);
- }
- .top .btn-contact {
- width: 136rpx;
- height: 50rpx;
- border-radius: 16rpx;
- border: 2rpx solid rgba(145, 179, 121, 1);
- line-height: 46rpx;
- font-size: 24rpx;
- color: rgba(145, 179, 121, 1);
- background-color: transparent;
- }
- .item-info .bottom {
- display: flex;
- align-items: center;
- margin-top: 24rpx;
- }
- .item-info .bottom .tel,
- .item-info .bottom .wechat {
- font-size: 24rpx;
- color: rgba(153, 153, 153, 1);
- background-color: transparent;
- white-space: nowrap;
- }
- .item-info .bottom .tel {
- width: 228rpx;
- }
- .item-info .bottom .wechat {
- width: calc(100% - 228rpx);
- padding-left: 84rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- }
|