.dialog-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 10;
    display: none
}

.dialog-container .dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    background: #fff;
    border-radius: .1rem
}

.dialog-container header {
    padding: .2rem 0;
    background: #fff;
    text-align: center;
    border-top-right-radius: .1rem;
    border-top-left-radius: .1rem
}

.dialog-container section {
    padding: 0 .2rem .2rem;
    background: #fff;
    line-height: 1.5
}

.dialog-container footer {
    text-align: center;
    background: #fff;
    border-top: .01rem solid #e5e5e5;
    overflow: hidden;
    border-bottom-right-radius: .1rem;
    border-bottom-left-radius: .1rem
}

.dialog-container footer span {
    width: 50%;
    display: inline-block;
    line-height: .44rem;
    float: left
}

.dialog-container footer .cancle {
    border-right: .01rem solid #e5e5e5
}

.dialog-container footer .confirm {
    color: #38bb0b;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html {
    -ms-touch-action: none
}

html {
    font-size: 625%
}

body {
    font-size: .14rem
}

h1 {
    font-size: .24rem
}

@media screen and (max-width: 320px) {
    html {
        font-size: 500%
    }
}

input {
    outline: 0
}

::-webkit-input-placeholder {
    color: #ccc
}

:-moz-placeholder {
    color: #ccc
}

::-moz-placeholder {
    color: #ccc
}

:-ms-input-placeholder {
    color: #ccc
}

.column-3-1 {
    width: 33.33%;
    float: left
}

.column-3-2 {
    width: 66.67%;
    float: left
}

.column-4-1 {
    width: 25%;
    float: left
}

.column-4-3 {
    width: 75%;
    float: left
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.flex1 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 20%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.flex-sb {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between
}

.flex-self-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center
}

.flex-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center
}

.checkbox-circle {
    display: inline-block;
    width: .2rem;
    height: .2rem;
    border-radius: 100%;
    position: relative
}

.checkbox-circle input {
    display: none;
    opacity: 0
}

.checkbox-circle label {
    display: block;
    width: .2rem;
    height: .2rem;
    border-radius: 1rem;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border: 1px solid #ccc
}

.checkbox-circle label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: .09rem;
    height: .05rem;
    background: 0 0;
    top: .05rem;
    left: .05rem;
    border: .02rem solid #ccc;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.checkbox-circle input:checked   label {
    border: none;
    background: #38bb0b;
}

.checkbox-circle input:checked   label:after {
    border-color: #fff;
    opacity: 1
}

.vertical-center {
    font-size: 0
}

.vertical-center:after {
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle
}

.vertical-center:after {
    content: ''
}

.vertical-center > * {
    display: inline-block;
    vertical-align: middle;
    font-size: .14rem
}

.new-loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff
}

.spinner {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #38bb0b;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out
}

.double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0)
    }
    50% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0)
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

.no-border {
    border: none !important
}

.toast {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
    padding: 10px;
    line-height: 1.5;
    border-radius: 5px;
    color: #fff;
    background: rgba(0, 0, 0, .5);
    z-index: 10
}

.header-nav {
    display: none;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 43px;
    line-height: 43px;
    padding: 0;
    color: #333;
    font-size: .2rem;
    text-align: center;
    border-bottom: .01rem solid #ccc;
    background-color: #fff
}

.header-nav .back-btn {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: rotatez(180deg);
    -ms-transform: rotatez(180deg);
    -o-transform: rotatez(180deg);
    transform: rotatez(180deg);
    width: 43px;
    height: 43px;
    background-size: contain;
    background-position: center
}

.header-nav .back-btn:after {
    display: block;
    content: ' ';
    background: url(/uploads/image/agimg/right_arrow-2x.png) no-repeat;
    width: .14rem;
    height: .2rem;
    background-size: contain;
    position: absolute;
    top: 14px;
    left: 17px
}

.ch-download {
    background-color: #454953;
    color: #fff;
    height: 30px;
    display: none
}

.ch-wrap {
    position: relative
}

.ch-wrap > img {
    width: 42px
}

.ch-wrap > dl, .ch-wrap > img {
    float: left
}

.ch-txt {
    margin: 0 0 0 30px
}

.ch-txt > dt {
    font-size: 12px;
    line-height: 30px
}

