shop-map.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .map {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. z-index: 1;
  6. bottom: 32px;
  7. }
  8. .info {
  9. color:#333;
  10. width: 60px;
  11. height: 60px;
  12. border:solid 2px currentColor;
  13. border-radius: 30px 30px 30px 0;
  14. -webkit-transform:rotate(-45deg);
  15. -moz-transform: ratate(-45deg);
  16. transform:rotate(-45deg);
  17. position: relative;
  18. background-color: #956bff;
  19. color: #fff;
  20. }
  21. .info.active {
  22. background-color: #815cdc;
  23. z-index: 998 !important;
  24. }
  25. .info span {
  26. -webkit-transform: rotate(-45deg);
  27. -moz-transform: ratate(-45deg);
  28. transform: rotate(45deg);
  29. display: block;
  30. text-align: center;
  31. line-height: 56px;
  32. width: 40px;
  33. display: -moz-box;
  34. text-overflow: '';
  35. line-clamp: 2;
  36. overflow: hidden;
  37. display: -webkit-box;
  38. -webkit-box-orient: vertical;
  39. word-wrap: break-word;
  40. word-break: break-all;
  41. margin-left: 8px;
  42. }
  43. /*
  44. .info {
  45. min-width: 5rem;
  46. max-width: 12rem;
  47. height: 2.5rem;
  48. line-height: 2.5rem;
  49. text-align: center;
  50. border: 2px dashed #956bff;
  51. padding: 0 .5rem;
  52. background-color: rgba(243, 240, 240, 0.8);
  53. font-weight: bold;
  54. overflow: hidden;
  55. text-overflow:ellipsis;
  56. white-space: nowrap;
  57. }
  58. */
  59. .weui-dialog__hd {
  60. border-bottom: 1px solid #ccc;
  61. margin-bottom: 2rem;
  62. }
  63. .weui-dialog__bd {
  64. text-align: left;
  65. }
  66. .weui-dialog__bd .item {
  67. margin-bottom: .5rem;
  68. }
  69. .weui-dialog__bd .mobile a{
  70. color: #956bff;
  71. }