shop.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pages/shop/shop.wxss */
  2. @import "../../module/caritem/caritem.wxss"
  3. .shop_info{
  4. height: 194rpx;
  5. display: flex;
  6. }
  7. .shop_img{
  8. width: 218rpx;
  9. background-repeat: no-repeat;
  10. background-size: 180rpx 134rpx;
  11. background-position: 38rpx 30rpx;
  12. }
  13. .shop_detail{
  14. padding-left:15rpx;
  15. }
  16. .shop_detail_title{
  17. height: 48rpx;
  18. line-height: 48rpx;
  19. color: rgba(56, 55, 53, 1);
  20. font-size: 32rpx;
  21. margin-top:43rpx;
  22. }
  23. .shop_detail_address,.shop_detail_phone{
  24. height: 36rpx;
  25. line-height: 36rpx;
  26. color: rgba(104, 104, 104, 1);
  27. font-size: 24rpx;
  28. }
  29. .shop_detail_address image,.shop_detail_phone image{
  30. margin-top:8rpx;
  31. float: left;
  32. width:20rpx;
  33. height: 20rpx;
  34. }
  35. /*loading动画*/
  36. .loading {
  37. width: 40rpx;
  38. height: 40rpx;
  39. margin: 0px auto;
  40. background-color: #337ab7;
  41. border-radius: 100%;
  42. -webkit-animation: sk-spinner-pulse 1.0s infinite ease-in-out;
  43. animation: sk-spinner-pulse 1.0s infinite ease-in-out;
  44. }
  45. @-webkit-keyframes sk-spinner-pulse {
  46. 0% {
  47. -webkit-transform: scale(0);
  48. transform: scale(0);
  49. }
  50. 100% {
  51. -webkit-transform: scale(1);
  52. transform: scale(1);
  53. opacity: 0;
  54. }
  55. }
  56. @keyframes sk-spinner-pulse {
  57. 0% {
  58. -webkit-transform: scale(0);
  59. transform: scale(0);
  60. }
  61. 100% {
  62. -webkit-transform: scale(1);
  63. transform: scale(1);
  64. opacity: 0;
  65. }
  66. }