|
@@ -7111,4 +7111,181 @@ a.hasHover.tag-link:hover {
|
|
|
}
|
|
|
#menudiv>div>div{
|
|
|
pointer-events:none;
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+ /* 房间标签的样式 */
|
|
|
+.widgets-doll-labels,
|
|
|
+#otherLabels {
|
|
|
+ overflow: hidden;
|
|
|
+ position: absolute;
|
|
|
+ pointer-events: none;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ right: 0;
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label {
|
|
|
+ position: absolute;
|
|
|
+ width: 0;
|
|
|
+ height: 0;
|
|
|
+ /* display: none; */
|
|
|
+ -webkit-transform: translateZ(0);
|
|
|
+ transform: translateZ(0);
|
|
|
+ -webkit-animation: room-label 0.3s ease 0.1s;
|
|
|
+ animation: room-label 0.3s ease 0.1s;
|
|
|
+ -webkit-animation-fill-mode: both;
|
|
|
+ animation-fill-mode: both;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+/* .widgets-doll-labels .room-label.visible {
|
|
|
+ display: block
|
|
|
+} */
|
|
|
+.widgets-doll-labels .room-label:not(.noLine):after {
|
|
|
+ content: "";
|
|
|
+ display: block;
|
|
|
+ position: absolute;
|
|
|
+ width: 4px;
|
|
|
+ height: 68px;
|
|
|
+ background-image: url("../images/labelline.svg");
|
|
|
+ background-size: contain;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ bottom: 0;
|
|
|
+ left: 50%;
|
|
|
+ -webkit-transform: translate(-50%);
|
|
|
+ transform: translate(-50%);
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label a {
|
|
|
+ display: block;
|
|
|
+ position: absolute;
|
|
|
+ line-height: 22px;
|
|
|
+ top: -66px;
|
|
|
+ transform: translate(-50%, -100%);
|
|
|
+ text-align: center;
|
|
|
+ white-space: nowrap;
|
|
|
+ font-size: 14px;
|
|
|
+ font-style: normal;
|
|
|
+ pointer-events: auto;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background: rgba(210, 210, 210, 0.7);
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.4);
|
|
|
+ border-radius: 3px;
|
|
|
+ text-shadow: 0px 1px 3px #000000;
|
|
|
+ min-height: 24px;
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label a:hover {
|
|
|
+ color:#fff;
|
|
|
+}
|
|
|
+
|
|
|
+.widgets-doll-labels .room-label.selected a{
|
|
|
+ background: rgb(0 0 0 / 88%);
|
|
|
+ border: 2px solid rgb(255 255 255);
|
|
|
+ border-radius: 3px;
|
|
|
+ text-shadow: 0px 1px 3px #ffffff;
|
|
|
+}
|
|
|
+.widgets-doll-labels.noLine .room-label a{
|
|
|
+ top: 0;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+.widgets-doll-labels.noLine .room-label:after { /* 从dollhouse转到floorplan */
|
|
|
+ height:0;
|
|
|
+ bottom:-68px;
|
|
|
+}
|
|
|
+
|
|
|
+.widgets-doll-labels .room-label a::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ left: -1px;
|
|
|
+ top: -1px;
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ background-image: url(../images/doll_label_corner.svg);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: top left;
|
|
|
+}
|
|
|
+.widgets-doll-labels.noCorner .room-label a::before {
|
|
|
+ background-image:none;
|
|
|
+}
|
|
|
+
|
|
|
+.widgets-doll-labels .room-label a::after {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ left: -1px;
|
|
|
+ bottom: -1px;
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ background-image: url(../images/doll_label_corner.svg);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: top left;
|
|
|
+ transform: rotate(270deg);
|
|
|
+}
|
|
|
+.widgets-doll-labels.noCorner .room-label a::after {
|
|
|
+ background-image: none
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.widgets-doll-labels .room-label a > p {
|
|
|
+ margin: 0;
|
|
|
+ padding: 6px 14px;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ line-height: 1.5;
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label a > p::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ right: -1px;
|
|
|
+ top: -1px;
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ background-image: url(../images/doll_label_corner.svg);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: top left;
|
|
|
+ transform: rotate(90deg);
|
|
|
+}
|
|
|
+.widgets-doll-labels.noCorner .room-label a > p::before {
|
|
|
+ background-image: none;
|
|
|
+}
|
|
|
+
|
|
|
+.widgets-doll-labels .room-label a > p::after {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ right: -1px;
|
|
|
+ bottom: -1px;
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ background-image: url(../images/doll_label_corner.svg);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: top left;
|
|
|
+ transform: rotate(180deg);
|
|
|
+}
|
|
|
+.widgets-doll-labels.noCorner .room-label a > p::after {
|
|
|
+ background-image: none;
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label.noLine a {
|
|
|
+ top: 16px;
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label a span {
|
|
|
+ white-space: nowrap;
|
|
|
+ user-select: none;
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label.with-entrance:after {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label.with-entrance a {
|
|
|
+ top: 50%;
|
|
|
+ width: 38.5px;
|
|
|
+ height: 15.75px;
|
|
|
+ background-size: 38.5px 15.75px;
|
|
|
+ -webkit-transform: translate(-50%, -50%);
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+}
|
|
|
+.widgets-doll-labels .room-label.with-entrance a span {
|
|
|
+ margin-left: -0.875px;
|
|
|
+ margin-top: -0.875px;
|
|
|
+}
|