﻿
/*公用弹出框 ======================== 开始*/
.fixedPop {
    position:fixed;
    width:100%;
    background-color:rgba(253,253,253,0.8);
    left:0;
    top:0;
    z-index:999; 
    height:100%;
}
.pubilicPop {
    position:fixed;
    _position:absolute;
    width:100%;
    background-color:rgba(253,253,253,0.8);
    left:0;
    top:0;
    z-index:999; 
    height:100%;
}
.publicPopContent {
    background-color:#fff;
    width:480px;
    border:2px solid #C4C3C3;
    margin:70px auto;
}
.pubHeader {
    height:50px;
    width:100%;
    background-color:#F3F3F3;
}
.pubHeader a.t_close{ 
    float:right;
    margin-right:10px;
    margin-top:8px;
    width:24px; 
    height:24px; 
    display:inline-block; 
    background:url(../Common/img/icon.png) no-repeat center center; 
    background-size:1000px 1000px;
    background-position:-55px 4px; 
    cursor:pointer;
}
.pubHeader h4 {
    float:left;
    font-size:20px;
    color:#333;
    margin-left:15px;
    margin-top:13px;
}
.pubMain {
    min-height:120px;
    padding:20px 30px;
}
.pubFooter {
    padding-left:15px;
    padding-right:15px;
}
.pubFooter .butdiv {
    padding-bottom:20px;
    text-align:center;
    border-top:1px solid #CACBCB;
}
.pubFooter .butdiv button {
    padding: 8px 20px 8px 20px;
    background-color:#fff;
    border:1px solid #DADBDC;
    font-size:16px;
    color:#333;
    border-radius:3px;
    margin-top:20px;
    margin-right:10px;
}

.pubFooter .butdiv button.active {
    background-color:#3891E0;
    border:1px solid #3891E0;
    color:#fff;
}

/*公用弹出框 ======================= 结束*/
/************************** 通用提示 ***************************/
.texttip {
    position: relative;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    margin: 3px 0 0 5px;
    cursor: pointer;
    color: #000;
}

    .texttip div {
        display: none;
        position: absolute;
        white-space: nowrap;
        padding: 2px 10px;
        background-color: #ccc;
        color: #333;
        left: 100%;
        bottom: 100%;
        font-weight: normal;
        border-radius: 5px;
        box-shadow: 0 0 2px #fcfcfc;
        text-align: left;
        z-index: 9999;
        width: 300px;
        height: auto;
        white-space: pre-line;
    }

    .texttip:hover div {
        display: block;
    }
/************************** 通用提示 结束***************************/
