1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .title {
- font-weight: Medium;
- font-size: 36rpx;
- color: #222222;
- }
- .text {
- font-size: 30rpx;
- }
- .text-small {
- font-size: 24rpx;
- }
- .flex-column {
- display: flex;
- flex-direction: column;
- }
- .shop-detail .detail-bottom {
- display: flex;
- justify-content: space-between;
- }
- .shop-detail .detail-bottom .detail-bottom-left {
- flex: 1;
- }
- .shop-detail .vr_btn {
- margin-top: -70rpx;
- width: 140rpx;
- height: 70rpx;
- border-radius: 40rpx;
- text-align: center;
- line-height: 70rpx;
- background-color: #46a9a4;
- float: right;
- }
- .shop-detail .detail-bottom .detail-bottom-left .shop-address {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- }
- .shop-detail .detail-bottom .detail-bottom-right {
- display: flex;
- align-items: center;
- }
- .shop-detail .detail-bottom .tool-box {
- padding: 20rpx;
- }
- .shop-detail .shop-rate {
- margin: 10rpx 0;
- }
- .shop-detail .shop-rate .shop-rate-text {
- color: #FF8936;
- }
|