body{
    background:#F9F9F9
}
#app {
    min-height: 100vh;
    box-sizing: border-box;
}
/* .content-wrap {
    min-height: 100vh;
} */
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -webkit-optimize-contrast;
    -webkit-perspective: 1; 
  }
.popup_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999999;
}
.popup_bg .popup_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 6px;
    width: calc(100% - 32px);
    max-width: 328px;
    padding: 45px;
    box-sizing: border-box;
}
.popup_bg .popup_box> p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #222222;
    margin-bottom: 34px;
    text-align: center;
}
.popup_bg .popup_box>button {
    width: 100%;
    height: 40px;
    background: #2e6fef;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border: none;
}
.popup_bg .popup_box .close_btn_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup_bg .popup_box .close_btn_box button {
    width: calc(50% - 8px);
    height: 40px;
    background: #2e6fef;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border: none;
}
.popup_box .close_btn_box button:nth-of-type(2) {
    background: #989AA0;
}

body.bg_color{
    background: #F7F7F8;
}
body {
    min-height: 100vh; /* Fallback for browsers that do not support Custom Properties */
    min-height: calc(var(--vh, 1vh) * 100);
    box-sizing: border-box;
}
.wrap {
    padding:0 20px;
    
}
.content-wrap .wrap {
    position: relative;
}
.car_bg .content-wrap .wrap {
    background: none;
    position: relative;
}
.header_blank {
    height: 48px;
}
header{
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: 0.2s;
    /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
}
header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    position: relative;
    border-bottom: 1px solid #E9E9E9;
}
header button {
    border: none;
    background: none;
    display: block;
    color: #989aa0;
    font-size: 20px;
}
header button.www {
    color: #fff;
}
header img {
    display: block;
}
header .wrap h2 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}
header .wrap> h2 {
   
    position: absolute;
    left: 50%;
    transform: translate(-50%, -1px);
}
.btn_box_fixed {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);;
    padding: 20px 0;
    box-sizing: border-box;
    max-width: 330px;
}
.btn_box_fixed >p {
    text-align: center;
    margin-bottom: 10px;
    color: #666;
}
.btn_box_fixed .default_btn1 {
    display: block;
    width: 100%;
    height: 45px;
    background: #2e6fef;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 8px;
    text-align: center;
    line-height: 45px;
}


.login_wrap {
    width: calc(100% - 40px);
    max-width: 330px;
    margin: 0 auto;
    min-height: calc(100vh - 128px);
}
.login_wrap>img {
    display: block;
    margin: 30px auto 0;
}
.login_wrap input {
    height: 45px;
    border-radius: 10px;
    color: #000;
    border: 1px solid #545454;
    width: 100%;
    background: rgba(255, 255, 255, 0.32);
    font-size: 14px;
    padding:0 10px;
    box-sizing: border-box;
    font-weight: 400;
}
.login_wrap input::placeholder  {
    color: #959595;
}
.login_wrap .login_form input::placeholder  {
    color: #959595;
}

.login_wrap input:focus {
   /* border-bottom: 1px solid #65BECE;*/
}
.login_wrap input:focus + p {
    color: #2e6fef !important;
}
.login_wrap ul.login_form li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
}
.login_wrap ul.login_form li:last-child{
    margin-bottom: 0;
}
.login_wrap ul.login_form> li.submit button {
    width: 100%;
    height: 45px;
    background:#1962E5;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.login_wrap ul.login_form li > a {
    font-size: 14px;
    color: #000;
    margin: 0 10px;
    position: relative;
}
.login_wrap ul.login_form li.find_login_li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_wrap ul.login_form li.find_login_li a:nth-of-type(1)::after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
}
.easy_login_wrap {
    margin-top:40px;
}
.easy_login_wrap >p {
    color: #000;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.easy_login_wrap >p::after{
    background: #000;
    width:calc(50% - 40px);
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 1px;
    z-index: 1;
}
.easy_login_wrap >p::before{
    background: #000;
    width:calc(50% - 40px);
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 1px;
    z-index: 1;
}
.easy_login_wrap >p span {
    padding: 0 10px;
}
.login_wrap ul.easy_login{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
}

.login_wrap ul.easy_login img{
    height:44px;
}


.login_wrap ul.easy_login li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 9px;
    margin: 0 5px;
    /*
    background: #F3F3F3;
    box-shadow: 0px 2px 8px rgba(69, 69, 69, 0.18);
    */
}
.login_wrap ul.easy_login li:nth-of-type(1) a{
    background: #E9E9E9;
}
.login_wrap ul.easy_login li:nth-of-type(2) a{
    background: #FDDC3F;
}
.login_topbanner {
    padding: 20px 0 0px 0;
    width: calc(100%);
    max-width: 330px;
}

.login_topbanner dl dt{
    color: #222;
    font-weight: 900;
    line-height: 25px;
    font-size: 19px;
    text-align: center;
    margin-bottom: 10px;
}
.login_topbanner dl dd {
    color: #999;
    font-size: 12px;
    text-align: center;
}
.start_page_box {

}
.start_page_box dl {
    color: #fff;
    width: calc(100% - 40px);
    max-width: 330px;
    margin: 0px auto;
    padding-top: 100px;
}
.start_page_box dl dt {
    color: #fff;
    line-height: 1.4;
    font-size: 26px;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
}
.start_page_box dl dd {
    color: #fff;
    line-height: 1.5;
    font-size: 14px;
    text-align: left;
    font-weight: 200;
}
.start_page_box dl dt span {
}
.start_page_box_div {
    position: fixed;
    bottom:100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.start_page_box_div p {
    color: #929292;
    font-size: 15px;
    margin-top: 15px;
    text-align: center;
}
.start_page_box_div p a {
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
}
.start_page_box button{
    background: none;
    border-radius: 25px;
    height: 50px;
    color: #fff;
    font-size: 16px;
    display: block;
    margin: 30px auto 0;
    border: none;
    width: calc(100% - 60px);
    max-width: 300px;
    font-weight: 400;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.start_page_box button i  {
    display:block;
    margin-left: 10px;
    animation: arrow 1.5s;
    animation-iteration-count: infinite;
}

.login_topbanner dl dt {
    color: #959595;
    font-weight: 500;
    line-height: 1.3;
    font-size: 30px;
    text-align: left;
    margin-bottom: 10px;
}
.login_topbanner img.login_logo{
    width: 110px;
    margin:50px auto;
}
.login_topbanner dl dt span {
    color: #004A8F;
}
.login_topbanner dl dd {
    color: #959595;
    font-size: 15px;
    text-align: left;
    font-weight: 500;
}

.login_topbanner img {
    display: block;
    margin: 0 auto;
}
.main_banner {
    position: relative;
    /*height: calc(100vh - 46px);*/
    /* background: url(../images/car_bg1.png) no-repeat center; */
    background-size:100%;
    background-attachment: fixed;
    padding-top: 66.8%;
    overflow: hidden;
}



.main_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: rgy02 1s;
    opacity: 1;
    display: block;
}
@keyframes rgy02 {
    0% {
        width:  110%;
        height:  110%;
    }
    100% {
        width:  100%;
        height:  100%;
    }

}

.main_banner dl{
    position: absolute;
    bottom: 30px;
    left: 20px;
}
.main_banner dl dt {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}
.main_banner dl dd button{
    background: none;
    border-radius: 38px;
    height: 32px;
    color: #fff;
    font-size: 16px;
    display: block;
    margin: 30px auto 0;
    border: none;
    width: 200px;
    max-width: 330px;
    font-weight: 400;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_banner dl dd button i {
    margin-left: 10px;
    animation: arrow 1.5s;
    animation-iteration-count: infinite;
}

@keyframes arrow {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0px);
    }
}
.car_brand li {
    width: calc(50% - 6px);
    background: #FFFFFF;
    box-shadow: 0px 2px 8px rgba(69, 69, 69, 0.18);
    border-radius: 12px;
    height: 68px;
}
.car_brand{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}
.car_brand li a {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.car_brand li a span {
    margin-left: 20px;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}
.event_banner .item{
    height: 72px;
}
.event_banner .item img {
    width: 100%;
}
.owl-theme.event_banner .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px;
    margin: 0px 3px !important;
}
.owl-theme.event_banner .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #2e6fef;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    position:absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.section_title {
    font-size: 17px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_title a{
    color:#000000;
    font-size: 12px;
}
.section_title i {
    margin-left: 5px;
}
.section_title p {
    display: flex;
    align-items: center;
    font-size: 20px;
}
.section_title p img {
    margin-right: 10px;
}
.section_title a img {
    display: block;
    padding: 0 5px;
}
.recent_car_ul {
    padding-left: 18px;
}
.recent_car_ul .item a div.img{ 
    padding-top: 100%;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 1.5px 1.5px 8px rgb(116 116 116 / 10%);
}
.recent_car_ul .item a div.img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.recent_car_ul .item a p {
    height:2em;
    margin-top: 5px;
    text-align: center;
    color: #333;
    line-height: 1.2;
    font-weight: 400;
    height: 2.3em;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
}
.recent_car_ul .item a p span{
    font-weight: 500;
}
.freebook_consultant_ul{
    padding-left: 10px;
}
.freebook_consultant_ul .item a{
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background:#fff;
}

