/**
 * ============================================================================
 * 版权所有 2022-2028 月梦网络，并保留所有权利。
 * 月梦网络: http://dm299.taobao.com  开发QQ:124861234  禁止倒卖 一经发现停止任何服务
 * 官方网站: https://im.dm299.com
 * ----------------------------------------------------------------------------
 * 这不是一个自由软件！您只能在不用于商业目的的前提下对程序代码进行修改和使用；
 * 不允许对程序代码以任何形式任何目的的再发布。
 * ============================================================================
 * $Author: Mark Zhou $
*/
@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;}
