@charset "utf-8";

/* 公用部分 */
/* 下划线按钮 */
.new_btn_underline {
    background: #eaeaea none repeat scroll 0 0;
    border-bottom: 0 none;
    border-radius: 3px;
    color: #222;
    display: inline-block;
    letter-spacing: 0.1em;
    line-height: normal;
    margin: 0 auto;
    outline: medium none;
    overflow: hidden;
    padding: .7em 1.5em;
    position: relative;
    text-align: center;
    opacity: 1;
    text-transform: uppercase;
}

.btn-bian {
    background: transparent;
    border: 1px solid #333;
    padding: .5em 1.8em;
}

.new_btn_underline span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #111;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
}

.new_btn_underline span:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.nannvtong_btn span:before {
    background-color: #fff;
}

/* 下划线按钮 --end */
/* 字体 p h1 h2*/
.lp-common .mobile-hide p {
    font-size: 1.2vw;
    line-height: 2.5vw;
}

.lp-common .mobile-hide h1 {
    font-size: 1.8vw;
    margin: 0 auto 1.5vw;
}

.lp-common .mobile-hide h2 {
    font-size: 1.5vw;
    margin: 0 auto 1.5vw;
}

.lp-common .mobile-show p {
    font-size: 3.28vw;
    line-height: 5.62vw;
}

.lp-common .mobile-show h1 {
    font-size: 4.68vw;
    margin: 0 auto 4.68vw;
    letter-spacing: 0;
}

.lp-common .mobile-show h2 {
    font-size: 3.75vw;
    line-height: 5vw;
    margin: 0 auto;
    letter-spacing: 0;
}

.lp-common img {
    width: 100%;
}

/* 字体 p h1 --end */
/* 共用部分 --end */
/* 品牌故事 */
@media only screen and (min-width: 767px) {
    #story {
        margin: 0 21vw 1.6vw;
    }

    .technology {
        margin: 1vw 1.6vw 0;
    }

    .technology img {
        margin-bottom: 1vw;
    }
}

@media only screen and (max-width: 767px) {
    #story {
        margin: 0 0 2.7vw;
    }

    .technology {
        margin: 1.8vw 2.7vw 0;
    }

    .technology img {
        margin-bottom: 1.8vw;
    }
}

/* 品牌故事--end */