<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*å›¾ç‰‡æ”¾å¤§*/
.close-tag {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.close-tag:before, .close-tag:after {
    content: '';
    position: absolute;
    background-color: #a9a9a9;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.close-tag:before {
    left: 45%;
    top: -10%;
    width: 10%;
    height: 120%;
}

.close-tag:after {
    top: 45%;
    left: -10%;
    width: 120%;
    height: 10%;
}

.window {
    position: fixed;
    width: 60%;
    height: 60%;
    left: 50%;
    top: 50%;
    visibility: hidden;
    opacity: 0;
    background-color: white;
    -webkit-transition: all 0.6s;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.6);
}

.window img {
    width: 100% !important;
    height: auto;
}

.window-show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    text-align: center;
}

/*å›¾ç‰‡å…³é—­*/
.img-box {
    position: relative;
}
.close-x {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 20px;
    height: 20px;
    line-height: 13px;
    text-align: center;
    background: #C0C0C0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 25px;
    padding: 1px;
}
.close-x:hover {
    background: #FF5B52;
    cursor: pointer;
}

</pre></body></html>