@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    outline: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

ul li {
    list-style: none;
}


/*小弹窗样式*/
.popupBox {
    width: 335px;
    border: 1px solid #ff8200;
    border-radius: 3px;
    background: #fff;
}

.popupBox .popupHeader {
    height: 30px;
    line-height: 30px;
    width: 100%;
    font-family: "微软雅黑";
    color: #FFFFFF;
    font-size: 14px;
    background: #ff8200;
}

.popupBox .popupHeader .popHeadTitle {
    width: auto;
    float: left;
    padding-left: 15px;
    color: #fff;
}

.popupBox .popupHeader .popHeadClose {
    height: 19px;
    width: 19px;
    display: block;
    float: right;
    background: url(img/PopClose.png) no-repeat;
    position: relative;
    top: 5px;
    right: 10px;
}

.popupBox .popContent {
    padding: 0 35px 0 40px;
    width: 260px;
    height: auto;
    text-align: center;
    color: #666666;
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
}

.popupBox .popContent:after {
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    line-height: 0;
    content: '';
}

.popupBox .popContent .popConImg {
    width: 100%;
    padding-top: 25px;
}

.popupBox .popContent .popConImg span.errorImgIcon {
    display: block;
    width: 79px;
    height: 97px;
    margin: 0 auto;
    background: url(img/errorImg.png) no-repeat;
}

.popupBox .popContent .popConImg span.successImgIcon {
    display: block;
    width: 89px;
    height: 94px;
    margin: 0 auto;
    background: url(img/successImg.png) no-repeat;
}

.popupBox .popContent .popConInfo {
    padding: 15px 0 40px 0;
    width: 100%;
    height: auto;
    text-align: center;
    color: #666666;
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 24px;
}

.popupBox .popContent .popConbtn:after {
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    line-height: 0;
    content: '';
}

.popupBox .popContent .popConbtn .greenBtn {
    background: #ff8200;
    border: 2px solid #ff8200;
    width: 133px;
    height: 35px;
    font-family: "微软雅黑";
    line-height: 35px;
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 10px;
    margin: 0 auto;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1002;
    top: 20%;
    left: 36%;
}

.popupBagDiv {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
    background: #666666 url(/dqmh/static/js/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png) repeat 50% 50%;
    opacity: .50;
    filter: Alpha(Opacity=50);
}

/* .popupBox .popContent .txtCenter{ text-align:center;} */
