shop-map.css 1.4 KB

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