/* 智能问答弹出框 */
.detailPopup {
    font-size: 16px;
    color: #255bda;
    cursor: pointer;
}

.zswd-box {
    margin-top: 20px;
}

#detailPopup .detailPopup-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
    overflow: hidden;
}

#detailPopup .showPopup {
    display: none;
    position: fixed;
    width: 795px;
    height: 450px;
    z-index: 666;
    top: 50%;
    left: 50%;
    margin-top: -225px;
    margin-left: -398px;
}

#detailPopup .closePopup {
    width: 100%;
    height: 30px;
    overflow: hidden;
}

#detailPopup .closePopup .closePopup-btn {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(closePupup.png) no-repeat 0 0;
    cursor: pointer;
}

#detailPopup .detailPopup-con-wrap {
    width: 765px;
    height: 420px;
    background-color: #fff;
    position: fixed;
}

#detailPopup .detailPopup-title {
    height: 60px;
    border: 1px solid #f2f3f3;
}

#detailPopup .detailPopup-title p {
    line-height: 58px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #333;
    margin-left: 30px;
    display: inline-block;
}

#detailPopup .detailPopup-con {
    margin: 25px 30px;
    height: 310px;
    overflow-y: auto;
    text-indent: 2em;
}

#detailPopup .detailPopup-con p {
    font-size: 14px;
    line-height: 30px;
    color: #999;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
#detailPopup .detailPopup-con::-webkit-scrollbar {
    width: 7px;
    /*滚动条宽度*/
}

/*定义滚动条轨道 内阴影+圆角*/
#detailPopup .detailPopup-con::-webkit-scrollbar-track {
    background-color: #fff;
    /*滚动条的背景颜色*/
}

/*定义滑块 内阴影+圆角*/
#detailPopup .detailPopup-con::-webkit-scrollbar-thumb {
    background-color: #ebebeb;
    /*滚动条的背景颜色*/
}

/* 滚动条兼容IE */
#detailPopup .detailPopup-con {
    scrollbar-arrow-color: #ebebeb;
    /*三角箭头的颜色*/
    scrollbar-face-color: #ebebeb;
    /*立体滚动条的颜色*/
    scrollbar-3dlight-color: #fff;
    /*立体滚动条亮边的颜色*/
    scrollbar-highlight-color: #fff;
    /*滚动条空白部分的颜色*/
    scrollbar-shadow-color: #fff;
    /*立体滚动条阴影的颜色*/
    scrollbar-darkshadow-color: #fff;
    /*立体滚动条强阴影的颜色*/
    scrollbar-track-color: #fff;
    /*立体滚动条背景颜色*/
    scrollbar-base-color: #fff;
    /*滚动条的基本颜色*/
}
