﻿body {
    min-width: 320px;
    max-width: 768px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC","Helvetica Neue",STHeiti,"Microsoft Yahei",Tahoma,Simsun,sans-serif;
    overflow-y: scroll;
    padding-right: 0px !important;
    font-size: 14px;
    background-color: #f5f5f5;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

input {
    -webkit-appearance: none !important;
}

a {
    color: #333;
    text-decoration: none;
}

    a:link, a:visited, a:hover, a:active {
        text-decoration: none;
        cursor: pointer;
    }

/*a:hover, a:active {
        color: #ff7901;
    }*/

h1, h2, h3, h4, h5, h6, b {
    font-size: 100%;
    font-weight: normal;
}

em, small, strong, i, b {
    font-style: normal;
}

li, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6, p, ul, li, dl, dt, dd, input, button, table, tr, td {
    margin: 0;
    padding: 0;
}

/*Layout*/
.clrfix:after {
    display: table;
    content: ' ';
    clear: both;
}

.clrfix {
    clear: both;
}

.ly-wrap {
    width: 100%;
    padding-bottom: 15px;
}



.ly-left {
    float: left;
}

.ly-right {
    float: right;
}



/*车辆列表*/


/**模态框*/
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    outline: 0;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.modal-open {
    overflow-y: scroll;
    padding-right: 0 !important;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: 350px;
    margin: 150px auto 0 auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5;
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    font-size: 14px;
    font-weight: normal;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}


.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}


.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}



.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}


.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .btn:focus,
    .btn:active:focus,
    .btn.active:focus,
    .btn.focus,
    .btn:active.focus,
    .btn.active.focus {
        outline: 0 none;
    }

.btn-primary {
    color: #fff;
    background-color: #ff7901;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
}


/*车辆列表*/

.ulcarlist {
    padding: 0 15px;
    background-color: #fff;
}

.ulcarlist-item {
    padding: 15px 0 15px 130px;
    min-height: 80px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

    .ulcarlist-item:last-child {
        border: 0 none;
    }

.ulcarlist-item-img {
    position: relative;
    float: left;
    width: 120px;
    height: 80px;
    overflow: hidden;
    margin-left: -130px;
}

.ulcarlist-item img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ulcarlist-item-content {
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.ulcarlist-item-carname {
    font-size: 15px;
    margin-bottom: 5px;
    min-height: 35px;
}

.ulcarlist-item-year {
    font-size: 12px;
    color: #999999;
    margin: 8px 0;
}

.ulcarlist-item-price {
    color: #ff7901;
    font-size: 16px;
    width: 100%;
    /*position: absolute;
    left: 0;
    bottom: 0;*/
}

    .ulcarlist-item-price del {
        color: #797979;
        font-size: 12px;
    }

@media screen and (max-width: 330px) { /* 320 当屏幕尺寸小于330px时 */
    .ulcarlist-item {
        padding: 15px 0 15px 100px;
    }

    .ulcarlist-item-img {
        width: 90px;
        margin-left: -100px;
    }
}

/*end 车辆列表*/


/*ml-header*/
.ml-head {
    width: 100%;
    height: 40px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}

    .ml-head .ml-head-right {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        right: 0;
    }

        .ml-head .ml-head-right img {
            float: left;
            width: 20px;
            margin: 10px 0 0 5px;
        }

    .ml-head .ml-head-back {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
    }

        .ml-head .ml-head-back img {
            width: 25px;
            float: left;
            -moz-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
            margin: 7px 0 0 10px;
        }

    .ml-head .ml-head-tit {
        padding: 0 40px;
        line-height: 40px;
        text-align: center;
        font-size: 16px;
    }
/**end ml-header*/

.nodata {
    background: url(../images/rights.png) 50% 50% no-repeat;
    height: 150px;
    width: 200px;
    margin: 0 auto;
    line-height: 280px;
    text-align: center;
    color: #a9a9a9;
    background-size: auto 100px;
    overflow: hidden;
}

    .nodata::after {
        content: '暂无数据';
        display: block;
    }


/*loading--preview*/   
#preview {
    position: fixed;
    top: 45%;
    left: 43%;
    background: #333 none repeat scroll 0 0;
    border-radius: 10px;
    color: #fff;
    float: left;
    height: 60px;
    width: 60px;
    z-index: 999999999;
    opacity: 0.75;
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
}