/*
 * Easy Z modal
 * doc: http://markusslima.github.io/easy-z-modal/
 * github: https://github.com/markusslima/easy-z-modal
 *
 * Copyright (c) 2015 Markus Vinicius da Silva Lima
 * Version 0.1.3
 * Licensed under the MIT license.
 */
.ezmodal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: rgba(0,0,0,.2);
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}
.testcolor{color:#ff0000 !important;}

.ezmodal-container, .ezmodal-container2{
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.8);
       -moz-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.8);
            box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.8);
    -webkit-transform: translateY(0%) translateX(0%); 
        -ms-transform: translateY(0%) translateX(0%);
            transform: translateY(0%) translateX(0%);
}
.ezmodal-container {
	width:80%;
	height:100%;
    background: #fff;
    padding: 0;
    font-size: 14px;
    position: fixed;
    top: 46px;
    right: 0;
    z-index: 31;
}

.ezmodal-container2 {
	width:100%;
	height:auto;
    background: #fff;
    padding: 0;
    font-size: 14px;
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 9;
}

.ezmodal .ezmodal-close {
    position: absolute;
    top: 9px;
    right: 20px;
    font-weight: bold;
    font-family: Verdana;
    font-size: 18px;
    text-shadow: 1px 1px 1px rgba(250,250,250,1);
    cursor: pointer;
    color: #838383;
}

.ezmodal li.ezmodal-close{
    position: relative;
    top: 0px;
    right: 0px;
    font-weight: normal;
    font-family: "Microsoft YaHei",'ËÎÌå';
    font-size: 14px;
    text-shadow: none;
    cursor: pointer;
    color: #666;
}

.ezmodal .close-item{
	left:0px;
    font-weight: normal;
}

.ezmodal .ezmodal-close:hover {
    color: #535353;
}

.ezmodal .ezmodal-header {
    font-size: 14px;
    padding: 15px 0px 5px 0px;
    border-bottom: 1px solid #e9e9e9;
    text-align: left;
    border-radius: 7px 7px 0 0;
    line-height: 32px;
    color: #333;
	font-weight:normal;
	margin-left:15px;
	margin-right:15px;
}

.ezmodal .ezmodal-content {
    padding: 0px 15px 0px 5px;
    overflow-y: auto;
	height:85%;
}

.ezmodal .ezmodal-container2 .ezmodal-content {
    padding: 0px 7% 0px 7%;
	height:auto;
    overflow-y: hidden;
}

.ezmodal .ezmodal-container2 .ezmodal-content li {
    height:50px;
}

.ezmodal .ezmodal-container2 .ezmodal-content li a {
	width:100%;
	display:block;
    height:50px;
	line-height:50px;
	color:#999 !important;
}

.ezmodal .ezmodal-container2 .ezmodal-content li a.orangebtn {
	color:#ea6f5a !important;
	background:url(../../img/vip_new/seletedicon.png) no-repeat right center;
	background-size:15px 13px;
}

.ezmodal .ezmodal-content li {
	padding-left:0px !important;
  border-bottom: 1px solid #e9e9e9 !important;
  border-top: 0px solid #e9e9e9 !important;
  margin-right:0px !important;
}

.ezmodal .ezmodal-content li a {
    color:#666 !important;
}

.ezmodal .ezmodal-footer {
    padding: 10px 20px;
    background: #efefef;
    border-top: 1px solid #e3e3e3;
    text-align: right;
    border-radius: 0 0 7px 7px;
}