.p__brand_contents {
    margin-top: 70px;
    position: relative;
    z-index: 99;
}

@media screen and (min-width: 992px) {
    .p__brand_contents {
        margin-top: 90px;
    }
}

.p__brand_bg {
    max-width: 1920px;
    width: 100%;
    height: 100vh;
    position: absolute;
    background: url(../brand/brand_m.png) no-repeat;
    background-size: 100% auto;
    filter: blur(45px);
    -webkit-filter: blur(45px);
    -moz-filter: blur(45px);
    -o-filter: blur(45px);
    -ms-filter: blur(45px);
    top: 0;
    right: 0;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.61, 1, 0.88, 1) 0s;
}

.p__brand_bg.active {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
}

.brand__banner {
    padding: 15vh 0 20vh;
    display: flex;
    justify-content: center;
}


.brand__banner .p1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    padding-left: 20px;
}

.brand__banner .p2 {
    font-weight: 600;
    line-height: 1;
    display: flex;
    margin: 30px 0;
    font-size: 20px;
}

.brand__banner .p2 .of {
    display: flex;
    margin: 0 10px;
    padding: 0 0 0.4vw;
    align-items: flex-end;
}

.brand__banner .p2 span {
    font-size: 13px;
    margin-right: 10px;
}

.brand__banner .p3 {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: transparent;
    line-height: 1;
    -webkit-text-stroke: 1px #333333;
}

@media screen and (min-width: 375px) {
    .brand__banner .p1 {
        font-size: 24px;
    }

    .brand__banner .p2 {
        font-size: 24px;
    }

    .brand__banner .p3 {
        font-size: 18px;
    }
}

@media screen and (min-width: 420px) {
    .brand__banner .p1 {
        font-size: 28px;
    }

    .brand__banner .p2 {
        font-size: 28px;
    }

    .brand__banner .p3 {
        font-size: 20px;
    }
}

@media screen and (min-width: 450px) {
    .brand__banner {
        justify-content: flex-start;
    }
}

@media screen and (min-width: 500px) {
    .brand__banner {
        padding-left: 4.6875vw;
    }

    .brand__banner .p1 {
        font-size: 32px;
    }

    .brand__banner .p2 {
        font-size: 32px;
    }

    .brand__banner .p3 {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) {
    .brand__banner {
        padding: 20vh 0 20vh;
        padding-left: 4.6875vw;
    }

    .p__brand_bg {
        background: url(../brand/brand.png) no-repeat center top;
        height: 100%;
        background-size: 100% auto;
        filter: blur(150px);
        -webkit-filter: blur(150px);
        -moz-filter: blur(150px);
        -o-filter: blur(150px);
        -ms-filter: blur(150px);
    }

    .brand__banner .p1 {
        font-size: 4.6875vw;
    }

    .brand__banner .p2 {
        font-size: 4.6875vw;
    }

    .brand__banner .p2 span {
        font-size: 2.084vw;
    }

    .brand__banner .p3 {
        font-size: 2.604vw;
    }
}

@media screen and (min-width: 992px) {
    .brand__banner {
        padding: 20vh 0 30vh;
    }

    .p__brand_container {
        margin-left: 200px;
    }
}

@media screen and (min-width: 1200px) {
    .brand__banner {
        padding: 20vh 0 40vh;
    }
}




.brand__new__image {
    background: url(../brand/brand-text.png) no-repeat top left;
    background-size: 55% auto;
}

.brand__new__image .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 5.5vh;
    text-decoration: underline;
}

.brand__new__image .contents,
.brand__new__image .desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.brand__new__image .desc p {
    margin-top: 30px;
}

.svg_logo {
    max-width: 1100px;
    position: relative;
    margin-top: 30px;
    overflow: hidden;
}

.svg_logo img {
    width: 32%;
    display: block;
    margin-left: auto;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.61, 1, 0.88, 1) 1s;
}

.svg_logo svg {
    width: 70%;
    height: auto;
    bottom: 0;
    left: 0;
    position: absolute;
}

