<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

#pop-window {
	width: 85%;
	height: 360px;
	position: fixed;
	text-align: center;
	z-index: 1004;
	background-color: #FFFFFF;
	display:none;
	box-shadow:0 5px 15px rgba(0,0,0,.5);
}

#tips-pop-window-body{
	width: 100%;
	height: 200px;
	margin: auto 0px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.5em;
	font-weight: bold;
	color:#333333;
	max-width: 300px;
	border-radius: 5px;
}

#tips-pop-window-body-title{
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
}

.tips-pop-window-body-image{
	width: 50%;
	float: left;
	height: 120px;
}

.tips-pop-window-body-image-item{
	width: 100%;
	height: 80%;
	text-align: center;
}

.tips-pop-window-body-image-item img{
	height: 100%;
}

.tips-pop-window-body-image-text{
	text-align: center;
	font-size: 0.8em;
}


.pop-window-layer {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
}

.pop-window {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.pop-window &gt; div {
	width: 70%;
	background-color: white;
	box-shadow: 0 5px 15px rgba(0,0,0,.9);
	max-width: 300px;
	border-radius: 5px;
}</pre></body></html>