123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /* pages/shop/shop.wxss */
- @import "../../module/caritem/caritem.wxss"
- .shop_info{
- height: 194rpx;
- display: flex;
- background-color: white;
- }
- .shop_img{
- width: 218rpx;
- background-repeat: no-repeat;
- background-size: 180rpx 134rpx;
- background-position: 38rpx 30rpx;
- }
- .shop_detail{
- padding-left:15rpx;
- }
- .shop_detail_title{
- height: 48rpx;
- line-height: 48rpx;
- color: rgba(56, 55, 53, 1);
- font-size: 32rpx;
- margin-top:43rpx;
- }
- .shop_detail_address,.shop_detail_phone{
- height: 36rpx;
- line-height: 36rpx;
- color: rgba(104, 104, 104, 1);
- font-size: 24rpx;
- }
- .shop_detail_address image,.shop_detail_phone image{
- margin-top:8rpx;
- float: left;
- margin-right: 10rpx;
- width:20rpx;
- height: 20rpx;
- }
- .total_count{
- margin-top: 30rpx;
- background-color: #F9F9F9;
- height: 30rpx;
- line-height: 30rpx;
- color: rgba(0, 0, 0, 1);
- font-size: 26rpx;
- font-family: PingFangSC-Medium,NotoSansHans-Medium;
- text-indent: 38rpx;
- }
- .total_count_n{
- color: rgba(135, 135, 135, 1);
- font-size: 24rpx;
- text-align: left;
- font-weight: normal;
- display:inline;
- }
- /*loading动画*/
- .loading {
- width: 40rpx;
- height: 40rpx;
- margin: 0px auto;
- background-color: #337ab7;
- border-radius: 100%;
- -webkit-animation: sk-spinner-pulse 1.0s infinite ease-in-out;
- animation: sk-spinner-pulse 1.0s infinite ease-in-out;
- }
- @-webkit-keyframes sk-spinner-pulse {
- 0% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 0;
- }
- }
- @keyframes sk-spinner-pulse {
- 0% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 0;
- }
- }
|