.svg_logo svg path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: all 2s cubic-bezier(0.61, 1, 0.88, 1) 0.2s;
}

.svg_logo.an_active img {
    transform: translateX(0%);
}

.svg_logo.an_active svg path {
    stroke-dashoffset: 0;
}

@media screen and (min-width: 768px) {
    .brand__new__image .contents {
        display: flex;
    }

    .brand__new__image .contents p {
        max-width: 350px;
        margin-right: 36px;
    }

    .svg_logo {
        margin: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-left: auto;
    }

    .svg_logo .l__svg {
        height: auto;
        position: relative;
    }

    .brand__new__image .desc {
        display: flex;
        margin-top: 8.4vh;
        align-items: flex-end;
    }

    .brand__new__image .desc p {
        max-width: 350px;
        margin: 0;
    }

    .brand__new__image .desc p:last-child {
        margin-left: auto;
    }
}

@media screen and (min-width: 768px) {
    .brand__new__image .desc p:last-child {
        margin-left: 6%;
    }
}


.brand__new__slogan {
    background: url(../brand/brand-text.png) no-repeat top left;
    background-size: 55% auto;
    padding: 50px 0 80px;
    position: relative;
}

.brand__new__slogan::after {
    content: '';
    width: 100%;
    top: 50px;
    left: 0;
    bottom: 0;
    background: url(../brand/brand__new__slogan_title.png) no-repeat top right;
    background-size: auto 100%;
    position: absolute;
    z-index: -1;
}

.brand__new__slogan .slogan__img {
    width: 66%;
    background: url(../brand/brand__new__slogan_circle.png) no-repeat;
    background-size: cover;
}

.brand__new__slogan .slogan__img img {
    width: 100%;
}

.brand__new__slogan .slogan__title {
    font-size: 14px;
    line-height: 24px;
    margin-left: auto;
    font-weight: 600;
    padding-left: 10%;
    padding-right: 20%;
    padding-top: 30px;
}

.brand__new__slogan .slogan__title p {
    max-width: 275px;
}

@media screen and (min-width: 768px) {
    .brand__new__slogan {
        padding: 100px 0 0;
        display: flex;
    }

    .brand__new__slogan::after {
        display: none;
    }

    .brand__new__slogan .slogan__title {
        width: 50%;
        display: flex;
        padding: 0 30px;
        align-items: center;
        justify-content: center;
        background: url(../brand/brand__new__slogan_title.png) no-repeat right top;
        background-size: auto 100%;
    }
}

@media screen and (min-width: 992px) {
    .brand__new__slogan .slogan__title {
        width: 40%;
        flex: 0 0 auto;
        padding: 0 80px;
    }
}

@media screen and (min-width: 1200px) {
    .brand__new__slogan .slogan__title {
        width: 34%;
    }
}

@media screen and (min-width: 1680px) {
    .brand__new__slogan .slogan__title {
        font-size: 16px;
        line-height: 30px;
    }

    .brand__new__slogan .slogan__title p {
        max-width: 350px;
    }
}






.brand__new__product {
    padding: 30px 0 0;

    background: url(../brand/brand__new__product_bg.png) no-repeat top left;
    background-size: 100% auto;
    position: relative;
    z-index: 2;
}

.brand__new__product::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../brand/brand__new__product.png) no-repeat top left;
    background-size: 90% auto;
    z-index: -1;
}

.brand__new__product .desc {
    padding: 12vw 0 0 12vw;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 0 0 60px;
}

.brand__new__product .list {
    padding-left: 12vw;
    padding-right: 12vw;
}

.brand__new__product .list img {
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 412px;
}

.brand__new__product .list img:nth-child(2) {
    margin: 30px auto;
}

@media screen and (min-width: 768px) {
    .brand__new__product {
        padding-top: 100px;
    }

    .brand__new__product .desc {
        padding: 10vw 0 0 10vw;
    }

    .brand__new__product .list {
        display: flex;
        padding: 0;
        justify-content: flex-end;
    }

    .brand__new__product .list img {
        width: 26.5806451612903%;
        margin: 0 0 0 5.4193548387097%;
    }

    .brand__new__product .list img:nth-child(2) {
        margin: 0 0 0 5.4193548387097%;
    }
}