.sc_consultant_ul .item a{
    padding: 10px 20px 15px;
    height: 100%;
    box-sizing: border-box;
}
.sc_consultant_ul .item a >dl {
    margin-bottom: 10px;
}
.sc_consultant_ul .item a >dl dt{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sc_consultant_ul .item a >dl dt>p{
    font-size: 15px;
    font-weight: 500;
    color: #1D1D1D;
}
.sc_consultant_ul .item a >dl dt p> span {
    font-size: 12px;
    font-weight: 400;
    margin-left: 5px;
}
.sc_consultant_ul .item a >dl dt> span {
    font-size: 7px;
    font-weight: 500;
    color: #003594;
    padding: 3px 7px;
    border-radius: 15px;
    background: #EAF0FC;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
}
.sc_consultant_ul .item a >dl dt> span >img {
    height: 16px;
    margin-right: 5px;
}
.sc_consultant_ul .item a >dl dd span{
    font-size: 14px;
    padding-right: 6px;
    position: relative;
    font-weight: 400;
    margin-right: 6px;
}
.sc_consultant_ul .item a > p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    margin-top: 12px;
    font-size: 12px;
    color: #444;
    /*
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-shadow: 1px 1px 5px #000;
    */
}
.sc_consultant_ul .item a > p span {
    display: flex;
    align-items: center;
}
.sc_consultant_ul .item a > p span i {
    margin: 0 5px;
}
.sc_consultant_ul .item a > p span img {
    height: 14px;
    display: block;
    margin-right: 5px;
}
.freebook_consultant_ul .item a figure {
    position: relative;
    padding-top: 140%;
   /* border-radius: 12px;*/
    overflow: hidden;
}
.freebook_consultant.sc_consultant_ul .item a figure {
    position: relative;
    padding-top: 80%;
    border-radius: 12px;
    overflow: hidden;
    border-radius: 12px;
}
.freebook_showroom_ul .item a figure {
    position: relative;
    padding-top: 80%;
}
.freebook_consultant_ul .item a figure dl {
  /*  position: absolute;
    bottom: 10px;
    left: 10px;*/
    color: #fff;
    opacity: 0;
    z-index: 1;
    text-shadow: 1px 1px 5px #000;
}
.freebook_consultant_ul.freebook_showroom_ul .item a figure dl {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    right: 20px;
    opacity: 0 !important;
   
}
.freebook_consultant_ul.freebook_showroom_ul .item.swiper-slide-active a figure dl{
    opacity: 1 !important;
    transition: 0.8s;
}
.freebook_consultant_ul.freebook_showroom_ul .item:nth-last-of-type(1) a figure dl {
    opacity: 1 !important;
}
.freebook_consultant_ul .item.swiper-slide-active a figure dl, .freebook_consultant_ul .item.swiper-slide-next a figure dl{
    opacity: 1;
    transition: 0.8s;
}
.freebook_consultant_ul .item:nth-last-of-type(1) a figure dl {
    opacity: 1;
}
.freebook_consultant_ul .item:nth-last-of-type(1) a figure >img{
    width: 100% !important;
    height: 100% !important;
}
.freebook_consultant.sc_consultant_ul .item.swiper-slide-active a figure >img{
    width: 100%;
    height: 100%;
}
.freebook_consultant.sc_consultant_ul .item.swiper-slide-next a figure >img{
    width: 110%;
    height: 110%;
}

.freebook_consultant .item.swiper-slide-active a figure >img, .freebook_consultant .item.swiper-slide-next a figure >img{
    width: 100%;
    height: 100%;
}
.freebook_consultant_ul.sc_consultant_ul .item:nth-last-of-type(2)   {
    opacity: 0.5;
}
.freebook_consultant_ul .item:nth-last-of-type(1) {
   margin-right: 14px;
}
.freebook_consultant_ul .item a figure dl dt{
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
}
.freebook_consultant_ul .item a figure dl dd{
    font-size: 10px;
}
.freebook_consultant_ul.freebook_showroom_ul .item a figure dl dt{
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 24px;
}

