/*弹出框*/
.indexAlertCover{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.6);
    display: none;
}
.indexAlertContent{
    background: #fff;
    position: absolute;
    width: 600px;
    height: 470px;
    left: 50%;
    margin-left: -300px;
    top: 50%;
    margin-top: -200px;
}
.alertTitleBox{
    padding: 15px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e3e3e3;
}
.alertTitle{
    font-size: 20px;
    color: #333;
}
.closeBtn5{
    width: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -7px;
    cursor: pointer;
}
.alertLine{
    margin-top: 25px;
    text-align: center;
}
.alertLabel{
    padding-right: 20px;
    width: 140px;
    font-size: 16px;
    color: #333;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
}
.alertInputBox{
    position: relative;
    width: 300px;
    display: inline-block;
    vertical-align: middle;
}
/*.alertInputBox:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ededed;
    left: 6px;
    top: 6px;
    z-index: 1;
}*/
.alertInput{
    display: inline-block;
    width: 280px;
    padding: 7px 0;
    font-size: 14px;
    padding-left: 20px;
    border:1px solid #e3e3e3;
    position: relative;
    background: none;
    z-index: 2;
    color: #666;
}
.alertBtnLine{
    margin-top: 40px;
    text-align: center;
}
.alertBtnBox{
    display: inline-block;
    background: #fe2ba9;
    position: relative;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}
.alertBtnBox span,.alertBtnBox button{
	display: block;
    padding: 10px 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
}
.alertBtnBorder{
    position: absolute;
    width: 100%;
    height: 100%;
    left: -6px;
    top: -6px;
    border: 1px solid #333;
    z-index: -1;
}
.alertBtnBox:hover{
    background: #333;
}
.alertBtnBox:hover .alertBtnBorder{
    border: none;
}

/*模拟下拉*/
.addLabel_part{
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    width: 300px;
}
.alertCommonSelect_part{
    position: relative;
}
.alertCommonSelectBody{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 300px;
}
.alertCommonSelectBox{
    cursor: pointer;
    display: inline-block;
    height: 30px;
    /*box-shadow: 1px 2px 8px 1px rgba(0,0,0,0.2);*/
    border: 1px solid #333;
    /*background: #fff;*/
    /*border-radius: 3px;*/
    position: relative;
    line-height: 30px;
    vertical-align: middle;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    color: #666;
    overflow: hidden;
    z-index: 8;
}
.alertCommonSelect{
    display:inline-block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    padding-right: 40px;
    padding-left: 15px;
}
.alertCommonBg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ededed;
    left: 6px;
    top: 6px;
    z-index: 1;
}
.alertCommonIcon{
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top:-4px;
    width: 10px;
    height: 8px;
}
.alertCommonOption{
    position: absolute;
    left: 0;
    top: 32px;
    background: #fff;
    border: 1px solid #333;
    max-height: 120px;
    /*border-radius: 3px;*/
    font-size: 14px;
    color: #666;
    display: none;
    overflow-y: auto;
    width: 100%;
    z-index: 9;
}
.alertCommonOption li{
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    padding: 5px 15px;
    cursor: pointer;
}
.alertCommonOption li:hover{
    background: #e4e4e4;
    color: #333;
}

/* 级联下拉 */
.select_container{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 300px;
}
.select_clickBtn{
    width: 100%;
    box-sizing: border-box;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid #e3e3e3;
    font-size: 14px;
    color: #333;
    position: relative;
}
.select_clickBtn:hover{
    border: 1px solid #00a0e8;
}
.select_content{
    position: absolute;
    top: 40px;
    left: 0;
    overflow: hidden;
    z-index: 99;
    width: 100%;
}
.select_father{
    float: left;
    width: 45%;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    background: #fff;
}
.select_option{
    padding: 7px 5px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}
.select_option:hover{
    color: #00a0e8;
}
.select_son1{
    float: left;
    width: 50%;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    margin-left: 2px;
    height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    background: #fff;
}