@media screen and (min-width: 992px) {
    .brand__new__product .desc {
        padding-left: calc(46% + 40px);
        padding-top: 0;
    }

    .brand__new__product::before {
        background-size: 46% auto;
    }
}





.brand__new__lifestyle {
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    background: url(../brand/brand__new__lifestyle.png) no-repeat center center;
    background-size: 100% auto;
}

.brand__new__lifestyle .bg {
    display: none;
    width: 100%;
}

.brand__new__lifestyle .contents {
    padding: 120px 20px 0;
    position: relative;
}

.brand__new__lifestyle .contents .title img {
    width: 70%;
    display: block;
}

.brand__new__lifestyle .subtitle {
    padding: 50px 0 0;
}

.brand__new__lifestyle .subtitle p {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    text-decoration: underline;
}

.brand__new__lifestyle .desc {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.brand__new__lifestyle .desc img {
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .brand__new__lifestyle {
        margin-left: -7vw;
        margin-right: -7vw;
    }

    .brand__new__lifestyle .contents {
        padding: 180px 7vw 0;
    }
}

@media screen and (min-width: 992px) {
    .brand__new__lifestyle {
        margin-left: calc(-200px - 7vw);
        margin-right: -7vw;
    }

    .brand__new__lifestyle .contents {
        padding-left: calc(200px + 7vw);
        padding-right: 7vw;
    }
}

@media screen and (min-width: 1200px) {
    .brand__new__lifestyle {
        background: none;
    }

    .brand__new__lifestyle .bg {
        display: block;
    }

    .brand__new__lifestyle .contents {
        display: flex;
        position: absolute;
        top: 0;
        height: 100%;
        padding-top: 0;
    }

    .brand__new__lifestyle .contents .title {
        width: 50%;
        padding: 33.4% 0 0;
        flex: 0 0 auto;
    }

    .brand__new__lifestyle .contents .title img {
        width: 100%;
    }

    .brand__new__lifestyle .contents .text {
        margin-left: 10%;
        padding-top: 33.4%;
    }

    .brand__new__lifestyle .subtitle {
        padding: 0;
    }

    .brand__new__lifestyle .desc img {
        margin-top: 50px;
    }
}




.brand__new__store {
    position: relative;
    display: flex;
    margin-top: 80px;
}

.store__title {
    flex: 0 0 auto;
    width: 18%;
}

.store__title img {
    width: 54%;
    max-height: 750px;
}

.store_contents .desc {
    margin: 0 0 50px;
}

.store_contents .desc h2 {
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-right: 50px;
    margin-bottom: 20px;
    text-decoration: underline;
}

.store_contents .desc p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.store_contents .store__imgs {
    margin-right: -20px;
}

.store__imgs .swiper-slide {
    width: auto;
}

.store__imgs .swiper-slide img {
    height: 160px;
}

@media screen and (min-width: 768px) {
    .store_contents .store__imgs {
        margin-right: -7vw;
    }

    .store__imgs .swiper-slide img {
        height: 240px;
    }
}

@media screen and (min-width: 992px) {
    .store__imgs .swiper-slide img {
        height: 280px;
    }
}

@media screen and (min-width: 1200px) {
    .brand__new__store {
        margin-top: 0;
    }

    .store_contents .desc {
        margin: 0 0 9.2vh;
        display: flex;
    }
}

@media screen and (min-width: 1550px) {
    .store__imgs .swiper-slide img {
        height: 43vh;
    }
}



.brand__new__service {
    margin-top: 80px;
}

.brand__new__service .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 30px;
}

.brand__new__service .contents {
    padding: 0 25px;
    display: none;
}

.brand__new__service .contents img {
    width: 100%;
    user-select: none;
}

.contents_m {
    padding-left: 20px;
}

.contents_m .line {
    width: 16px;
    height: calc(100% - 35px);
}

