/*外阴影*/
.shadow-out {
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
/*内阴影*/
.shadow-inner {
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3), inset 0 0 3px
		rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3), inset 0 0 3px
		rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3), inset 0 0 3px rgba(0, 0, 0, 0.5);
}

/*按钮*/
.btn {
	width: 100px;
	height: 30px;
	line-height: 30px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	background-color: #1e90ff;
	letter-spacing: 1px;
}

/*小三角*/
.triangle-top {
	content: '';
	height: 0;
	width: 0;
	border-top: 5px solid #106ef0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

.triangle-bottom {
	content: '';
	height: 0;
	width: 0;
	border-bottom: 5px solid #09adf6;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

/*提示图标*/
.css-icon-info {
    color:#2385BA; 
	display:inline-block;
}
.css-icon-info:before {
	display:block;
    content:"i"; 
    width:16px;
    height:16px; 
    font-size:12px;
    font-weight:bold;
    font-style:italic;
    line-height:16px;
    text-align:center;
    color:#fff;
    background:#2385BA; 
    -webkit-border-radius:16px;
    -moz-border-radius:16px;
    border-radius:16px;
}
/*禁用显示样式*/
input[type="checkbox"]:disabled {
	width: 12px;
	height: 12px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	line-height: 12px;
	position: relative;
}

input[type="checkbox"]:disabled::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	border: 1px solid #CACDCF
}

input[type="checkbox"]:disabled:checked::before {
	content: "\2713";
	background-color: #3d5079;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border: 1px solid #033ba9;
	font-size: 12px;
	font-weight: bold;
}
/*checkbox radio box*/
.al-chk-item-border{display: inline-block;}
.al-radio-item-border{display: inline-block;}

/*播放器box<div class="player-box"><img/></div>*/
.player-box {
	position: relative;
	display: inline-block;
	max-width: 100%;
	cursor: pointer;
}

.player-box img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.player-box:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.player-box:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-40%, -50%);
	border-width: 12px 0 12px 20px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	z-index: 1;
}

.player-box:hover:after {
	background: rgba(255, 0, 0, 0.8);
	transform: translate(-50%, -50%) scale(1.1);
}