/* 项目引导弹窗 */
.july-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);
}
.july-content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 650px;
    height: 380px;
    margin-left: -325px;
    margin-top: -190px;
}
.july-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 286px;
    height: 380px;
}
.july-right{
    position: relative;
    width: 364px;
    height: 380px;
    margin-left: 286px;
    border-radius: 0 8px 8px 0;
    background-color: #FFFFFF;
}
.july-right h3{
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    padding: 40px 0 8px 0;
}
.july-right p{
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}
.july-right p span{
    color: #D50000;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}
.july-pic{
    width: 152px;
    height: 152px;
    padding: 10px;
    margin: 36px auto 14px auto;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.4);
}
.july-pic img{
    display: block;
    width: 152px;
    height: 152px;
}
.july-operate{
    width: 298px;
    color: #333333;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
}
.close-july{
    position: absolute;
    top: -30px;
    right: -42px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}