.freebook_consultant_ul.freebook_showroom_ul .item a figure dl dd{
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.freebook_consultant_ul.freebook_showroom_ul .item a figure> img {
    width: 110% !important;
    height: 110% !important;
}
.freebook_consultant_ul.freebook_showroom_ul .item.swiper-slide-active a figure> img{
    width: 100% !important;
    height: 100% !important;
}
.freebook_consultant_ul.freebook_showroom_ul .item a figure dl span{
    position: unset;
    display: flex;
    align-items: center;
    font-size: 12px;
}
.freebook_consultant_ul.freebook_showroom_ul .item a figure span i {
    margin-right: 5px;
    color: #2e6fef;
}
.freebook_consultant_ul .item a figure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.8s;
    animation: rgy03 1s;
}
.freebook_consultant_ul .item a figure> span{
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    display: flex;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    align-items: center;
    text-shadow: none;
}
.freebook_consultant_ul .item a figure span img {
    width: auto;
    margin-right: 4px;
    height: 12px;
}
.carousel-shadow {
    margin:0 10px 7px;
    box-shadow: 1.5px 1.5px 5px rgb(116 116 116 / 20%);
}
.freebook_consultant .swiper-container{
    padding:0 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;

}
.freebook_consultant_ul .item a figcaption dl{
    padding:10px 20px;
    border-bottom: 1px solid #F3F3F3;
}
.freebook_consultant_ul .item a figcaption dl dt {
    height:20px;
    color: #222;
    font-weight: 700;
    font-size: 14px;
   
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.freebook_consultant_ul.freebook_showroom_ul .item a figcaption dl dt {
    color: #222;
    font-weight: 700;
    font-size: 15px;
    margin-bottom:5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.freebook_consultant_ul .item a figcaption dl dt span.dd {
    background: #EEF4F8;
    border-radius: 4px;
    display: block;
   
    height: 20px;
    color: #2e6fef;
    font-size: 12px;
    padding: 0 3px;
    line-height: 20px;
}
.freebook_consultant_ul .item a figcaption dl dt span.dd div {
    display: flex;
    align-items: center;
}
.freebook_consultant_ul .item a figcaption dl dt span {
    color: #666;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.freebook_consultant_ul .item a figcaption dl dt span i {
    margin: 0 5px;
}
.freebook_consultant_ul .item a figcaption dl dt span > img {
    margin-right:4px;
    width:20px;
}
.freebook_consultant_ul .item a figcaption >p{
    /*
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: nowrap;
    margin-top: 0px;
    */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
}
.freebook_consultant_ul .item a figcaption dl dd span {
    font-size: 14px;
    padding-right: 6px;
    position: relative;
    font-weight: 400;
    margin-right: 6px;
}
.freebook_consultant_ul .item a figcaption dl dd span::after {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #C5C9D6;
}
.freebook_consultant_ul .item a figcaption dl dd span:last-child::after {
    display: none;
}

.sc_consultant_ul .item a >dl dd span::after {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #C5C9D6;
}
.sc_consultant_ul .item a > dl dd span:last-child::after {
    display: none;
}
.freebook_consultant_ul .item a figcaption> div {
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    height: 38px;
    display: flex;
    align-items: center;
}
.freebook_consultant_ul .item a figcaption div > img {
    width: 10px;
}
.freebook_consultant_ul .item a figcaption> div.flex_col{
	height:56px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.freebook_consultant_ul .item a figcaption div span:nth-of-type(1) {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}
.freebook_consultant_ul .item a figcaption div span:nth-of-type(2) {
    color: #666;
    display:flex;
    align-items:center
}

.freebook_consultant_ul .item a figcaption div span:nth-of-type(2) img{
    margin-right:4px;
    width:20px;
}

.freebook_consultant_ul.freebook_showroom_ul .item a figcaption dl.flex_col{
	padding:0 8px
}

.freebook_consultant_ul.freebook_showroom_ul .item a figcaption dl.flex_col dt{
	height:56px;
	flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top:0px;
}

.freebook_consultant_ul.freebook_showroom_ul .item a figcaption dl.flex_col dt span{
	margin-top:5px;
}

.attention_ul li {
    margin-bottom: 10px;
}

.attention_ul li:last-child{
    margin-bottom: 0;
}
.attention_ul li a {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    background: #FFFFFF;
    padding: 7px;
    box-shadow: 1.5px 1.5px 8px rgba(116, 116, 116, 0.1);
}


.attention_ul li a figure {
    width: 104px;
    height: 90px;
    border-radius: 9px;
    overflow: hidden;
}

.attention_ul li a figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attention_ul li a figcaption {
    padding-left: 10px;
    width: calc(100% - 104px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.attention_ul li a figcaption p {
    word-break: keep-all;
    font-size: 14px;
    color: #222;
    line-height: 18px;
}
.attention_ul li a figcaption span {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.attention_ul li a figcaption span img {
    margin-right: 4px;
}
.attention_ul > li:last-child {
    border-bottom:none
}
.attention_ul li:first-child {
    padding-top:0;	
}

.login_wrap ul.login_form li button.certify_btn {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    background: #1a59b8;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    height: 30px;
    border-radius: 5px;
    border: none;
    padding:0 10px ;
}
.login_wrap ul.login_form li span.certify_count {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 700;
    color: rgb(255, 27, 27);
}
.login_wrap >dl{
    margin-bottom: 55px;
}
.login_wrap >dl dt{
    font-size: 26px;
    font-weight: 700;
    margin-top: 80px;
    margin-bottom: 30px;
    color: #000;
}
.login_wrap >dl dd {
    color: #505050;
    font-size: 14px;
    word-break: keep-all;
    line-height: 1.5;
}

.login_wrap ul.login_form li p.new_password {
    width: 100%;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
    color: #505050;
}
.chk_box {
    display: flex;
    align-items: center;
    width: 100%;
}

input[class="chk_box"] + label {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../images/chk_no.png') no-repeat center;
    display: inline-block;
    cursor: pointer;
    margin-right:10px;
    background-size: cover;
}
input[class="chk_box"]:checked + label {
    background: url('../images/chk_ok.png') no-repeat center;
    background-size: cover;
}
input[class="chk_box"] {
    display: none;
}
input[class="chk_box"] + label + label {
    /* font-weight: 700; */
    color: #333;
    font-size: 14px;
    cursor: pointer;
    width: calc(100% - 30px);
}
input[class="chk_box"]:checked + label + a label {
    color: #2e6fef;
}
input[class="chk_box"]:checked + label + label {
    color: #2e6fef;
}
.matching_count{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #111;
    margin: 23px 0 15px;
    font-weight: 500;
}
.matching_count span{
    margin-left: 10px;
}
.reservation_textarea{
    height: 140px;
    padding: 10px 10px;
    border: 1px solid #E9E9E9;
    background: #fff;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    color: #000;
}
.reservation_textarea::placeholder {
    color: #000 !important;
}
.social_login li {
    margin-bottom: 28px;
}
.social_login li:last-child{
    margin-bottom: 0;
}
.social_login li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 48px;
    height: 48px;
    border: 1px solid #999;
    color: #000;
    font-weight: 400;
    position: relative;
}
.social_login li a img {
    margin-right: 10px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
}
.finish_join {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.finish_join dl {
    padding: 0 10px;
}
.under_line_btn{
    margin: 0 auto;
    display: inline-block;
    font-size: 12px;
    color: #000;
    text-decoration: underline;
}
.finish_join dl dt {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}
.finish_join dl dd {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    font-weight: 700;
}
.finish_join dl +div p {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin: 80px 0 40px;
    color: #3AACC1;
}
.finish_join dl +div img {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto;
    max-width: 693px;
}

.bottom_menu {
    padding-bottom: 55px;
}

.footer_menu {
    background: #fff;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 55px;
    z-index: 99999;
    box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 20px 20px 0 0;
    width: 100%;
}
.footer_menu .wrap {
    padding: 0 14px;
}
.footer_menu .wrap ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_menu .wrap ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 72px;
    height: 55px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    position: relative;
}
.footer_menu .wrap ul li.now a {
    color: #2e6fef;
    position: relative;
}
.footer_menu .wrap ul li a img {
    display: block;
    width: 22.5px;
}
.footer_menu .wrap ul li a span.dot {
    width: 10px;
    height: 10px;
    background: #FF0000;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    right: 8px;
}
h3.title {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

h3.title p.sub {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
h3.title a {
    font-size: 14px;
    color: #2e6fef;
}
h3.title span.sub {
    color: #222;
    font-size: 14px;
    font-weight: 400;
}
h3.title:nth-of-type(1) {
    margin-top: 0px;
}

.default_box {
    /*
    padding: 15px 10px;
    background: #F7F7F8;
    box-shadow: 0px 2px 8px rgba(69, 69, 69, 0.18);
    border-radius: 4px;
    box-sizing: border-box;*/
}
.pick_car {
    background-repeat: no-repeat;
    background-position:right 5px bottom 50%;
   
}
.pick_car >img {
    display: block;
    margin: 0px auto 10px;
}
.pick_car dl dt{
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
.pick_car dl dt img {
    margin-right: 5px;
}
.pick_car dl dd {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-top: 3px;
}
.new_address {
    color:#222;
    font-weight: 500;
    font-size: 14px;
}
.new_address_info {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-top: 10px;
}

.reservation_ul li {
    margin-bottom: 20px;
}
.reservation_ul li:last-child {
    margin-bottom: 0;
}
.car_list {
    padding-top: 30px;
    padding-bottom: 15px;
}
.car_list>li> a {
    display: flex;
    align-items: flex-end;
    height: 90px;
    background: #FFFFFF;
   
    border-radius: 9px;
    background-repeat: no-repeat;
    background-position: right 5px bottom 50%;
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    position: relative;
    z-index: 9;
    background-size: 170px;
    box-sizing: border-box;
    
}
.car_list>li> a span i {
    margin-left: 10px;
}
.car_list>li{
    margin-bottom: 15px;
    box-shadow: 1.5px 1.5px 8px rgba(0, 0, 0, 0.16);
    border-radius: 9px;
}

.car_list li a.advertising {
    background-color: #E7E7E8;
}
.car_list li a.advertising dl dt {
    font-size: 12px;
    font-weight: 400;
    color: #222;
}
.car_list li a.advertising dl dd {
    font-size: 16px;
    font-weight: 700;
}
.car_list >li>ul {
    display: none;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-sizing: border-box;
}
.car_list >li>ul li{
    margin-top: 0px;
}

.car_list >li>ul.show {
    border-top: 1px solid #D8D8D8;
}
.car_list >li>ul li a{
    display: flex;
    align-items: center;
    height: 44px;
    background: rgb(252, 252, 252);
    color: #1962E5;
    font-weight: 400;
    font-size: 14px;
    padding: 0 20px;
    border-bottom: 1px solid #F3F3F3;
}
.want_tag {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-bottom: 8px;
    flex-wrap: wrap;
    width: 100%;
}
.want_tag li{
    width: calc(50% - 4px);
    cursor: pointer;
    min-height: 40px;
    padding: 10px 5px;
    background: #FFFFFF;
    border: 1px solid #2e6fef;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
    box-sizing: border-box;
    color: #2e6fef;
    font-size: 14px;
    font-weight: 700;
}
.want_tag li.cho{
    color: #fff;
    background: #2e6fef;
}
.default_fixed_btn{
    width: calc(100% - 24px);
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: none;
    background: #2e6fef;
    position: fixed;
    bottom: 12px;
    left: 12px;
    z-index: 9999;
    border-radius: 56px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}
.default_fixed_btn.not_ok {
    background: #E9E9E9;
    color: #999;
}
.recommend_slide .item>div {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.consultant_img{
    width: 100.5%;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
}
.consultant_img dl {
    position: absolute;
    left: 10px;
    right: 20px;
    bottom: 10px;
    color: #fff;
    width: calc(100% - 20px);
    text-shadow: 1px 1px 5px #000;
}
.consultant_img dl dt{
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.consultant_img dl dt span{
    font-weight: 400;
    font-size: 12px;
}
.consultant_img dl dd{
    font-weight: 400;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.consultant_img dl dd span{
    text-shadow: none;
}
.consultant_img dl dd span i{
    margin-right: 5px;
    color: #2e6fef;
}
.consultant_img >img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* animation: rgy031 1s; */
}


.consultant_img> span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #2e6fef;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
}
.consultant_img span img{
    display: block;
    margin-right: 4px;
    width: 10px !important;
}
.consultant_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   /* position: absolute;
    top: 0;
    left: 0;*/
}
.consultant_info_contants {
    padding: 20px;
    background: #F7F7F8;
}
.consultant_info dl dt {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.consultant_info dl dt span {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}
.consultant_info dl dt span img {
    display: block;
    margin-right: 4px;
    width: 12px;
}
.consultant_info dl dd{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.consultant_info dl dd span{
    font-size: 14px;
    color: #333;
    padding: 0 10px;
    position: relative;
}
.consultant_info dl dd span::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background: #C5C9D6;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.consultant_info dl dd span:last-child::after {
    display: none;
}
.consultant_info dl dd span:nth-of-type(1) {
    padding-left: 0;
}
.consultant_info_sub {
    background: #F7F7F8;
    border-radius: 4px;
    margin-top:0px;
}
.consultant_info_sub ul li {
    padding-left: 10px;
    position: relative;
    font-weight: 500;
    color: #222;
    margin-bottom: 5px;
    word-break: keep-all;
}
.consultant_info_sub ul li.reviewHide {
    height: auto;
    max-height: 2.4em;
}
.consultant_info_sub ul li::after {
    display: block;
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #333;
    position: absolute;
    top: 5px;
    left: 0;
}
.consultant_info_sub ul li:last-child{
    margin-bottom: 0;
}
.consultant_info_sub ul li span{
    color: #2e6fef;
}

.recommend_slide .carousel-shadow {
    margin: 7px;
    box-shadow: 0px 2px 5px rgb(69 69 69 / 18%);
}
.consultant_info >a {
    background: #2e6fef;
    height: 46px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 46px;
    text-align: center;
    display: block;
}

.consultant_find_btn {
    color: #666;
    font-size: 16px;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
}
.consultant_find_btn a{
    font-weight: 500;
}
.change_address_btn {
    width: 100%;
    padding: 0 17px;
    box-sizing: border-box;
    height: 40px;
    border: none;
    background: #F7F7F8;
    color: #222;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.find_consultant_img {
   height: 330px; 
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.find_consultant_img dl {
    position: absolute;
    left: 20px;
    bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 5px #000;
}
.find_consultant_img dl dt{
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.find_consultant_img dl dt span{
    font-weight: 400;
    font-size: 14px;
}
.find_consultant_img dl dd{
    font-weight: 400;
    font-size: 12px;
}
.find_consultant_img >img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: rgy031 1s;
}
.find_consultant_img_gd {
    width: 100%;
    height: 100%;
    background:linear-gradient( rgba(110,110,110,0) 60%,rgba(110,110,110,0.57)98%);
    position: absolute;
    top: 0;
    left: 0;
}
.find_consultant_img_gd p {
    position: absolute;
    bottom: 50px;
    left: 35px;
    color: #fff;
    font-size: 16px;
}
@keyframes rgy03 {
    0% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) ;
    }

}
@keyframes rgy031 {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1) ;
    }

}
.find_consultant_info {
    
}
.consultant_info_box {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgba(0, 0, 0, 0.16);
    background: #fff;
    position: relative;
    animation: opacity1 0.8s;
}

@keyframes opacity1 {
    0% {
        opacity: 0;
        position: relative;
        right: -20px;
    }
    100% {
        opacity: 1;
        right: 0;
        position: relative;
    }
}
.consultant_info_box dl.consultant_info{
    padding-top:0px;
}
.consultant_info_box dl.consultant_info dt {
    
    font-size: 17px;
    font-weight: 700;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
}
.consultant_info_box dl.consultant_info dt span {
    font-size: 14px;
}
.find_consultant_info dl.consultant_info dt div {
    display: flex;
    align-items: center;
    color: #2e6fef;
    font-size: 12px;
    font-weight: 700;
    background: #EEF4F8;
    border-radius: 4px;
    height: 20px;
    padding: 0 3px;
}
.communication_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.communication_box div span {
    font-size: 7px;
    font-weight: 500;
    color: #003594;
    padding: 3px 7px;
    border-radius: 15px;
    background: #EAF0FC;
    margin-right: 5px;
}
.find_consultant_info dl.consultant_info dt div img {
    margin-right: 3px;
    display: block;
    width: 10px;
}
.find_consultant_img dt div {
    display: flex;
    align-items: center;
    color: #2e6fef;
    font-size: 14px;
    font-weight: 700;
    text-shadow: none;
    margin-left: 10px;
    background: #fff;
    border-radius: 4px;
    height: 20px;
    padding: 0 5px;
}
.find_consultant_img dt div img {
    margin-right: 3px;
    display: block;
    width: 10px;
}
.consultant_info_box dl.consultant_info dd{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
}
.find_consultant_info dl.consultant_info dd span{
    font-size: 14px;
    color: #222;
    padding: 0 10px;
    position: relative;
}
.find_consultant_info dl.consultant_info dd span::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background: #C5C9D6;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.find_consultant_info dl.consultant_info dd span:nth-last-of-type(1):after {
    display: none;
}
.find_consultant_info dl.consultant_info dd span:nth-of-type(1) {
    padding-left: 0;
    display: flex;
    align-items: center;
}
.find_consultant_info dl.consultant_info dd span:nth-of-type(1) img {
    margin-right: 2px;
    display: block;
}
.find_consultant_info dl.consultant_info dd p {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1;
}
.find_consultant_tag{
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.find_consultant_tag .tag_box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 80px);
}
.find_consultant_tag .tag_box span{
    display: inline-block;
    height: 20px;
    padding: 0 3px;
    background: #EEF4F8;
    color: #2e6fef;
    font-weight: 700;
    font-size: 12px;
    margin-left: 4px;
    border-radius: 4px;
    line-height: 20px;
    margin-bottom: 4px;
}
.find_consultant_tag .tag_box span:nth-of-type(1){
    margin-left: 0;
}
.communication_box ul{
    display: flex;
    align-items: center;
    width: 80px;
}
.communication_box ul li {
    font-size: 12px;
    color: #222;
    display: flex;
    align-items: center;
    margin-left: 15px;
    line-height: 20px;
    font-weight: 500;
}
.communication_box ul li i {
    margin-right: 4px;
    color: #c5c9d6;
}
.communication_box ul li:first-child{
    margin-left: 0;
}
.communication_box ul li img {
    display: block;
    margin-right: 4px;
    width: 12px;
}
h4.title {
    margin-top: 30px;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
}
.consultant_introduce {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgba(0, 0, 0, 0.16);
    background: #fff;
    margin-top: 20px;
    position: relative;
    animation: opacity2 0.8s;
}

@keyframes opacity2 {
    0% {
        opacity: 0;
        position: relative;
        left: -20px;
    }
    100% {
        opacity: 1;
        position: relative;
        left: 0;
    }
}
.consultant_introduce h4.title {
    margin-top: 0;
}
.consultant_introduce>h4+div.contants{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.consultant_introduce>h4+div.contants .contants_pbox{
/*    padding: 14px 10px 20px;*/
}
.consultant_introduce>h4+div.contants .contants_pbox1{
    padding: 14px 10px 20px;
}
.consultant_introduce>h4+div.contants .contants_pbox p{
    color: #222;
    font-weight: 400;
    font-size: 14px;
    word-break: keep-all;
    transition: 0.3s;
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: normal; 
    line-height: 18px;
}
.consultant_introduce>h4+div.contants .contants_pbox1 p{
    color: #222;
    font-weight: 400;
    font-size: 14px;
    word-break: keep-all;
    transition: 0.3s;
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: normal; 
    line-height: 18px;
}
.consultant_introduce>h4+div.contants .contants_pbox p.up {
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: normal; 
    line-height: 18px;
    height: 36px;
    word-wrap: break-word;
    display: -webkit-box;
     -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
    transition: 0.3s;
}
/*
.consultant_introduce>h4+div.contants .contants_pbox p.up {
    height: auto;
    transition: 0.3s;
    -webkit-line-clamp:unset;
    -webkit-box-orient: unset;
    -webkit-transition-duration: 0.8s;
    transition: 0.3s;
}
*/
.consultant_introduce>h4+div.contants button::after{
    content: url("../images/arrow_down.png");
    margin-left: 5px;
}
.consultant_introduce>h4+div.contants button.up::after{
    content: url("../images/arrow_up.png");
}
.consultant_introduce>h4+div.contants button {
    height: 40px;
    width: 100%;
    border: none;
    background: #F7F7F8;
    border-top: 1px solid #E9E9E9;
    font-size: 14px;
    font-weight: 700;
    color: #222;
}
.consultant_introduce>h4+div.contants button img{
    margin-left: 3px;
}
.contants_boxbox {
    box-shadow: none;
    border-radius: 10px !important;
    color: #fff !important;
    position: relative !important;
    margin-top: 10px !important;
    overflow: unset !important;
}
.free_book_data {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgba(0, 0, 0, 0.16);
    background: #fff;
    margin-top: 20px;
    position: relative;
    animation: opacity1 0.8s;
}

@keyframes opacity1 {
    0% {
        opacity: 0;
        
        right: -20px;
    }
    100% {
        opacity: 1;
        right: 0;
    }
}
.free_book_data>h4{
    margin-top: 0;
}
.free_book_data>h4+div.contants{
    background: #fff;
    /*box-shadow: rgb(46 111 239 / 20%) 0px 0px 10px -5px, rgb(46 111 239 / 10%) 0px 3px 4px 2px;*/
}
.free_book_data>h4+div.contants .contants_pbox{
    padding: 0 30px 10px;
}
.people_count {
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
    font-size: 14px;
    color: #222;
}
.contants_boxbox .contants_pbox p{
    color: #fff !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    word-break: keep-all !important;
    transition: 0.3s !important;
    overflow: hidden; 
    text-overflow: ellipsis !important;
    white-space: normal !important; 
    line-height: 18px;
    text-shadow: 1px 1px 5px #000;
}
.contants_boxbox .contants_pbox1 p{
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    word-break: keep-all;
    transition: 0.3s;
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: normal; 
    line-height: 18px;
}
.contants_boxbox .contants_pbox p.up {
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: normal; 
    line-height: 18px;
    height: 36px;
    word-wrap: break-word;
    display: -webkit-box;
     -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
    transition: 0.3s;
}
.people_count span {
    font-weight: 700;
    color: #1a59b8;
    font-weight: 500;
}
.chart>div {
    width: 100%;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
}
.chart>div span {
    display: block;
    height: 100%;
}
.chart>div span.good {
    background: #2e6fef;
}
.chart>div span.soso {
    background: #66D8C4;
}
.chart>div span.bad {
    background: #F8998C;
}
.chart>ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.chart>ul li{
    display: flex;
    align-items: center;
}
.chart>ul li dl {
    margin-left: 10px;
}
.chart>ul li dl dt{
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}
.chart>ul li dl dd {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}
.chart>ul li:nth-of-type(1) span {
    display: block;
    width: 12px;
    height: 12px;
    background: #2e6fef;
    border-radius: 2px;
}
.chart>ul li:nth-of-type(2) span {
    display: block;
    width: 12px;
    height: 12px;
    background: #66D8C4;
    border-radius: 2px;
}
.chart>ul li:nth-of-type(3) span {
    display: block;
    width: 12px;
    height: 12px;
    background: #F8998C;
    border-radius: 2px;
}
.reviews_type {
    margin-top: 20px;
}
.reviews_type li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}
.reviews_type li:last-child{
    margin-bottom: 0;
}
.reviews_type li span{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}
.reviews_type li span img{
    margin-right: 8px;
    width: 12px;
}
.customer_reviews{
    padding: 15px 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgba(0, 0, 0, 0.16);
    background: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    animation: opacity2 0.8s;
}
.customer_reviews .title_box{
    margin-top: 0;
    margin-bottom: 10px;
}
@keyframes opacity2 {
    0% {
        opacity: 0;
        
        left: -20px;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.customer_reviews h4 {
    margin-top: 0;
}
.customer_reviews h4 span {
    color: #2e6fef;
    margin-left: 5px;
}
.title_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 10px;
}
.title_box h4{
    margin: 0;
}
.title_box h4 span{
    font-size: 16px;
    color: #2e6fef;
    margin-left: 5px;
}
.customer_reviews_ul {
    
}
.customer_reviews_ul li{
    display: flex;
    align-items: flex-start;
    padding-bottom:30px;
    width: 100%;
}
.customer_reviews_ul li:last-child{
    padding-bottom: 00px;
}
.customer_reviews_ul li>div {
    width: calc(100%);
    padding-left: 0px;
    box-sizing: border-box;
}
.customer_reviews_ul li div dl dt{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: space-between;
}
.customer_reviews_ul li div dl dt span.name {
    font-size: 14px;
    color: #222;
    position: relative;
    font-weight: 500;
}
/*
.customer_reviews_ul li div dl dt span.name::after{
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #C5C9D6;
    transform: translateY(-50%);
}*/
.customer_reviews_ul li div dl dt span.car_name {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}
.customer_reviews_ul li div dl dd {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.customer_reviews_ul li div p {
    font-size: 14px;
    color: #222;
    /* line-height: 20px; */
    margin-top: 10px;
    word-break: keep-all;
    font-weight: 500;
}
.customer_reviews>h4+div.contants > a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    margin-top: 30px;
}
.customer_reviews>h4+div.contants > a i {
    margin-left: 5px;
    font-weight: 400;
}
.ui.selection.dropdown.w70 {
    width: 70px !important;
    min-width: unset !important;
    border: none;
    text-align: right;
    padding-left: 0;
    padding-right: 27px;
    background: #fff;
}
.ui.selection.dropdown.w100p {
    width: 100% !important;
    text-align: left;
}
select.ui.dropdown.w70 {
    border: none;
}
.ui.selection.dropdown.w70 .menu > .item {
    padding: 0 10px !important;
    font-size: 14px;
}
.ui.selection.dropdown.w70 .menu{
    margin-top:7px;
    box-shadow: 0px 2px 8px rgba(69, 69, 69, 0.18);
    border: none !important;
    border-radius: 6px;
}
.ui.selection.active.dropdown.w70{
    box-shadow: none;
}
.ui.selection.active.dropdown.w70 .fa-chevron-down {
    transform: rotate(180deg) translateY(50%);
}
.brand_list {
    margin-top: 0px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
}
.brand_list li{
    width: calc(25% - 9px);
    margin-top: 14px;
    margin-right: 12px;
}
.brand_list li:nth-child(4n){
    margin-right: 0;
}
.brand_list li:nth-of-type(n + 1):nth-of-type(-n + 4) {
    margin-top: 0px;
}

.brand_list li {
    width: calc(25% - 15px);
    margin-top: 14px;
    margin-right: 20px;
}

.brand_list li a {
    display: block;
    background: #FFFFFF;
    box-shadow: 1.5px 1.5px 8px rgb(116 116 116 / 10%);
    /*box-shadow: rgb(46 111 239 / 20%) 0px 0px 10px -5px, rgb(46 111 239 / 10%) 0px 3px 4px 2px;*/
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    box-sizing: border-box;
    position: relative;
    box-sizing: border-box;
}

.brand_list li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px;
    height: auto;
    max-height: 100%;
}
.model_detail{
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 15px;
    position: relative;
    animation: opacity2 0.8s;
}
.model_detail>h4{
    margin-top: 0;
}
.model_detail table {
    width: 100%;
    border-collapse: collapse;
}
.model_detail table th{
    font-size: 12px;
    font-weight: 400;
    color: #000;
    padding:5px;
    padding-bottom: 5px !important;
    text-align: left;
    text-align: center;
    border-bottom: 1px solid #707070;
}
.model_detail table td {
    font-size: 12px;
    font-weight: 500;
    padding:5px;
    color: #000;
    text-align: center;
}
.model_detail table tr:last-child th, .model_detail table tr:last-child td {
    padding-bottom: 0;
}
.model_name_div {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    animation: opacity1 0.8s;
}
.model_name_div img{
    max-width: 130px;
    max-height: 50px;
    margin-right: 10px;
}
dl.model_name dt, dl.model_name dd{
    color: #111;
    font-size: 15px;
    font-weight: 500;
    word-break: keep-all;
}

.consultant_name_box{
    display: flex;
    align-items: center;
    padding: 15px 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgba(0, 0, 0, 0.16);
    margin-top: 15px;
    background: #fff;
    position: relative;
    animation: opacity1 0.8s;
}

@keyframes opacity1 {
    0% {
        opacity: 0;
        
        right: -20px;
    }
    100% {
        opacity: 1;
        right: 0;
    }
}
.consultant_name_pic{
    width: 60px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
    margin-right: 14px;
}
.consultant_name_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
dl.consultant_name dt {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1;
}
dl.consultant_name dt span{
    font-size: 14px;
}
dl.consultant_name dd {
    font-size: 14px;
    font-weight: 500;
    color: #080B14;
    line-height: 1;
}
dl.consultant_name dd span:nth-of-type(1){
    padding-right: 5px;
    position: relative;
}
dl.consultant_name dd span:nth-of-type(2){
    padding-left: 5px;
}
dl.consultant_name dd span:nth-of-type(1)::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background: #080B14;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.find_showroom_info{
    position: relative;
    margin-top: 20px;
}
.find_showroom_info>dl.showroom_info{
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 0px;
    position: relative;
    animation: opacity1 0.8s;
}
.find_showroom_info>dl.showroom_info dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}

.find_showroom_info dl.showroom_info dt div {
    display: flex;
    align-items: center;
    color: #2e6fef;
    font-size: 12px;
    font-weight: 700;
}
.find_showroom_info dl.showroom_info dt div img {
    margin-right: 0px;
    display: block;
    width: auto;
    position: absolute;
    top: calc(50% + 5px);
    right: 0px;
    transform: translateY(-50%);
    max-height: 60px;
}

.find_showroom_info>dl.showroom_info dd{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.find_showroom_info dl.showroom_info dd span{
    font-size: 14px;
    color: #666;
    padding: 0 10px;
    position: relative;
}
.find_showroom_info dl.showroom_info dd span::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background: #C5C9D6;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.find_showroom_info dl.showroom_info dd span:nth-last-of-type(1):after {
    display: none;
}
.find_showroom_info dl.showroom_info dd span:nth-of-type(1) {
    padding-left: 0;
}
.find_showroom_info dl.showroom_info dd p {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1;
}

.showroom_consultant_ul {
    padding-left: 10px;
    padding: 0 10px !important;
}
.showroom_consultant_ul .item a{
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.showroom_consultant_ul .item a figure {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.showroom_consultant_ul .item a figure img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    position: absolute;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
}


.partners .showroom_consultant_ul .item a figure {
    position: relative;
    padding-top: 68%;
    overflow: hidden;
}
.partners .showroom_consultant_ul .item a figure img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
}


.showroom_consultant_ul .item a figcaption .name{
    font-size: 14px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 10px;
    border-bottom: 1px solid #F3F3F3;
}
.showroom_consultant_ul .item a figcaption .name span {
    display: flex;
    align-items: center;
}
.showroom_consultant_ul .item a figcaption .name span img {
    display: block;
    width: auto;
    margin-right: 5px;
    width: 10px;
}
.showroom_consultant_ul .item a figcaption .name span:nth-of-type(2){
    color: #2e6fef;
    font-size: 12px;
}
.showroom_consultant_ul .item a figcaption .social{
    font-size: 14px;
    font-weight: 700;
    color: #222;
    padding: 14px 10px;
    display: flex;
    align-items: center;
}
.showroom_consultant_ul .item a figcaption .social span{
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #222;
    font-weight: 700;
}
.showroom_consultant_ul .item a figcaption .social span img {
    margin-right: 4px;
    width: 12px;
}
.showroom_consultant_ul .item a figcaption .social span:nth-of-type(1){
    margin-right: 15px;
}
.showroom_time{
    padding: 15px 15px 0;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 20px;
    position: relative;
    animation: opacity2 0.8s;
    margin-bottom: 30px;
}
.showroom_time .section_title{
    padding-top: 0;
}
.map_wrap {
    border-radius: 6px;
    overflow: hidden;
}
.map_wrap >img {
    width: 100%;
    display: block;
}
.map_wrap >div {
    padding: 16px 0px;
}
.map_wrap >div h4 {
    font-weight: 700;
    font-size: 14px;
    color: #222;
    margin-bottom: 10px;
}
.map_wrap >div ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.map_wrap >div ul li {
    font-weight: 400;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    width: 50%;
}
.map_wrap >div ul li:last-child{
    margin-bottom: 0;
}
.map_wrap >div ul li:nth-child(2n) {
    text-align: right;
}
.model_slide .model_img{
    padding-top: 66.8%;
    position: relative;
}
.model_slide .model_img img{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: auto;
}
.showroom_consultant{
    margin-top: 20px;
}
.showroom_consultant li{
    padding: 9px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.showroom_consultant li a {
    display: flex;
    align-items: stretch;
}

.showroom_consultant li figure {
    width: 96px;
    height: 96px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0;
}
.showroom_consultant li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showroom_consultant li figcaption {
    width: calc(100% - 114px);
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10px;
}
.showroom_consultant li figcaption .name dl dt{
    font-weight: 500;
    font-size: 16px;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
}
.showroom_consultant li figcaption .name dl dd {
    font-size: 14px;
    color: #666;
    line-height: 1;
}
.showroom_consultant li figcaption .name {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.showroom_consultant li figcaption .name span {
    display: flex;
    align-items: center;
    color: #2e6fef;
    font-size: 12px;
    background: #EEF4F8;
    border-radius: 4px;
    padding: 0 3px;
    line-height: 20px;
    height: 20px;
}
.showroom_consultant li figcaption .name span img{
    margin-right: 4px;
    width: 10px;
}
.showroom_consultant li figcaption .social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
} 
.showroom_consultant li figcaption .social span {
    margin-left: 15px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #222;
    font-weight: 500;
}
.showroom_consultant li figcaption .social span i {
    margin-right: 4px;
    color: #c5c9d6;
}
.showroom_consultant li figcaption .social span img{
    margin-right: 4px;
    width: 12px;
}
.news_figcaption {
    background: #fff;
    padding: 14px 10px;
}
.news_dl dt {
    color: #222;
    font-weight: 500;
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: normal; 
    line-height: 1.2;
    height: 2.4em;
    word-wrap: break-word;
    display: -webkit-box;
     -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
    margin-bottom: 5px;
}
.news_dl dd {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.showroom_list {
    padding-bottom: 30px;
}
.showroom_list_slide{
    margin-left: 10px;
    padding: 0 10px !important;
}
.showroom_list_slide .item a{
    display: block;
    border-radius: 4px;
    overflow: hidden;
}
.showroom_list_slide .item a figure {
    position: relative;
    padding-top: 72%;
}
.showroom_list_slide .item a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.showroom_list_slide .item a figure span {
    font-weight: 700;
    font-size: 11px;
    line-height: 10px;
    color: #fff;
    background: #2e6fef;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 999;
}
.showroom_list_slide figcaption.showroom_name {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.showroom_reservation_box {
    /*margin-top: 20px;
    background: #fff;
    box-shadow: rgb(46 111 239 / 20%) 0px 0px 10px -5px, rgb(46 111 239 / 10%) 0px 3px 4px 2px;
    border-radius: 4px;
    margin-bottom: 30px;*/
}
.showroom_reservation_box .showroom_info {
    padding-bottom:10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F3F3F3;
}
.showroom_reservation_box figure {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
    margin-right: 16px;
}
.showroom_reservation_box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showroom_reservation_box .showroom_info dl {
    width: calc(100% - 76px);
}
.showroom_reservation_box .showroom_info dl dt {
    font-weight: 500;
    font-size: 16px;
    color: #222;
}
.showroom_reservation_box .showroom_info dl dd {
    font-size: 14px;
    color: #666;
}
.showroom_reservation_box button {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 28px 0 10px;
    box-sizing: border-box;
}
.showroom_reservation_box button dl {
    text-align: left;
    font-size: 14px;
    line-height: 16px;
    color: #222;
}
.showroom_reservation_box button dt {
    color: #222;
    font-weight: 700;
}
.showroom_reservation_box button dd {
    margin-bottom: 5px;
}
.reservation_data {
    width: 100%;
    margin-top: 30px;
}
.reservation_data{
    box-shadow: 0px 2px 8px rgba(69, 69, 69, 0.18);
    border-radius: 4px;
    margin-bottom: 10px;
}
.reservation_data li button {
    background: #FFFFFF;
    border-radius: 4px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 10px;
    font-size: 16px;
    line-height: 16px;
    color: #222;
    border: none;
    width: 100%;
    font-weight: 400;
    
}
.reservation_data li button img{
    transform: rotate(0deg);
    transition: 0s;
}
.reservation_data li button.open img{
    transform: rotate(180deg);
    transition: 0s;
}
.reservation_data li .box {
    display: none;
    background: #F7F7F8;
}
.reservation_data li .box1 {
    padding: 24px 10px;
}
.time_pick_ul li div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.time_pick_ul li p {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}
.time_pick_ul li:last-child{
    margin-top: 24px;
}
.time_pick_ul li div span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: calc(25% - 9px);
    border: 1px solid #2e6fef;
    box-sizing: border-box;
    border-radius: 4px;
    background: #EEF4F8;
    font-weight: 500;
    font-size: 14px;
    color: #2e6fef;
    margin-right: 12px;
    margin-top: 10px;
    box-sizing: border-box;
}
.time_pick_ul li div span.not {
    color: #999999;
    background: #E9E9E9;
    border: 1px solid #C5C9D6;
}
.time_pick_ul li div span.pick {
    color: #fff;
    background: #2e6fef;
    border: 1px solid #2e6fef;
}
.time_pick_ul li div span:nth-child(4n){
    margin-right: 0;
}
.my_reservation_info {
   /* padding: 20px 10px;
    background-repeat: no-repeat !important;
    background-position: top right !important;
    */
}
.my_reservation_info div dl dt {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #222;
    margin-bottom: 10px;
}
.my_reservation_info div dl dd {
    font-size: 14px;
    line-height: 12px;
    color: #222222;
    margin-bottom: 8px;
}
.my_reservation_info div dl dd:last-child {
    margin-bottom: 0;
}
.my_reservation_info div dl dd span {
    color: #333;
    font-weight: 400;
    padding: 0  8px;
    position: relative;
    font-size: 15px;
}
.my_reservation_info div dl dd span:first-child{
    padding-left: 0;
}
.my_reservation_info div dl dd span:first-child::after {
    display: block;
    content: "";
    width: 1px;
    height: 12px;
    background: #C5C9D6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.reservation_input_box {
    /*padding: 15px 10px;
    background: #fff;
    box-shadow: rgb(46 111 239 / 20%) 0px 0px 10px -5px, rgb(46 111 239 / 10%) 0px 3px 4px 2px;
    border-radius: 4px;
    margin-bottom: 40px;
    */
}
.reservation_input_box dl dt {
    font-size: 14px;
    color: #222;
    line-height: 1;
    margin-bottom: 14px;
}
.reservation_input_box dl dd {
    font-size: 14px;
    color: #222;
    line-height: 1;
}
.reservation_input_box p {
    font-size: 14px;
    line-height: 12px;
    color: #222222;
    margin-bottom: 10px;
}
.reservation_input_box li {
    margin-bottom: 18px;
}
.reservation_input_box li:last-child {
    margin-bottom: 0;
}
.reservation_input_box li input {
    width: 100%;
    height: 46px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0 10px;
}
.reservation_input_box li input::placeholder {
    color: #666;
    font-size: 14px;
}
.radio_box {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.radio_box div {
    display: flex;
    align-items: center;
    margin-right: 50px;
}
input[class="radio_chk"] + label {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('../images/not_chk.png') no-repeat center;
    display: inline-block;
    cursor: pointer;
    margin-right:5px;
}
input[class="radio_chk"]:checked + label {
    background: url('../images/chk.png') no-repeat center;
}
input[class="radio_chk"] {
    display: none;
}
input[class="radio_chk"] + label + label {
    font-weight: 400;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.reservation_type_ul {
    display: flex;
    align-items: center;
    margin: 30px 0 20px;
}
.reservation_type_ul a {
    display: block;
    width: 72px;
    height: 30px;
    left: 16px;
    top: 78px;
    background: #E9E9E9;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    margin-right: 14px;
    text-align: center;
    font-weight: 500;
    line-height: 30px;
}
.reservation_type_ul a.now {
    font-weight: 500;
    color: #fff;
    background: #2e6fef;
}
.reservation_type_list li {
    background: #FFFFFF;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    border-radius: 10px;
    margin-bottom: 14px;
    position: relative;
}
.reservation_type_list li span.new_alarm{
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background:#FF0000;
    position: absolute;
    top: -5px;
    left: -5px;
}
.reservation_type_list li p.type {
    height: 36px;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #F3F3F3;
    position: relative;
    color: #222;
}
.reservation_type_list li p.type a{
    padding-left: 5px;
    display: flex;
    align-items: center;
    color: #2e6fef;
    font-weight: 500;
    font-size: 12px;
}
.reservation_type_list li p.type a i{
    margin-left: 5px;
}
.reservation_type_list li p.type img {
    width:7px;
    display: block;
    margin-left: 6px;
}
.my_reservation_info_box {
    padding: 15px 10px;
    display: flex;
    position: relative;
    align-items: center;
}
.my_reservation_info_box a.review_a {
    position: absolute;
    top:10px;
    right:10px;
    line-height: 12px;
    color: #2e6fef;
    display:flex;
    align-items: center; 
    font-size: 12px;
    font-weight: 500;
}
.my_reservation_info_box a.review_a i {
    margin-left: 5px;
}
.my_reservation_info_box a.review_a img {
    width: 7px;
    margin-left: 6px;
}
.my_reservation_info_box .img {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
    margin-right: 10px;
}
.my_reservation_info_box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.my_reservation_info_box .info {
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
}
.my_reservation_info_box dl dt{
    color: #222;
    font-size: 14px;
    line-height: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}
.my_reservation_info_box dl dd{
    color: #333;
    font-size: 14px;
    line-height: 12px;
    margin-bottom: 15px;
    
}
.my_reservation_info_box dl dd.time{
    color: #222;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    margin-bottom: 0;
}
.my_reservation_info_box dl dd.time span {
    padding: 0 8px;
    position: relative;
}
.my_reservation_info_box dl dd.time span:first-child{
    padding-left: 0;
}
.my_reservation_info_box dl dd.time span:first-child::after {
    display: block;
    content: "";
    width: 1px;
    height: 12px;
    background: #C5C9D6;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.reservation_type_list li.reservation_wait  p.type {
    color: #666;
}
.reservation_wait .my_reservation_info_box dl dd.time{
    color: #666;
    font-size: 14px;
}

.my_reservation_detail {
    padding: 15px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
    animation: opacity1 0.8s;
}
.my_reservation_detail .my_reservation_info{
    padding: 0 ;
    margin-top: 12px;

}
.my_reservation_detail .my_reservation_info>img {
    display: block;
    margin: 0 auto 10px;
}

.my_reservation_detail .my_reservation_info dl dt {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1;
    margin-bottom: 5px;
}
.my_reservation_detail .my_reservation_info dl dd{
    display: flex;
    align-items: center;
}
.my_reservation_detail .my_reservation_info dl dd:nth-of-type(2){
    margin-top: 10px;
}
.my_reservation_detail .my_reservation_info dl dd span {
    color: #2e6fef;
    padding:0 10px;
    position: relative;
    line-height: 1;
}
.my_reservation_detail .my_reservation_info dl dd span:first-child {
    padding-left: 0;
}
.my_reservation_detail .my_reservation_info dl dd span:last-child::after {
    display: block;
    content: "";
    width: 1px;
    height: 12px;
    background: #C5C9D6;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.my_reservation_detail .my_reservation_info dl dd span.change {
    font-size: 10px;
    color: #666;
    width: 52px;
    display: inline-block;
    margin-right: 11px;
    padding: 0;
}
.my_reservation_state {
    padding: 0 5px;
    height: 20px;
    border-radius: 4px;
    font-weight: 500;
    color: #2e6fef;
    line-height: 20px;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 10px;
}
.my_reservation_state.ok {
    background: #2e6fef;
    color: #fff;
    font-size: 11px;
}
.my_reservation_state + p {
    font-size: 14px;
    color: #333;
    word-break: keep-all;
    line-height: 1.4;
    margin-bottom: 10px;
}


.my_reservation_detail .showroom_info {
    display: flex;
    align-items: center;
}
.my_reservation_detail .showroom_info figure {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    overflow: hidden;
    margin-right: 10px;
}
.my_reservation_detail .showroom_info figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.my_reservation_detail .showroom_info dl {
    width: calc(100% - 76px);
}
.my_reservation_detail .showroom_info dl dt {
    font-weight: 500;
    font-size: 14px;
    color: #222;
}
.my_reservation_detail .showroom_info dl dd {
    font-size: 14px;
    color: #666;
}
.my_reservation_btn_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    animation: opacity1 0.8s;
}
.my_reservation_btn_box.mb10 {
    margin-bottom: 10px;
}
.my_reservation_btn_box button {
    width: calc(50% - 4px);
    height: 40px;
    border-radius: 4px;
    margin: 0px;
    font-weight: 500;
    color: #666;
    background: #E9E9E9;
    border: none;
    font-size: 14px;
}
.my_reservation_btn_box button:nth-of-type(1) {
    border: 1px solid #2e6fef;
    color: #2e6fef;
    background: #fff;
}
.my_reservation_cancel {
    text-align: right;
    margin-bottom: 35px;
}
.my_reservation_cancel a {
    display: inline-flex;
    align-items: center;
    color: #989AA0;
    font-size: 14px;
}
.my_reservation_cancel a img {
    margin-left: 6px;
}
.my_reservation_detail_map {
    background: #fff;
    border-radius: 6px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    position: relative;
    animation: opacity1 0.8s;
}
.my_reservation_detail_map .address {
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
}
.my_reservation_detail_map .address span {
    margin-left: 10px;
    font-weight: 400;
    display: block;
    width: calc(100% - 45px);
    text-align: right;
    word-break: keep-all;
}
.map img{
    width: 100%;
    display: block;
}
.my_reservation_detail_map .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    color: #222;
    padding: 0 10px;
    padding-top: 16px;
    margin-bottom: 8px;
}
.my_reservation_detail_map .title + p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    padding: 0 10px;
    word-break: keep-all;
    margin-top: 16px;
}
.my_reservation_detail_map .table_box {
    padding-bottom: 12px;
    border-bottom: 1px solid #E9E9E9;
    margin-bottom: 4px;
}
.my_reservation_detail_map table{
    width: 100%;
    border-collapse: collapse;
    padding-bottom: 12px;
}
.my_reservation_detail_map table tbody th{
    text-align: left;
    padding:8px 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #222222;
    font-weight: 400;
}
.my_reservation_detail_map table tbody td{
    text-align: right;
    padding: 8px 10px;
    font-size: 14px;
    color: #222222;
    line-height: 1.4;
}

.sort_consultant_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 14px 0 12px;
}
.sort_consultant_box select {
    width: calc(33% - 22px);
    border: 1px solid #6F6F6F;
    box-sizing: border-box;
    border-radius: 7px;
    height: 36px;
    padding: 0 8px;
    -webkit-appearance: none;  /* ë„¤ì´í‹°ë¸Œ ì™¸í˜• ê°ì¶”ê¸° */
    -moz-appearance: none;
    appearance: none;
    background: url(../images/select.png) no-repeat 95% 50%;
}
.consultant_find_list li {
    padding: 14px 0;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #ddd;
}
.consultant_find_list li:last-child {
    border-bottom: none;
}
.consultant_find_list li figure {
    width: 96px;
    height: 96px;
    border-radius: 9px;
    overflow: hidden;
    margin-right: 18px;
}
.consultant_find_list li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.consultant_find_list li figcaption {
    width: calc(100% - 114px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.consultant_find_list li figcaption dl{
    padding-top: 5px ;
}
.consultant_find_list li figcaption dl dt {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.consultant_find_list li figcaption dl dt p a{
    font-weight: 500;
    font-size: 14px;
    color: #111;
    width: calc(100% - 48px);
    line-height: 16px;
    margin-bottom: 5px;
    /* margin-bottom: 14px; */
}
.consultant_find_list li figcaption dl dt span{
    width: 38px;
    display: flex;
    align-items: center;
    color: #2e6fef;
    font-size: 12px;
   
}
.consultant_find_list li figcaption dl dt span img{
    margin-right: 3px;
    width: 10px;
}
.consultant_find_list li figcaption dl dd:nth-of-type(1) {
    font-size: 14px;
    /* line-height: 10px;
    margin-bottom: 10px; */
    margin-bottom: 0px;
    color: #333;
}
.consultant_find_list li figcaption dl dd:nth-of-type(2) {
    font-size: 14px;
    /* line-height: 10px; */
    color: #666;
}
.consultant_find_list li figcaption .social{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.consultant_find_list li figcaption .social div{
    display: flex;
    align-items: center;
}
.consultant_find_list li figcaption .social div span{
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 10px;
    color: #222;
    margin-right: 16px;
    font-weight: 500;
}
.consultant_find_list li figcaption .social div span i{
    margin-right: 4px;
    color: #c5c9d6;
}
.consultant_find_list li figcaption .social div span img {
    margin-right: 4px;
    width: 12px;
}
.consultant_find_list li figcaption .social button {
    width: 65px;
    height: 25px;
    background: #2e6fef;
    border-radius: 4px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 12px;
    border: none;
}
.user_menu_section{
    border-bottom:5px solid #F7F7F8
}
.user_menu_section .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
    box-sizing: border-box;
    height: 68px;
}
.user_menu {
    display: flex;
    align-items: center;
}
.user_menu p {
    font-weight: 500;
    color: #222;
    font-size: 18px;
}
.user_menu_section .wrap .menu_user_img{
    width: 48px;
    height: 48px;
    background: #E9E9E9;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
}
.user_menu_section .wrap .logout_btn{
    font-size: 12px;
    color: #222;
}
.user_menu div img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
}
.user_menu_section .wrap .user_menu >a {
    display: flex;
    align-items: center;
    color: #6F6F6F;
    font-size: 14px;
    margin-left: 10px;
}
.user_menu_section .wrap p a {
    font-weight: 500;
    color: #222;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.user_menu_section .wrap p a i {
    font-size: 15px;
    margin-left: 10px;
    display: block;
}
.user_menu_section .wrap a img {
    display: block;
    margin-right: 4px;
}
.menu_ul >li {
    border-bottom: 1px solid #ddd;
}
.answer_tt{
    padding: 10px 16px;
    line-height: 1.4;
    border-top: 1px solid #ddd;
}

/* .menu_ul >li:last-child {
    border-bottom: none;
} */

.menu_ul >li >ul{
    padding: 0px 0;
}
.menu_ul li{
    padding: 10px ;
}
.menu_ul li li{
    padding: 10px 0px;
}
.menu_ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 14px;
    box-sizing: border-box;
    color: #111;
    line-height: 1;
    display: block;
    width: 100%;
    padding:  5px 0;
    position: relative;
}
.menu_ul li a::after{
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    top:50%;
    right: 10px;
    transform: translateY(-50%);
    color: #8B8B8B;
    font-size: 14px;
}
.menu_ul.notice_list{
    width: 100%;
}
.menu_ul.notice_list li a{
    padding: 20px 0;
    padding-right: 50px;
    position: relative;
}
.menu_ul.notice_list li a::after{
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    top:50%;
    right: 10px;
    transform: translateY(-50%);
    color: #8B8B8B;
    font-size: 14px;
}
.menu_ul.onenone.notice_list li a{
    padding-right: 10px;
}
.menu_ul.onenone.notice_list li a::after {
    display: none;
}
.menu_ul.notice_list li a dl dt {
    color: #222;
}
.menu_ul.notice_list li a dl dd {
    color: #666;
    margin-top: 9px;
}
.menu_ul.onenone.notice_list li a dl dd {
    color: #666;
    margin-top: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropdown.w70 .fa-chevron-down{
    color: #8B8B8B !important;
    font-weight: 400 !important;
}
.menu_ul li a i {
    margin-left: 10px;
    flex-shrink: 0;
}
.menu_ul li a dl {
    width: calc(100%);
}
.menu_ul li a dl dt {
    line-height: 1;
    width: 100%; 
    white-space:nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.menu_ul li a dl dd {
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
}
.menu_ul >li >ul>li a i {
    font-weight: 600;
}
.menu_ul.onenone li a span {
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 10px;
}
span.answer_ok {
    color: #2e6fef !important;
}
span.answer_no {
    color: #666;
}
.menu_ul.onenone li a {
    align-items: flex-end;
}
.menu_ul.onenone li a dl {
    width: 100%;
}
.user_login_info {
    padding: 16px 0;
    border-top:5px solid #F7F7F8;
}
.user_login_info .wrap p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    
}
.notice_view .wrap {
    padding: 0px 16px;
    box-sizing: border-box;
}
.notice_view_info {
    box-sizing: border-box;
    padding: 20px 0 10px;
    border-bottom: 1px solid #ddd;
}
.news_view_info {
    padding-top: 20px;;
}
.news_view_info > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

.news_view_info p.news_write{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 400;
}
.news_view_info p.news_write img {
    max-height: 20px;
    margin-right: 10px;
}
.news_view_info p.title {
    font-weight: 500;
    font-size: 16px;
    word-break: keep-all;
    margin-bottom: 10px;
}
.news_view_info p.view_info {
    font-weight: 400;
    font-size: 12px;
    word-break: keep-all;
    margin-bottom: 0px;
}
.news_view_info p.view_info span {
    margin-right: 10px;
}
.news_view_info p.view_info span:last-child {
    margin-right: 0;
}
.notice_view_info.qna{
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}
.notice_view_info.qna span{
    margin-left: 0;
    margin-top: 10px;
}
.notice_view_info p {
    font-weight: 500;
    font-size: 16px;
    word-break: keep-all;
    color: #222;
}
.notice_contents {
    padding: 23px 16px;
    word-break: keep-all;
    line-height: 1.7;
    font-weight: 400;
    font-size: 15px;
}
.new_view_contents{
    padding: 20px 16px;
    word-break: keep-all;
    line-height: 1.6;
    font-weight: 400;
}
.new_view_contents img{
    display: block;
    max-width: 100%;
    margin: 0 auto 0px;
}

.new_view_contents img +p {
    color: #989898;
    font-size: 12px;
    margin-top:5px;
    text-align: center;
}

.new_view_contents .new_content {
    margin-top:20px;
}


.new_view_contents>a {
    margin-top: 10px;
    text-decoration: underline;
    display: block;
}
.new_view_contents> button {
    width: 100%;
    height: 35px;
    border: none;
    display: block;
    box-sizing: border-box;
    background: #2e6fef;
    color: #fff;
    margin: 20px auto 0;
    border-radius: 5px;
}
.new_view_contents .btn_box {
    display: flex;
    align-items: center;
}
.notice_view_info span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 0px;
    color: #666;
    margin-bottom: 0px;
    display: block;
}
.notice_view_info >div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.notice_view_info >div p {
    color: #666;
    font-weight: 500;
    font-size: 12px;
}
.user_login_info .wrap div {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user_login_info .wrap div a{
    display: flex;
    align-items: center;
    color: #989AA0;
    font-size: 14px;
}
.user_login_info .wrap div a img{
    display: block;
    margin-left: 6px;
}

.social_login_info{
    padding: 16px 0;
    border-top:5px solid #F7F7F8;
}
.social_login_info ul li p {
    display: flex;
    align-items: center;
    color: #6F6F6F;
    font-size: 14px;
}
.social_login_info ul li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social_login_info ul li:last-child {
    margin-bottom: 0;
}
.social_login_info ul li p span {
    width: 50px; 
}
.social_login_info ul li div {
    color: #2e6fef;
    font-size: 12px;
    width: 80px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-weight: 500;
}
.social_login_info ul li span img {
    display: block;
    margin-right: 4px;
}
.social_login_info ul li button {
    background: #2e6fef;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    width: 80px;
    height: 25px;
    border-radius: 25px;
    border: none;
}
.my_review_ul {
    display: flex;
    align-items: center;
}
.my_review_ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 45px;
    font-size: 15px;
    color: #666;
    position: relative;
}
.my_review_ul li.cho a::after {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background: #2e6fef;
    position: absolute;
    bottom: 0;
    left: 0;
} 
.my_review_list {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 0px;
    position: relative;
    animation: opacity1 0.8s;
}
.my_review_list> li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.my_review_list> li >div {
    width: 100%;
}
.my_review_list> li dl {
    width: 100%;
}
.my_review_list> li dl dd div{
    display: flex;
    align-self: center;
}
.my_review_list> li:last-child{
    margin-bottom: 0;
}
.my_review_list li>img {
    flex-shrink: 0;
    width: 30px;
}
.my_review_list> div{
    flex-shrink: 0;
    width: calc(100% - 0px);
    padding-left: 0px;
    box-sizing: border-box;
}
.my_review_list div dl dt {
    font-size: 14px;
    color: #111;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5px;
}
.my_review_list div dl dt span{
    font-size: 12px;
    color: #666;
    padding-left: 10px;
    display: flex;
    flex-shrink: 0;
    text-align: right;
    justify-content: flex-end;
    font-weight: 500;
}
.my_review_list div dl dd{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.my_review_list div dl dd:last-child {
    margin-bottom: 0;
}
.my_review_list div dl dd.info p>span{
    font-size: 12px;
    color: #666;
    padding:0 10px;
    position: relative;
}
.my_review_list div dl dd.info p span:first-child{
    padding-left: 0;
}
.my_review_list div dl dd.info p span:first-child {
    padding-left: 0;
}
.my_review_list div dl dd.info p span:nth-of-type(2)::after {
    display: block;
    content: "";
    width: 1px;
    height: 12px;
    background: #C5C9D6;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.my_review_list div dl dd.tag{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.my_review_list div dl dd.tag span{
    color: #2e6fef;
    font-size: 12px;
    margin-right: 10px;
    word-break: keep-all;
}

.my_review_list div dl dd.contents {
    font-weight: 500;
    font-size: 14px;
    
}

.reviewHide {
    line-height: 1.2;
    height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dealer_select .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    box-sizing: border-box;
    border-bottom:5px solid #F7F7F8;
    
}
.dealer_select .dealer {
    display: flex;
    align-items: center;
}
.dealer_select .dealer p {
    font-weight: 700;
    color: #222;
    font-size: 16px;
}

.dealer_select .dealer img {
    margin-right: 9px;
    display: block;
    max-height: 60px;
}
.partners:nth-last-of-type(1) {
    margin-bottom: 28px;
}
.review_step_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    
}
.review_step_ul li:first-child span:after {
    display: block;
    content: "";
    width: 120px;
    height: 2px;
    background: #E9E9E9;
    position: absolute;
    top: 50%;
    left: 19px;
    z-index: -1;
    transform: translateY(-50%);
}
.review_step_ul li {
    width: 62px;
    
}
.review_step_ul li span {
    display: block;
    margin: 0 auto;
    width: 22px;
    height: 22px;
    background: #E9E9E9;
    border: 3px solid #E9E9E9;
    border-radius: 22px;
    position: relative;
    box-sizing: border-box;
}
.review_step_ul li p {
    color: #666;
    font-size: 14px;
    line-height: 1;
    margin-top: 10px;
    text-align: center;
}
.review_step_ul li.now span{
    border: 3px solid #2e6fef;
    background: #fff;
}
.review_step_ul li.now p {
    color: #2e6fef;
    font-weight: 500;
}
.review_step_ul li.chk span{
    background:#2e6fef url(../images/accept.png) no-repeat center;

}
.review_content_box{
    background: #fff;
    /*
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    border-radius: 10px;
    padding:10px;*/
    display: flex;
    align-items: center;
    position: relative;
}
.review_content_box figure{
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review_content_box figure.reviewTrimImg{
    justify-content: flex-start;
}
.review_content_box figure.reviewTrimImg img {
    width: auto !important;
}
.review_content_box figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review_content_box.car figure{
    width: 100px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review_content_box.car figure img{
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}
.review_content_box.car figcaption {
    width: calc(100% - 100px);
    padding-left: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review_content_box.car figcaption dl dt {
    font-size: 16px;
    color: #111;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
}
.review_content_box figcaption {
    width: calc(100% - 72px);
    padding-left: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.review_content_box figcaption dl{
    height: 100%;
}
.review_content_box figcaption dl dt {
    font-size: 14px;
    color: #111;
    font-weight: 500;
    line-height: 1;
}
.review_content_box figcaption dl dt span {
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
}
.review_content_box figcaption dl dd {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}
.social_div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.social_div span{
    display: flex;
    align-items: center;
    color: #222;
    font-size: 12px;
    margin-left: 16px;
    font-weight: 500;
}
.social_div span i {
    margin-right: 4px;
    color: #c5c9d6;
}
.social_div span img {
    margin-right: 4px;
    width: 12px;
}



.review_evaluation_box{

    /*
    background: #fff;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    border-radius: 10px;
    padding:15px;
    margin-top: 20px;
    position: relative;

    */
}
.review_evaluation_box .star_box {
    margin-top: 0;
}
.review_evaluation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.review_evaluation input {
    display: none;
}
.review_evaluation li {
    width: calc(33% - 7px);
    height: 40px;
}
.review_evaluation input[type="radio"] + label {
    display: block;
    width: calc(33% - 7px);
    height: 100%;
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
.review_evaluation input[type="radio"]:nth-of-type(1) + label {
    border: 1px solid #F8998C;
    color: #F8998C;
    font-weight: 500;
}
.review_evaluation input[type="radio"]:nth-of-type(2) + label {
    border: 1px solid #66D8C4;
    color: #66D8C4;
    font-weight: 500;
}
.review_evaluation input[type="radio"]:nth-of-type(3) + label {
    border: 1px solid #2e6fef;
    color: #2e6fef;
    font-weight: 500;
}
.review_evaluation input[type="radio"]:nth-of-type(1):checked + label {
    color: #fff;
    background: #F8998C;
}
.review_evaluation input[type="radio"]:nth-of-type(2):checked + label {
    color: #fff;
    background: #66D8C4;
}
.review_evaluation input[type="radio"]:nth-of-type(3):checked + label {
    color: #fff;
    background: #2e6fef;
}
.review_evaluation input[type="checkbox"]:nth-of-type(n + 1):nth-of-type(-n + 2) + label {
    margin-top: 0;
}
.review_evaluation input[type="checkbox"] + label {
    display: block;
    width: calc(50% - 4px);
    height: 100%;
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #2e6fef;
    color: #2e6fef;
    font-weight: 500;
    margin-top: 8px;
    box-sizing: border-box;
}
.review_evaluation input[type="checkbox"]:checked + label {
    background: #2e6fef;
    color: #fff;
}
.review_evaluation + p {
    font-size: 14px;
    color: #222;
    margin-bottom: 14px;
    line-height: 1;
    margin-top: 26px;
    font-weight: 500;
}
.review_evaluation + p span {
    font-size: 14px;
    color: #333;
    margin-right: 10px;
    font-weight: 400;
}
.review_evaluation + p + textarea {
    border: 1px solid #E9E9E9;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 15px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    resize: none;
    height: 140px;
    display: block;
}
.review_evaluation + p + textarea::placeholder {
    color: #666;
}
.onenone_input input{
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #E9E9E9;
    font-size: 18px;
}
.onenone_input input::placeholder {
    color: #c4c4c4;
}
.onenone_input textarea {
    margin-top: 24px;
    resize: none;
    width: 100%;
    border: none;
    max-height: calc(100vh - 285px);
    font-size: 15px;
}
.onenone_input textarea::placeholder{
    color: #c4c4c4;
}
.onenone_btn {
    position: fixed;
    right: 17px;
    bottom: 56px;
    background:#2e6fef;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 1.2;
    text-align: center;
    border: none;
    font-size: 16px;
    font-size: 12px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}    


.onenone_view p.title {
    padding-bottom: 5px;
    border-bottom: 1px solid #E9E9E9;
    font-weight: 700;
    min-height: 36px;
    display: flex;
    align-items: center;
    word-break: break-all;
}
.onenone_view div.contents {
    padding: 23px 0;
    font-weight: 400;
    line-height: 1.7;
    min-height: 180px;
    border-bottom: 1px solid #E9E9E9;
    word-break: break-all;
    color: #222;
    font-size: 15px;
}
.onenone_view div.contents:nth-last-of-type(1){
    border-bottom: none;
}


.menu_ul.dealer-list li a{
    display: flex;
    padding: 20px 16px;
}


/*******1014 ì¶”ê°€**/

.Terms_test {
    padding: 20px 0;
}


.nojs_select {
    height: 30px;
    text-align: right;
    border: none;
    color: #3b3b3b;
    font-weight:500;
    -webkit-appearance: none;  /* ë„¤ì´í‹°ë¸Œ ì™¸í˜• ê°ì¶”ê¸° */
    -moz-appearance: none;
    appearance: none;
    background: url(../images/select_arrow.png) no-repeat 95% 50%;
    padding-right:25px;
    background-size: 12px;
    font-size: 14px;
    text-align-last:right
}
select.nojs_select::-ms-expand {
    display: none;
}


.later_login_btn {
    display: block;
    text-align: center;
    margin: 10px auto 0;
    text-decoration: underline;
}

.news_section .showroom_consultant_ul .item a figure {
    position: relative;
    padding-top: 68%;
    overflow: hidden;
} 


.swiper-pagination-bullet-active {
    background: #2e6fef !important;
}

.vehicle-banner-img {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}
.vehicle-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-banner-img {
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
}
.main-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
.main_slide_cc .swiper-pagination {
    position: absolute;
    top: 5px;
    right: 0px;
    text-align: right;
    bottom: unset !important;
    left:  unset !important;
    padding-right: 10px;
    box-sizing: border-box;
}
*/
.main_slide_cc .swiper-pagination-bullet {
    display: inline-block;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 5px;
    height: 5px;
    margin: 0 2px !important;
}
.main_slide_cc .swiper-pagination-bullet-active {
    background: #fff !important;
}





/**************0111******************/
.car_bg {
    background:#fff;
    background-repeat: no-repeat;
    background-size:100% 100% ;
    background-position: center;
   /* height: 100vh;
    animation: rgy01 1s;*/
}

@keyframes rgy01 {
    0% {
        background-size: 120% 120%;
    }
    100% {
        background-size:100% 100% ;
    }

}


.car_bg header {
    background: none;
}
.car_bg header button {
    color:#242424;
}
.car_bg header .wrap {
    border-bottom: none;
}

.login_form a,.login_form label {
    color: #000 !important;
}


.gray_section{
    /*background: #F6F5FA;*/
    padding-bottom: 25px ;
    border-top: 10px solid #fff;
}
.content-wrap .gray_section .wrap{
    background: none;
}

.blur_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: #000 url(../images/newbg.png) no-repeat;
    background-size: contain !important;
    background-position: center bottom 180px
}

.showroom_consultant_list_box{
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 0px;
    position: relative;
    animation: opacity2 0.8s;
    margin-bottom: 20px;
    margin-top: 20px;
}
.showroom_consultant_list_box .title_box{
    margin-top: 0;
}
.showroom_consultant_list_box .showroom_consultant{
    margin-top: 0;
    padding-bottom: 0;

}

.showroom_consultant_list_box .showroom_consultant li:last-child {
    margin-bottom: 0px;
}
.showroom_consultant_list_box .showroom_consultant li:first-child{
    padding-top: 0;
}
.showroom_consultant_list_box .showroom_consultant li:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.star_box{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}
.star_box p {
    margin-right: 10px;
    font-weight: 500;
    font-size: 26px;
    text-align: right;
}
.star_box1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 0px;
    width: 100%;
}
.star_box1 p {
    margin-right: 0px;
    font-weight: 500;
    font-size: 26px;
    width: 50px;
    text-align: center;
}
.star_box2{
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.star_box2 p {
    margin-right: 0px;
    font-weight: 500;
    font-size: 14px;
    width: 00px;
    text-align: center;
}
.notice_view.content-wrap{
    background: #fff;
}

.new_content_box1{
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 20px;
    position: relative;
    animation: opacity1 0.8s;
}
.new_content_box2{
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1.5px 3.5px rgb(0 0 0 / 16%);
    background: #fff;
    margin-top: 20px;
    position: relative;
    animation: opacity2 0.8s;
}

.map {
    position: relative;
}

.menu.content-wrap {
    min-height: calc(100vh - 49px);
    background: #fff;
}