1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/shop/shop.wxss */
- @import "../../module/caritem/caritem.wxss"
- .shop_info{
- height: 194rpx;
- display: flex;
- }
- .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;
- width:20rpx;
- height: 20rpx;
- }
- /*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;
- }
- }
|