.ch-link {
    color: #fff;
    font-size: 14px;
    background-color: #38bb0b;
    display: inline-block;
    position: absolute;
    right: 0;
    width: 100px;
    line-height: 30px;
    text-align: center;
    text-decoration: none
}

.ch-close {
    margin: 10px;
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: transparent;
    border: none;
    background:  no-repeat;
    background-size: 50%
}

.title-choose {
    text-align: center;
    margin: 0 80px;
    line-height: 40px;
    font-size: 14px
}

.title-choose:nth-child(1) {
    margin-right: 0
}

.title-choose:nth-child(2) {
    margin-left: 0
}

.header-nav .orange {
    color: #ff9854;
    border-bottom: 2px solid #38bb0b;
}

.title-choose > a {
    color: #333;
    text-decoration: none
}

.query-options {
    background-color: #f5f5f5
}

.query-options .header {
    line-height: 0
}

.query-options .header img {
    width: 100%
}

.query-options .section {
    background-color: #fff;
    border-top: .01rem solid #e5e5e5;
    border-bottom: .01rem solid #e5e5e5;
    margin-bottom: .1rem;
    overflow: hidden
}

.query-options .section .btn-container {
    margin: 0 .15rem
}

.query-options .row {
    margin-left: .15rem;
    margin-right: .15rem;
    border-bottom: .01rem solid #e5e5e5;
    padding: .11rem 0;
    font-size: .16rem;
    color: #333;
    line-height: .23rem
}

.query-options .row .unselected {
    color: #ccc
}

.query-options .row .text {
    text-align: right;
    height: .23rem;
    margin-left: .1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.query-options .row:last-child {
    border-bottom: none
}

.query-options .row .right-arrow {
    height: .16rem;
    margin-left: .1rem;
    margin-top: .04rem
}

.query-options .row .right-label {
    color: #01a75b;
    margin-left: .1rem
}

.query-options .row input {
    border: none;
    text-align: right;
    height: .23rem;
    color: #333
}

.query-options .btn {
    display: inline-block;
    height: .44rem;
    width: 100%;
    background-color: #01a75b;
    border-radius: .03rem;
    font-size: .18rem;
    color: #fff;
    text-align: center;
    line-height: .44rem
}

.query-options .btn.disabled {
    background-color: #bbb
}

.query-options .service-tip {
    margin-left: .15rem;
    padding: .15rem 0;
    line-height: .2rem;
    color: #999
}

.query-options .service-tip .checkbox-circle {
    margin-right: .05rem;
    vertical-align: text-top
}

.query-options .service-tip .user-agreement {
    font-size: .12rem;
    color: #38bb0b;
    text-decoration: none
}

.query-options .sub-title {
    margin: .2rem 0 .1rem .15rem
}

.car-brands .hot-brands p {
    margin: 0
}

.car-brands .hot-brands h3 {
    margin: 0;
    padding: .12rem 0 .08rem .18rem;
    padding-left: border-bottom: .01rem solid #ccc;
    background-color: #efeff4;
    color: #888;
    font-weight: 400
}

.car-brands .hot-brands ul {
    overflow: hidden
}

.car-brands .hot-brands li {
    padding: .1rem .1rem;
    border-bottom: .01rem solid #e5e5e5;
    border-right: .01rem solid #e5e5e5;
    text-align: center
}

.car-brands .hot-brands li img {
    width: .36rem
}

.car-brands .brands-detail .title {
    background-color: #efeff4;
    padding: .12rem 0 .08rem .15rem
}

.car-brands .brands-detail .item {
    position: relative;
    padding-left: .15rem;
    line-height: .28rem;
    font-size: .16rem;
    color: #333;
    cursor: pointer
}

.car-brands .brands-detail .item img {
    position: absolute;
    vertical-align: middle;
    max-width: .28rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.car-brands .brands-detail .item span {
    vertical-align: middle;
    display: block;
    padding: .1rem 0;
    margin-left: .4rem;
    border-bottom: .01rem solid #e5e5e5
}

.car-models .brands-detail .title, .car-series .brands-detail .title {
    background-color: #efeff4;
    padding: .12rem 0 .08rem .15rem
}

.car-models .brands-detail .item, .car-series .brands-detail .item {
    position: relative;
    padding-left: .15rem;
    line-height: .28rem;
    font-size: .16rem;
    color: #333;
    cursor: pointer
}

.car-models .brands-detail .item span, .car-series .brands-detail .item span {
    vertical-align: middle;
    display: block;
    padding: .1rem 0;
    border-bottom: .01rem solid #e5e5e5
}

.page .header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: .45rem;
    line-height: .45rem;
    padding: 0;
    color: #fff;
    font-size: .2rem;
    text-align: center;
    border-bottom: .01rem solid #ccc;
	background:#01a75b;
}

.page .back-btn {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: rotatez(180deg);
    -ms-transform: rotatez(180deg);
    -o-transform: rotatez(180deg);
    transform: rotatez(180deg);
    width: .45rem;
    height: .45rem;
    background-size: contain;
    background-position: center
}

.page .back-btn:after {
    display: block;
    content: ' ';
    background: url(/uploads/image/agimg/right_arrow-2x.png) no-repeat;
    width: .14rem;
    height: .2rem;
    background-size: contain;
    position: absolute;
    top: 12px;
    left: 17px
}

.page .wrapper {
    position: absolute;
    z-index: 1;
    top: .45rem;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden
}

.page .scroller {
    position: absolute;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none
}

.page .scroller ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left
}

