<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url(../layui/css/layui.css);
*{
    margin: 0px;
    padding: 0px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;
}
a{
    text-decoration: none;
}
html{
}
body{
    width: 100%;
    min-height: 100%;
   /* background: #f1f1f1;
    background: #fff;*/
}

.layui-open-no-background{background:transparent !important;box-shadow: none !important;}

.popselect{display:flex;flex-wrap: wrap;}
.popselect div {
    margin-right: 8px;
    border: 1px solid #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-shrink: 0;
    position: relative;
    z-index: 1;
    max-height: 38px;
	height:38px;
	cursor: pointer;
	padding:0 9px;
	border-radius: 3px;
	margin-bottom:4px;
}
.popselect div.current {border-color: #2eafbb;}
.popselect div img{width:30px;height:30px;margin-right:9px;}
.popselect div .checked {
	width: 16px;
	height: 16px;
	border:8px solid transparent;/*以下四个样式对应四种三角形，任选其一即可实现*/
	border-right-color:#2eafbb;
	border-bottom-color:#2eafbb;
	position: absolute;
	bottom: 0;
	right: 0;
	color:#fff;
	line-height:6px;
	font-size:10px;
	display:none;
}
.popselect div.current .checked {display: block;}
</pre></body></html>