.contents_m .line i {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    border: 4px solid #040000;
}

.contents_m .line .borders {
    width: 1px;
    height: calc(100% - 26px);
    margin: 10px auto 0;
    border-left: 1px dashed #757373;
}

.contents_m .l__item1 .line .borders {
    min-height: 100px;
}

.contents_m .l__item1 {
    display: flex;
}

.contents_m .l__item1 .tit {
    flex: 0 0 auto;
    margin-right: 30px;
}

.contents_m h3 {
    line-height: 30px;
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 600;
}

.contents_m h3 span {
    font-size: 24px;
    margin-left: 5px;
}

.contents_m .text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.l__item2 {
    margin: 20px 0;
}

.contents_m .l__item2 .line .borders {
    height: 100px;
}

.l__item3 {
    display: flex;
}

.l__item3 .tit {
    margin-right: 20px;
}

.l__item3 i {
    margin: 7px 0;
}

.contents_m .l__item3 .line .borders {
    height: 100%;
}

@media screen and (min-width: 992px) {
    .brand__new__service {
        padding: 0 0 120px;
        margin: 80px 0 0;
        background: url(../brand/service__logo.png) no-repeat bottom right;
        background-size: 60% auto;
    }

    .contents_m {
        display: none;
    }

    .brand__new__service .contents {
        display: block;
    }

    .brand__new__service .title {
        font-size: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .brand__new__service {
        padding: 0 0 160px;
    }
}

@media screen and (min-width: 1440px) {
    .brand__new__service {
        margin-top: 18.5vh;
        padding: 0 0 26vh;
    }

    .brand__new__service .title {
        font-size: 40px;
    }

    .brand__new__service .title {
        margin: 0 0 50px;
    }
}



.l__about__slider {
    position: fixed;
    top: 220px;
    display: none;
    z-index: 998;
}

.l__about__slider ul li {
    font-size: 1.92513rem;
    font-weight: 300;
    line-height: 2;
    display: flex;
    align-items: center;
}

.l__about__slider ul li a {
    position: relative;
}

.l__about__slider ul li i {
    padding: 4px;
    border-radius: 100%;
    transform: scale(0);
    margin-right: 12px;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    border: 5px solid #289688;
}

.l__about__slider ul li.active a,
.l__about__slider ul li a:hover {
    color: #289688;
}

.l__about__slider ul li:hover i,
.l__about__slider ul li.active i {
    transform: scale(1);
}

@media screen and (min-width: 992px) {
    .l__about__slider {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .l__about__slider{
        display: none !important;
    }
}



.p__news_contents {
    margin: 70px 0 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.p__news_list .row {
    margin: 0 -25px;
}

.p__news_list .col {
    margin: 0 0 40px;
    padding: 0 25px;
}

.p__news_list .col a {
    display: block;
}

.p__news_list .news__pic {
    border: 5px solid #000000;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.p__news_list .news__pic img {
    width: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.p__news_list .news__info {
    display: flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    align-items: center;
    margin: 12px 0 10px 10px;
}

.p__news_list .news__info i {
    background: #000000;
    color: #ffffff;
    padding: 0 15px;
    font-style: normal;
    border-radius: 12px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.p__news_list .news__info span {
    color: #a4a4a4;
    margin: 0 0 0 20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.p__news_list .news__title {
    margin: 0 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.p__news_list .col a:hover .news__pic img {
    transform: scale(1.08);
}

.p__news_list .col a:hover .news__pic {
    border-color: #289688;
}

.p__news_list .col a:hover .news__title,
.p__news_list .col a:hover .news__info span {
    color: #289688;
}

.p__news_list .col a:hover .news__info i {
    background: #289688;
}

.p__news_list .load__all {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0 0;
}

.p__news_list .load__all a {
    color: #a4a4a4;
}

@media screen and (min-width: 768px) {
    .p__news_contents {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .p__news_list .load__all {
        padding: 40px 0 0;
    }
}

@media screen and (min-width: 992px) {
    .p__news_list .col {
        margin: 0 0 60px;
    }
    .p__news_list {
        margin-left: 200px;
    }

    .p__news_contents {
        margin-top: 90px;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .p__news_list .load__all {
        padding: 60px 0 0;
    }
}

@media screen and (min-width: 1200px) {
    .p__news_list .news__pic img {
        height: 300px;
    }
}


.news__details {
    margin: 0 auto;
}

.news__details__info h1 {
    font-weight: 600;
    font-size: 24px;
}

.news__details__info p {
    font-size: 14px;
    font-weight: 500;
    color: #a4a4a4;
    margin: 5px 0;
}

.news__details__info span {
    line-height: 24px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    display: inline-block;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    background: #000000;
}

.news__details__content {
    margin: 50px 0 0;
    word-break: keep-all;
    word-wrap: break-word;
}

.news__details__content img {
    max-width: 100% !important;
}

.news__prev__next {
    padding: 100px 0 0;
    display: none;
}

.news__prev__next ul {
    display: flex;
}

.news__prev__next ul li {
    margin-left: 0;
    width: auto;
    padding-left: 0px;
    font-size: 14px;
    font-weight: 600;
    padding-right: 80px;
}

.news__prev__next ul li:nth-child(even) {
    margin-left: auto;
    padding-left: 80px;
    padding-right: 0;
    text-align: right;
    border-left: 1px solid #dbdbdb;
}

@media screen and (min-width: 992px) {
    .news__details {
        margin-left: 200px;
    }
}

@media screen and (min-width: 1440px) {
    .news__details {
        margin: 0 auto;
        max-width: 800px;
    }
}






.p__contact_contents {
    padding-top: 0;
    padding-bottom: 50px;
    padding-right: 0;
    padding-left: 0;
    margin-top: 70px;
}

.l__contact_wrap {
    margin: 0;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.contact_map {
    width: 100%;
    height: 100%;
}

.l__contact_text {
    top: 50%;
    left: 50%;
    width: calc(100% - 40px);
    transform: translate(-50%, -50%);
    z-index: 999;
    border-radius: 10px;
    padding: 50px 30px 50px 30px;
    background: #ffffff;
    position: absolute;
}
.l__contact_text .close{
    position: absolute;
    width: 24px;
    height: 24px;
    display: block;
    right: 10px;
    top: 10px;
}

.l__contact_text h3 {
    font-size: 32px;
    color: #2c9689;
    font-weight: 600;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.l__contact_text p {
    font-size: 14px;
    font-weight: 500;
}
.l__contact_text p.phone {
    padding-top: 16px;
}
.l__contact_text p.phone a,
.l__contact_text p.eamil a {
    font-size: 24px;
    font-weight: bold;
    line-height: 50px;
    color: #030000;
}

.l__contact_text p.phone a span,
.l__contact_text p.eamil a span{
    font-size: 16px;
}


.l__contact_text p.address {
    font-size: 14px;
    font-weight: 500;
}

.l__contact_text p.wanto {
    display: table;
}

.l__contact_text p.wanto a {
    display: table-cell;
    font-size: 14px;
    font-weight: normal;
    color: #7B7B7B;
    line-height: 50px;
}
.l__contact_text p.wanto a::before {
    content: '';
    display: inline-block;
    background-image: url(../images/next.png);
    width: 21px;
    height: 21px;
    background-size: cover;
    vertical-align: middle;
}
.l__contact_text p.wanto a:first-child {
    padding-right: 32px;
}
.l__contact_text p a {
    transition: all 0.6s;
    position: relative;
}
.l__contact_text p.phone a::after,
.l__contact_text p.eamil a::after {
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: all 0.6s;
    content: '';
    background-color: #2c9689;
}

.l__contact_text p a:hover {
    color: #2c9689;
}
.l__contact_text p a:hover::after {
    width: 100%;
}
.l__contact_text ul {
    margin-top: 10px;
}

.l__contact_text ul li {
    font-size: 18px;
    line-height: 2;
    font-weight: 600;
    text-transform: uppercase;
}



@media screen and (min-width: 768px) {
    .l__contact_text {
        width: calc(100% - 14vw);
    }
}

@media screen and (min-width: 992px) {
    .p__contact_contents {
        margin-top: 90px;
    }

    .l__contact_wrap {
        margin-left: 200px;
    }

    .p__contact_contents {
        padding-left: 5.2vw;
    }
}

@media screen and (min-width: 992px) {
    .l__contact_text {
        width: auto;
        top: 100px;
        left: 60px;
        transform: translate(0);
        padding: 75px 100px 75px 50px;
    }

    .l__contact_text h3 {
        font-size: 32px;
    }

    .l__contact_text ul li {
        font-size: 24px;
    }
}

.l__store__container{
    padding: 70px 0 0;
    height: 100vh;
    min-height: 600px;
    margin: 0 0 40px;
}
.search__store__wrap{
    width: 100%;
    height: 100%;
    position: relative;
}
.dealer-form{
    background: #ffffff;
    border-radius: 12px;
    height: calc(80%);
    padding: 30px;
    top: 50%;
    left: 4.027778vw;
    transform: translateY(-50%);
    position: absolute;
    width: 480px;
    max-width: calc(100vw - 40px);
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.dealer-form .dealer-title{
    font-size: 26px;
    line-height: 1;
}
.dealer-form .form-box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    overflow: hidden;
    width: 100%;
}
.dealer-form .form-box .form-field {
    border-bottom: 1px solid #cdcdcd;
    height: 41px;
    flex: 1;
    position: relative;
    margin-right: 20px;
}
.dealer-form .form-box .form-field:last-of-type{
    margin-right: 0;
}
.dealer-form .form-box .form-field .selectpicker{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    color: #666;
    display: block;
    font-size: 14px;
    height: 100%;
    line-height: 100%;
    margin-right: 8px;
    outline-style: none;
    overflow: hidden;
    padding-right: 12px;
    position: relative;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    z-index: 1;
}
.dealer-form .form-box .form-field .select-arrow{
    position: absolute;
    right: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url(../images/select-arrow.png);
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dealer-form .dealer-form-search{
    margin-top: 15px;
    display: flex;
    align-items: center;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 0 16px;
}
.dealer-form .dealer-form-search .input {
    flex: 1;
}
.dealer-form .dealer-form-search input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    height: 42px;
    outline-style: none;
    padding: 0;
    width: 100%;
    border: 0;
}
.dealer-form .dealer-form-search .searchIcon {
    cursor: pointer;
    padding-top: 4px;
    width: 22px;
}
.dealer-form .dealer-amap-info-window{
    margin-top: 20px;
    overflow: auto;
    flex: 1;
}
.dealer-form .dealer-amap-info-window .info-list{
    margin: 0 0 15px;
    cursor: pointer;
}
.dealer-form .dealer-amap-info-window .info-window-title{
    color: #191919;
    font-size: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dealer-form .dealer-amap-info-window .info-window-title .index {
    font-size: 15px;
    margin-right: 8px;
}
.dealer-form .dealer-amap-info-window .info-window-title .title{
    flex: 1;
}
.dealer-form .dealer-amap-info-window .info-window-content {
    margin-left: 14px;
    margin-top: 10px;
}
.dealer-form .dealer-amap-info-window .info-window-content .detail {
    padding: 6px 0;
    display: flex;
}
.dealer-form .dealer-amap-info-window .info-window-content .detail span{
    width: 20px;
    height: 20px;
    margin-right: 4px;
}
.dealer-form .dealer-amap-info-window .info-window-content .detail span.icon-tell{
    background: url(../images/tel.png);
    background-size: cover;
}
.dealer-form .dealer-amap-info-window .info-window-content .detail span.icon-address{
    background: url(../images/address.png);
    background-size: cover;
}
.dealer-form .dealer-amap-info-window .info-window-content .detail p{
    font-size: 14px;
    line-height: 20px;
}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {
    .l__store__container{
        padding-top: 90px;
    }
}