.page .index-sidebar {
    position: fixed;
    right: .05rem;
    top: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 2;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: rgba(0, 0, 0, .1)
}

.page .index-sidebar li {
    width: .36rem;
    text-align: center;
    padding: .04rem 0
}

.selector .title {
    background-color: #efeff4;
    padding: .1rem 0 .1rem .15rem;
    border-bottom: .01rem solid #ddd;
    line-height: .28rem;
    font-size: .16rem
}

.selector .item {
    position: relative;
    padding-left: .15rem;
    line-height: .28rem;
    font-size: .16rem;
    color: #333;
    cursor: pointer
}

.selector .item span {
    vertical-align: middle;
    display: block;
    padding: .1rem 0;
    border-bottom: .01rem solid #e5e5e5
}

.selector .items {
    display: none
}

.action-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 10
}

.action-sheet .content {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
    color: #333;
    background: #fff
}

.action-sheet ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.action-sheet .header {
    padding: .15rem;
    text-align: center;
    font-size: .16rem;
    border-bottom: .01rem solid #e5e5e5
}

.action-sheet .header .back-btn {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    line-height: .49rem;
    width: .49rem
}

.color .items,.car-color .items, .transfer-time .items {
    padding: .2rem .15rem;
    overflow: hidden
}

.color .items .item,.car-color .items .item, .transfer-time .items .item {
    line-height: .4rem;
    text-align: center;
    padding: .05rem;
    cursor: pointer
}

.color .items .item > div,.car-color .items .item > div, .transfer-time .items .item > div {
    border-radius: .03rem;
    border: .01rem solid #e5e5e5
}

.color .items .active.car-color .items .active, .transfer-time .items .active {
    color: #38bb0b;
}

.color .items .active > div.car-color .items .active > div, .transfer-time .items .active > div {
    border-color: #38bb0b;
}

.situation .items {
    padding: .2rem .15rem .1rem
}

.situation .items .item {
    border: .02rem solid #e5e5e5;
    padding: .1rem;
    font-size: .16rem;
    margin-bottom: .1rem;
    cursor: pointer;
    border-radius: .03rem
}

.situation .items .item .left {
    margin-right: .1rem;
    -webkit-align-self: center;
    align-self: center
}

.situation .items .item .right {
    line-height: 1.5
}

.situation .items .active {
    color: #38bb0b;
    border-color: #38bb0b;
}

.agreement {
    display: none;
    font-size: .14rem;
    line-height: 1.5
}

.agreement li, .agreement ol {
    list-style: decimal
}

.agreement ol {
    padding-left: .2rem
}

.agreement body {
    line-height: 1.5
}

.agreement .block {
    margin: 0 0 .15rem
}

.agreement p {
    text-indent: 2em
}

.agreement h1 {
    font-size: .14rem;
    font-weight: 700
}

.agreement .scroller {
    padding: .1rem
}