/* 按钮 */
.min-download-btn{
    display: block;
    width: 150px;
    border-radius: 4px;
    height: 47px;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.min-download-btn.min-btn-primary{
    color: #00BCD4;
    border: solid 1px #00BCD4;
    background: -webkit-linear-gradient(left, #00BCD4, #2196F3) no-repeat;
    background: linear-gradient(to right, #00BCD4, #2196F3) no-repeat;
    background-size: 0% 100%;
}
.min-download-btn.min-btn-primary:hover {
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.2);
    box-shadow: 0 10px 15px rgba(0,0,0,.2);
    background: -webkit-linear-gradient(left, #00BCD4, #2196F3) no-repeat;
    background: linear-gradient(to right, #00BCD4, #2196F3) no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

.min-download-btn.min-btn-success{
    color: #4CAF50;
    border: solid 1px #4CAF50;
    background: -webkit-linear-gradient(left, #4CAF50, #009688) no-repeat;
    background: linear-gradient(to right,#4CAF50, #009688) no-repeat;
    background-size: 0% 100%;
}
.min-download-btn.min-btn-success:hover {
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.2);
    box-shadow: 0 10px 15px rgba(0,0,0,.2);
    background: -webkit-linear-gradient(left, #4CAF50, #009688) no-repeat;
    background: linear-gradient(to right,#4CAF50, #009688) no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

.min-download-btn.min-btn-danger{
    color: #FF5722;
    border: solid 1px #FF5722;
    background: -webkit-linear-gradient(left, #FF5722, #F44336) no-repeat;
    background: linear-gradient(to right, #FF5722, #F44336) no-repeat;
    background-size: 0% 100%;
}
.min-download-btn.min-btn-danger:hover {
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.2);
    box-shadow: 0 10px 15px rgba(0,0,0,.2);
    background: -webkit-linear-gradient(left, #FF5722, #F44336) no-repeat;
    background: linear-gradient(to right, #FF5722, #F44336) no-repeat;
    background-size: 100% 100%;
    color: #fff;
}




.min-download-button{
    display: block;
    border: solid 1px #e9e9e9;
    width: 150px;
    border-radius: 4px;
    height: 47px;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.2);
    box-shadow: 0 10px 15px rgba(145, 145, 145, 0.2);
    background: -webkit-linear-gradient(left, #f8e27b, #f8ba56) no-repeat;
    background: linear-gradient(to right, #f8e27b, #f8ba56) no-repeat;
    background-size: 0% 100%;
    color: #05A46A;
}

.min-download-button:hover{
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.2);
    box-shadow: 0 10px 15px rgba(0,0,0,.2);
    background: -webkit-linear-gradient(left, #f8e27b, #f8ba56) no-repeat;
    background: linear-gradient(to right, #f8e27b, #f8ba56) no-repeat;
    background-size: 100% 100%;
    color: #fff;
}


.min-btn{
    text-align: center;
    background-color: #2196f3;
    border-radius: 4px;
    cursor: pointer;
    color: #ffffff!important;
    margin: auto;
    transition: all .4s;
    -webkit-transition: all .4s;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.1);
    font-size: 18px;
    /*padding: 8px 40px;*/

    width: 150px;
    height: 50px;
    line-height: 50px;

    user-select:none;
}
.min-btn:hover {
    background-color: #2ec4f3;
}
.min-btn:active {
    box-shadow: inset 0 3px 5px 0 rgba(0,0,0,0.1);
    outline: 0;
}


.min-btn.min-blue-btn{
    background-color: #1EC0FC;
}
.min-btn.min-blue-btn:hover {
    background-color: #3ae5fc;
}

.min-btn.min-green-btn{
    background-color: #03C780;
}
.min-btn.min-green-btn:hover {
    background-color: #00e475;
}