
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-size: 20px;
}

body {
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: #333;
    -webkit-tap-highlight-color: transparent;
}

img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

input {
    outline: none;
}

ul,
li,
ol {
    list-style: none;
}

em,
i,
b,
strong {
    font-style: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

.f_left {
    float: left;
}

.f_right {
    float: right;
}

.f_clear {
    overflow: hidden;
}

.hide {
    display: none;
}


/*文字两端对齐*/

.wordSpace {
    text-align: justify;
    text-align-last: justify;
}


/*全屏效果*/

.fullScreen {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/*垂直居中*/

.centerY {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


/*水平居中*/

.centerX {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


/*垂直水平居中*/

.allcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 使用css3的transform来实现 */
}


/*渐变*/

.gradient {
    background-image: -webkit-linear-gradient(156deg, #ff7e24, #f84c32 40%, #ed0246);
    background-image: -moz-linear-gradient(156deg, #ff7e24 0, #f84c32 40%, #ed0246 100%);
    background-image: -o-linear-gradient(156deg, #ff7e24 0, #f84c32 40%, #ed0246 100%);
    background-image: linear-gradient(294deg, #ff7e24, #f84c32 40%, #ed0246);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}


/*强制不换行显示省略号-IOS移动端滑动顺畅*/

.nowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}


/*相册*/

.album {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* ios滑屏优化 */
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}


/*flex全兼容写法，超出换行，垂直居中*/

.flex {
    display: box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* flex 子元素 自适应 超出不换行省略号*/

.flexs {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* 限制两行,不能加内边距 */

.line {
    -webkit-line-clamp: 2;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.nomore {
    font-size: .6rem;
    text-align: center;
    color: #999;
    padding: .5rem 0;
    background-color: #fff;
}

.label span {
    display: inline-block;
    vertical-align: middle;
    font-size: 10px;
    height: 16px;
    padding: 0 2px;
    margin-right: 5px;
    background-color: #eff3fc;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    color: #668ae9;
}

.ir_btn {
    display: block;
    width: 100%;
    height: 44px;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: .3rem;
    text-align: center;
    -webkit-box-shadow: 0 4px 8px 0 rgba(246, 76, 50, .3);
    -moz-box-shadow: 0 4px 8px 0 rgba(246, 76, 50, .3);
    box-shadow: 0 4px 8px 0 rgba(246, 76, 50, .3);
    background-image: -webkit-linear-gradient(left, #f54732, #ff7338);
    background-image: -webkit-gradient(linear, left top, right top, from(#f54732), to(#ff7338));
    background-image: -moz- oldlinear-gradient(left, #f54732, #ff7338);
    background-image: -o-linear-gradient(left, #f54732, #ff7338);
    background-image: linear-gradient(90deg, #f54732, #ff7338);
}

.ir_input {
    width: 100%;
    height: 44px;
    padding: 9px 16px;
    line-height: 1.25;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 24px;
}

.ir_click {
    display: block;
    width: 84px;
    height: 28px;
    line-height: 28px;
    background-image: -webkit-linear-gradient(top, #fff 50%, #ddc4c4);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#ddc4c4));
    background-image: -moz- oldlinear-gradient(top, #fff 50%, #ddc4c4 100%);
    background-image: -o-linear-gradient(top, #fff 50%, #ddc4c4 100%);
    background-image: linear-gradient(-180deg, #fff 50%, #ddc4c4);
    -webkit-box-shadow: 0 6px 12px 0 rgba(180, 0, 0, .7);
    -moz-box-shadow: 0 6px 12px 0 rgba(180, 0, 0, .7);
    box-shadow: 0 6px 12px 0 rgba(180, 0, 0, .7);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    margin: 11px auto 0;
    color: #f42032;
    text-align: center;
}

.ir_more {
    position: relative;
    display: block;
    height: 2.2rem;
    line-height: 2.2rem;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    background-color: #f3f3f3;
    color: #86add5;
    margin-top: .5rem;
}

.img_scale:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.img_scale img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -o-object-fit: cover;
    object-fit: cover;
}

.sellout {
    position: relative;
}

.sellout::after {
    content: "售罄";
    text-align: center;
    font-size: 34px;
    padding-top: 28%;
    color: #DEDEDE;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    letter-spacing: 20px;
    text-indent: 20px;
    background-color: rgba(0, 0, 0, .6);
}

/* 遮罩层 */

.modal {
    position: fixed!important;
    top: 0!important;
    left: 0!important;
    right: 0!important;
    bottom: 0!important;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);

    z-index: 9999;
    display: none;
}

.modal>div {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 360px;
    padding: 20px 24px;
}

.modal>div>div {
    position: relative;
}

.modal_title {
    line-height: 1.58;
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    padding-bottom: 12px;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    cursor: pointer;
}

#login p {
    line-height: 1.285;
    font-size: 16px;
}

.login_input {
    position: relative;
    height: 44px;
    padding-left: 30px;
    margin-top: 30px;
    border: 1px solid #dedede;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

#login button {
    width: 100%;
    padding: 10px 0;
    margin-top: 30px;
}

.login_input i.icon {
    position: absolute;
    left: 15px;
    top: 12px;
}

#login input {
    width: 100%;
    height: 100%;
    padding: 12px 14px;
    line-height: 1.286;
    font-size: 14px;
    border: 0;
    background-color: transparent;
    color: inherit;
}

.login_input span {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.login_input span:hover {
    color: #d43400;
    cursor: pointer;
}

#login em {
    position: absolute;
    left: 0;
    bottom: -20px;
    color: #ff413c;
    font-size: 12px;
    display: none;
}

#login div.active {
    border-color: #ff413c;
}

.login_regist {
    font-size: 14px;
    margin-top: 44px;
}

.login_regist i.icon {
    font-size: 14px;
    color: #999;
}

.login_regist i.icon-tucenggouxuan {
    color: #ff5121;
}

.login_regist a {
    color: #586c94;
}

.login_regist {
    position: relative;
    cursor: pointer;
}

.login_regist a:hover {
    color: #d43400;
}

.login_regist p {
    position: absolute;
    bottom: -14px;
    left: 0;
    display: none;
    font-size: 12px!important;
    color: #ff413c;
}

#youhui {
    /* display: block; */
}

.Modal-main {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.Modal-discount {
    background-color: #ef0f0f;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f9510f), to(#ef0f0f));
    background-image: -webkit-linear-gradient(top, #f9510f, #ef0f0f);
    background-image: -o-linear-gradient(top, #f9510f 0, #ef0f0f 100%);
    background-image: -moz-linear-gradient(top, #f9510f 0, #ef0f0f 100%);
    background-image: linear-gradient(180deg, #f9510f, #ef0f0f);
    -webkit-box-shadow: 0 0 10px 0 #b80006;
    -moz-box-shadow: 0 0 10px 0 #b80006;
    box-shadow: 0 0 10px 0 #b80006;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    padding: 0!important;
}

.Modal-discount-header {
    position: relative;
    overflow: hidden;
    height: 120px;
    -webkit-border-radius: 24px 24px 0 0;
    -moz-border-radius: 24px 24px 0 0;
    border-radius: 24px 24px 0 0;
    text-align: center;
}

.Modal-discount-header-inner {
    position: absolute;
    left: -60px;
    right: -60px;
    bottom: 0;
    height: 150px;
    -webkit-border-radius: 0 0 48% 48%;
    -moz-border-radius: 0 0 48% 48%;
    border-radius: 0 0 48% 48%;
    overflow: hidden;
}

.Modal-discount-header-inner:after,
.Modal-discount-header-inner:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    -webkit-border-radius: 0 0 50% 50%;
    -moz-border-radius: 0 0 50% 50%;
    border-radius: 0 0 50% 50%;
    -webkit-box-shadow: 0 0 12px 0 rgba(193, 0, 6, .6);
    -moz-box-shadow: 0 0 12px 0 rgba(193, 0, 6, .6);
    box-shadow: 0 0 12px 0 rgba(193, 0, 6, .6);
}

.Modal-discount-header-inner:before {
    bottom: 10px;
    z-index: 2;
    -webkit-box-shadow: inset 0 0 0 2px #ff5735;
    -moz-box-shadow: inset 0 0 0 2px #ff5735;
    box-shadow: inset 0 0 0 2px #ff5735;
}

.Modal-discount-header-content {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff6022), to(#ef0f0f));
    background: -webkit-linear-gradient(top, #ff6022, #ef0f0f);
    background: -o-linear-gradient(top, #ff6022 0, #ef0f0f 100%);
    background: -moz-linear-gradient(top, #ff6022 0, #ef0f0f 100%);
    background: linear-gradient(180deg, #ff6022, #ef0f0f);
    -webkit-box-shadow: 0 10px 29px 0 rgba(174, 0, 0, .2), 0 0 12px 0 rgba(193, 0, 6, .6);
    -moz-box-shadow: 0 10px 29px 0 rgba(174, 0, 0, .2), 0 0 12px 0 rgba(193, 0, 6, .6);
    box-shadow: 0 10px 29px 0 rgba(174, 0, 0, .2), 0 0 12px 0 rgba(193, 0, 6, .6);
}

.Modal-discount-header-title {
    padding-top: 28px;
    font-size: 24px;
    color: #fff;
}

.Modal-discount-header-logo {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 78px;
    margin-left: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #ffea9a;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff5d2), to(#ffea9a));
    background-image: -webkit-linear-gradient(top, #fff5d2, #ffea9a);
    background-image: -o-linear-gradient(top, #fff5d2 0, #ffea9a 100%);
    background-image: -moz-linear-gradient(top, #fff5d2 0, #ffea9a 100%);
    background-image: linear-gradient(180deg, #fff5d2, #ffea9a);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.Modal-discount-header-logo i {
    font-size: 30px;
    color: #f7b269;
}

.Modal-discount-header-logo:after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 52px;
    height: 52px;
    border: 1px solid #ffd698;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.Modal-discount .Modal-form {
    padding: 36px 44px 30px;
    text-align: center;
}

.Form-item {
    position: relative;
    height: 44px;
    border: 1px solid #eee;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.Modal-discount .Form-item {
    background-color: #fff;
    border-color: transparent;
}

.Form-input {
    height: 100%;
    padding: 9px 16px;
    line-height: 1.25;
    border: 0;
    width: 100%;
    font-size: 16px;
    background-color: transparent;
}

.Modal-discount .Button--solid {
    width: 214px;
    margin: 24px auto 0;
    height: 44px;
    line-height: 44px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    font-size: 20px;
}

.Button--solid {
    color: #e82200;
    background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fffffe), color-stop(33%, #ffddd1), to(#fe9572));
    background-image: -webkit-linear-gradient(top, #fffffe, #ffddd1 33%, #fe9572);
    background-image: -o-linear-gradient(top, #fffffe 0, #ffddd1 33%, #fe9572 100%);
    background-image: -moz-linear-gradient(top, #fffffe 0, #ffddd1 33%, #fe9572 100%);
    background-image: linear-gradient(180deg, #fffffe, #ffddd1 33%, #fe9572);
    -webkit-box-shadow: 0 5px 24px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 5px 24px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 24px 0 rgba(0, 0, 0, .1);
    font-weight: 700;
}

#price {
    /* display: block; */
}

#price>div {
    padding: 20px 24px;
}

#price h4 {
    color: #ff5121;
    font-size: 20px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: normal;
    padding-top: 20px;
}

.price_info p {
    font-size: 14px;
    color: #333;
}

.price_input {
    position: relative;
    margin-bottom: 30px;
}

.price_input p {
    position: absolute;
    top: 66px;
    left: 0;
    font-size: 12px;
    color: #ff413c;
}

.price_num {
    padding-top: 5px;
    text-align: center;
}

.price_num span {
    color: #ff413c;
}

.price_tips {
    margin-top: 32px;
    margin-bottom: 20px;
}

#call {
    /* display: block; */
}

.call_info {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
}

.call_info strong {
    line-height: 1.48;
    padding-top: 8px;
    font-size: 18px;
    font-weight: 700;
}

.call_info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.call_info p {
    margin-top: 32px;
}

#car {
    /* display: block; */
}

#car img {
    width: 100%;
    margin: 20px 0;
}

.car_name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.375;
    color: #121212;
    margin: 18px 0;
    text-align: center;
}

#car p {
    text-align: center;
    color: #333;
    font-size: 16px;
    line-height: 1.25;
}

.merit {
    padding-top: 20px;
}

.merit i.icon {
    float: left;
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin: 12px 14px 0 0;
    text-align: center;
    font-size: 22px;
    color: #4e4e4e;
}

.merit b {
    font-size: 16px;
    font-weight: 700;
}

.merit p {
    padding-top: 4px;
    font-size: 12px;
}