
#qmd_downs-plugin{
    margin: 25px 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #ffffff;
}

#qmd_downs-plugin * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#qmd_downs-plugin .qmd_title{
    /*background-color: #fbfbfb;*/
    /*height: 45px;*/
    /*line-height: 45px;*/
    padding: 0 20px;
    color: #607d8b;
    font-size: 16px;
    font-weight: bold;
    border-left: solid 5px #607d8b;
}

#qmd_downs-plugin .qmd_content{
    padding-top: 5px;
}

#qmd_downs-plugin .qmd_content .qmd_item{
    padding: 10px 20px;
    border: solid 1px #f1f1f1;
    border-radius: 3px;
    margin: 5px 0;
}

#qmd_downs-plugin .qmd_content .qmd_item:after,
#qmd_downs-plugin .qmd_content .qmd_item:before{
    content: " ";
    display: table;
    clear: both;
}

.qmd_content .qmd_item .qmd_icon{
    float: left;
    width: 50px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.qmd_content .qmd_item .qmd_icon span{
    display: inline-block;
    width: 50px;
    height: 54px;
    margin: 3px 0;
}

.qmd_item .qmd_icon_html{
    background: url("./icon/html.png");
    background-size: cover;
}

.qmd_item .qmd_icon_apk{
    background: url("./icon/apk.png");
    background-size: cover;
}

.qmd_item .qmd_icon_doc{
    background: url("./icon/doc.png");
    background-size: cover;
}
.qmd_item .qmd_icon_mp3{
    background: url("./icon/mp3.png");
    background-size: cover;
}

.qmd_item .qmd_icon_mp4{
    background: url("./icon/mp4.png");
    background-size: cover;
}

.qmd_item .qmd_icon_txt{
    background: url("./icon/txt.png");
    background-size: cover;
}

.qmd_item .qmd_icon_zip{
    background: url("./icon/zip.png");
    background-size: cover;
}

.qmd_item .qmd_icon_unknow{
    background: url("./icon/unknow.png");
    background-size: cover;
}

.qmd_content .qmd_item .qmd_name{
    float: left;
    width: calc(100% - 170px);
    padding: 0 20px;
    height: 60px;
}

.qmd_name .qmd_file_name{
    display: block;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qmd_name .qmd_file_info{
    margin-top: 2px;
    display: block;
    font-size: 12px;
    color: #9a9a9a;
}

.qmd_name .qmd_file_info span{
    margin-right: 5px;
}

.qmd_content .qmd_item .qmd_down{
    float: left;
    height: 60px;
    padding: 9px 0;
}


.qmd_content .qmd_item .qmd_down a{
    display: block;
    width: 120px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #607d8b;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none!important;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
}

.qmd_content .qmd_item .qmd_down a:hover{

}

.qmd_content .qmd_item .qmd_down a:hover:after{
    left: 200%;
    top: -210%;
}

.qmd_content .qmd_item .qmd_down a:after{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    content: "";
    position: absolute;
    left: -200%;
    top: 90%;
    width: 100px;
    height: 400%;
    background-color: hsla(0,0%,100%,.15);
}

.qmd_down_dialog{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.qmd_down_dialog .qmd_down_mask{
    background-color: rgba(47, 47, 47, 0.42);
    width: 100%;
    height: 100%;
}

.qmd_down_dialog .qmd_down_box{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #fff;
    width: 350px;
    min-height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.qmd_down_dialog .qmd_down_box .qmd_down_card{
    width: 100%;
}

.qmd_down_dialog .qmd_down_box .qmd_down_title{
    margin: 30px 25px 10px 25px;
    padding: 10px 30px;
    background-color: #f9f9f9;
    border-radius: 25px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #222;
}

.qmd_down_dialog .qmd_down_box .qmd_down_fileinfo{
    margin: 0 25px;
    padding: 5px 10px;
}

.qmd_down_dialog .qmd_down_box .qmd_down_fileinfo:after,
.qmd_down_dialog .qmd_down_box .qmd_down_fileinfo:before{
    content: ' ';
    display: block;
    clear: both;
}

.qmd_down_box .qmd_down_fileinfo .qmd_down_item{
    width: 50%;
    float: left;
    font-size: 13px;
    color: #999;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 10px 0;
}

.qmd_down_box .qmd_down_pwd{
    margin: 10px 25px 10px 25px;
    padding: 5px 15px;
    border-radius: 25px;
    border: solid 1px #efefef;
    text-align: center;
    font-size: 14px;
    color: #efefef;
}

.qmd_down_box .qmd_down_pwd:after,
.qmd_down_box .qmd_down_pwd:before{
    content: ' ';
    display: block;
    clear: both;
}

.qmd_down_box .qmd_down_pwd .qmd_down_name{
    color: #c5c5c5;
    float: left;
    width: 80px;
    text-align: center;
}

.qmd_down_box .qmd_down_pwd .qmd_down_value{
    float: left;
    display: block;
    font-weight: bold;
    color: #757373;
    text-align: center;
    width: calc(100% - 120px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.qmd_down_box .qmd_down_pwd a{
    float: right;
    width: 40px;
    text-align: center;
    color: #c5c5c5;
}

.qmd_down_box .qmd_down_pays{
    margin: 0 25px 10px 25px;
    padding: 5px 15px;
}

.qmd_down_box .qmd_down_pays .qmd_down_pay_price{
    text-align: center;
    font-size: 25px;
    color: #ff5722;
}

.qmd_down_box .qmd_down_pays .qmd_down_pay_price span{
    font-size: 14px;
}

.qmd_down_box .qmd_down_pays .qmd_down_pay_type{
    margin-top: 10px;
    margin-bottom: 10px;
}

.qmd_down_box .qmd_down_pays .qmd_down_pay_type:after,
.qmd_down_box .qmd_down_pays .qmd_down_pay_type:before{
    content: ' ';
    display: block;
}

.qmd_down_box .qmd_down_pays .qmd_down_pay_type .qmd_down_name{
    display: block;
    width: 80px;
    float: left;
    font-size: 14px;
    color: #c5c5c5;
    text-align: center;
    height: 30px;
    line-height: 30px;
}

.qmd_down_box .qmd_down_pays .qmd_down_pay_type #qmd_downs_pay_type_value{
    display: block;
    width: calc(100% - 80px);
    height: 30px;
    line-height: 30px;
    border: solid 1px #efefef;
    color: #999;
    border-radius: 3px;
}

.qmd_down_box .qmd_down_lx:after,
.qmd_down_box .qmd_down_lx:before{
    content: ' ';
    display: block;
    clear: both;
}

.qmd_down_box .qmd_down_lx .qmd_down_name{
    display: block;
    width: 80px;
    float: left;
    font-size: 14px;
    color: #c5c5c5;
    text-align: center;
    height: 30px;
    line-height: 30px;
}

.qmd_down_box .qmd_down_lx #qmd_down_pay_tel{
    display: block;
    float: left;
    width: calc(100% - 80px);
    height: 30px;
    line-height: 30px;
    border: solid 1px #efefef;
    color: #999;
    font-size: 14px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 3px;
}

.qmd_down_box .qmd_down_title_tag{
    position: relative;
    display: inline-block;
    padding: 0 6px;
    font-size: 12px;
    text-align: center;
    background-color: #FF5722;
    color: #fff;
    border-radius: 2px;
    height: 20px;
    line-height: 20px;
    margin-right: 5px;
}

.qmd_down_type{
    margin: 0 25px 10px 25px;
    padding: 0 25px;
    text-align: center;
}

.qmd_down_type a{
    font-size: 14px;
    color: #999;
    padding: 0 5px;
}

.qmd_down_type a.active{
    color: #00b7ee;
}

.qmd_down_box .qmd_down_btn{
    margin: 0 25px;
    padding-bottom: 20px;
}

.qmd_down_box .qmd_down_btn .qmd_down_finish{
    display: block;
    border-radius: 25px;
    background-color: #00b7ee;
    text-align: center;
    color: #fff;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
}

.qmd_down_box .qmd_down_btn .qmd_down_cancel{
    display: block;
    border-radius: 25px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    margin-top: 10px;
    color: #999;
}

.qmd_down_msg{
    margin: 10px 25px 2px 25px;
    padding: 10px 30px;
    background: #ffc107;
    color: #fff;
    font-size: 14px;
}

.qmd_down_msg_success{
    margin: 10px 25px 2px 25px;
    padding: 10px 30px;
    background: #56bf5a;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 650px){
    #qmd_downs-plugin .qmd_content .qmd_item{
        padding: 10px 10px;
    }
    .qmd_name .qmd_file_info span:nth-last-child(2){
        display: none;
    }
    .qmd_name .qmd_file_info span:nth-last-child(3){
        display: none;
    }

    .qmd_content .qmd_item .qmd_down a{
        width: 65px;
        font-size: 12px;
        height: 32px;
        line-height: 32px;
    }

    .qmd_content .qmd_item .qmd_down{
        height: 45px;
        padding: 6px 0;
    }

    .qmd_content .qmd_item .qmd_down a span:nth-child(1){
        display: none;
    }

    .qmd_content .qmd_item .qmd_name{
        width: calc(100% - 105px);
        padding: 0 15px;
        height: 45px;
    }

    .qmd_name .qmd_file_name{
        font-size: 14px;
    }

    .qmd_content .qmd_item .qmd_icon{
        width: 40px;
        height: 45px;
        line-height: 45px;
    }
    .qmd_content .qmd_item .qmd_icon span{
        width: 40px;
        height: 45px;
    }

    .qmd_name .qmd_file_info{
        margin-top: 0;
    }

    #qmd_downs-plugin .qmd_title{
        padding: 0 15px;
        font-size: 14px;
    }
}