/*.global_modal*/
.global_modal{
    width: 260px;
    background: #fff;
    z-index: 9999999;
    margin: 0 auto;
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    -webkit-box-shadow: 0 0 30px rgba(0,0,0,0.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
   /* -webkit-transform: translate3d(0, 0px, -2px);*/
    display: none;
}
.modal_box_new_pic{
    height: 154px;
    position: relative;
    display: block;
    -webkit-transition: all 2s;
    -moz-transition:all 2s;
    -ms-transition: all 2s;
    -o-transition:all 2s;
    transition:all 2s;
}
.modal_box_new_pic:hover{
    background-size:116%;
}
.modal_box_new_pic .thepic{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-position: 50%;
    border-radius: 6px 6px 0 0;
    background-size: cover;
}
.modal_box_new_pic .iconfont{
    position: absolute;
   /* top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);*/
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    animation-name: playbtn;
    animation-duration: 500ms;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    background: rgba(255,255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.5);
}
/*@keyframes playbtn{
    0% {
        color: #fff;
    }
    100% {
        color: #22ffc3;

    }
}*/
@keyframes playbtn{
    0% {
        transform: scale(1);
        opacity: 0;
        color: #fff;
    }
    100% {
        transform: scale(1.3);
        opacity: 1;
        color: #ff6969;
    }
}


.modal_close_btn{
    position: absolute;
    display: block;
    top: -12px;
    right: -12px;
    color: #fff;
    background: rgba(0,0,0,1);
    width: 28px;
    height: 28px;
    border-radius: 100%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    z-index: 500;
    cursor: pointer;
    border:3px solid #fff;
    font-weight: bold;
}
.modal_close_btn:hover{
    font-size: 14px;
}
.modal_box_new_title {
    font-size: 16px;
    /*line-height: 30px;*/
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    text-align: justify;
    display: block;
    color:#ff6969;
    font-weight: bold;
}
.modal_box_new_smalltext{
    color: #646464;
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-align: justify;
    margin-bottom: 0;
    line-height: 22px;
}
.global_modal_title{
    background: #ebebeb;
    height:32px;
    padding:0 10px;
}
.global_modal_title p{
    font-size: 14px;
    color:#003f45;
    line-height: 32px;
}
.global_modal_title span{
    display: block;
    float: right;
    line-height: 32px;
    font-size:12px;
    color: #666;
    cursor: pointer;
}
.global_modal_title span:hover{
    color:#003f45;
    font-weight: 600;
}
/*.global_modal_end*/