| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- .map {
- width: 100%;
- height: 100%;
- position: relative;
- z-index: 1;
- bottom: 32px;
- }
- .info {
- color:#333;
- width: 60px;
- height: 60px;
- border:solid 2px currentColor;
- border-radius: 30px 30px 30px 0;
- -webkit-transform:rotate(-45deg);
- -moz-transform: ratate(-45deg);
- transform:rotate(-45deg);
- position: relative;
- background-color: #956bff;
- color: #fff;
- }
- .info.active {
- background-color: #815cdc;
- z-index: 998 !important;
- }
- .info span {
- -webkit-transform: rotate(-45deg);
- -moz-transform: ratate(-45deg);
- transform: rotate(45deg);
- display: block;
- text-align: center;
- line-height: 56px;
- width: 40px;
- display: -moz-box;
- text-overflow: '';
- line-clamp: 2;
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- word-wrap: break-word;
- word-break: break-all;
- margin-left: 8px;
- }
- /*
- .info {
- min-width: 5rem;
- max-width: 12rem;
- height: 2.5rem;
- line-height: 2.5rem;
- text-align: center;
- border: 2px dashed #956bff;
- padding: 0 .5rem;
- background-color: rgba(243, 240, 240, 0.8);
- font-weight: bold;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- */
- .weui-dialog__hd {
- border-bottom: 1px solid #ccc;
- margin-bottom: 2rem;
- }
- .weui-dialog__bd {
- text-align: left;
- }
- .weui-dialog__bd .item {
- margin-bottom: .5rem;
- }
- .weui-dialog__bd .mobile a{
- color: #956bff;
- }
|