/* 项目引导弹窗 */
.choose-site-modal{
    position: fixed;
    display: none;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgba(0,0,0,0.5);
}
.choose-site-content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 650px;
    height: 380px;
    margin-left: -325px;
    margin-top: -190px;
}
.choose-site-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 650px;
    height: 380px;
}
.choose-site-right{
    position: relative;
    width: 364px;
    height: 380px;
    margin-left: 286px;
    border-radius: 0 8px 8px 0;
    background-color: #FFFFFF;
}
.choose-site-right h3{
    color: #333333;
    font-size: 19px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    padding: 35px 0 2px 0;
}
.choose-site-right p{
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}
.choose-site-right p span{
    color: #D50000;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}
.choose-site-pic{
    width: 162px;
    height: 162px;
    padding: 11px;
    margin: 18px auto 20px auto;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.4);
}
.choose-site-pic img{
    display: block;
    width: 162px;
    height: 162px;
}
.choose-site-operate{
    width: 298px;
    height: 44px;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 44px;
    text-align: center;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid #333333;
}
.close-choose-site{
    position: absolute;
    top: -30px;
    right: -42px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}