/*标签样式初始化*/
div,
ul,
li,
span,
p,
img,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border: 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*公共样式部分*/

body {
    color: #666;
    margin: 0 auto;
    background-color: #fff;
    font-family: "Microsoft YaHei";
    overflow-x: hidden;
}


a {
    color: #666;
    text-decoration: none;
}

a:hover {
    color: #b07b49;
    text-decoration: none;
}




.fl {
    float: left;
}

.fr {
    float: right;
}

/*左右浮动清除*/
.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
    display: block;
}

.wp {
    margin: 0 auto;
    width: 1400px;
}

/*间隙*/
.top10 {
    padding-top: 10px;
}

.top20 {
    padding-top: 20px;
}

.top30 {
    padding-top: 30px;
}

.top40 {
    padding-top: 40px;
}

.top50 {
    padding-top: 50px;
}

.top60 {
    padding-top: 60px;
}

.top70 {
    padding-top: 70px;
}

.top80 {
    padding-top: 80px;
}

.top90 {
    padding-top: 90px;
}

.top100 {
    padding-top: 100px;
}

/*英文样式*/
.font_en {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}





/*标题*/
.g-titb1 {
    text-align: center;
}

.g-titb1 b {
    font-size: 40px;
    color: #333;
    display: block;
}

.g-titb1 b:after {
    display: block;
    content: "";
    width: 92px;
    height: 3px;
    margin: 15px auto;
    background: #eee;
}

.g-titb1 t {
    color: #b07b49;
}

.g-titb1 p {
    font-size: 16px;
    color: #999;
}








/*抬头*/
.h-top {
    height: 45px;
    line-height: 45px;
    background: #f5f5f5;
    font-size: 14px;
    color: #999;
}

.h-top a {
    font-size: 14px;
    color: #999;
}

.header {
    height: 150px;
}

.logo {
    margin-top: 40px;
}

.header .name {
    font-size: 46px;
    color: #333;
    margin: 45px 0 0 15px;
}

.header .name p {
    font-size: 14px;
    color: #999
}

.header .name2 {
    font-size: 34px;
    color: #b07b49;
    margin-top: 45px;
    padding-left: 50px;
    position: relative;
}

.header .name2:after {
    display: block;
    content: "";
    width: 1px;
    height: 65px;
    margin: 0 25px;
    background: #eee;
    position: absolute;
    top: 10px;
    left: 0px;
}

.header .name2 span {
    font-size: 16px;
    color: #666;
}

.header .contact {
    width: 380px;
    margin-top: 37px;
}

.header .wechat {
    display: flex;
    align-items: center;
}

.header .wechat p {
    line-height: 30px;
    font-size: 14px;
    color: #666;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.header .wechat img {
    border: 1px #eee solid;
    width: 90px;
}

.header .tel {
    margin-top: 20px;
    position: relative;
}

.header .tel:after {
    display: block;
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0px;
    left: -60px;
    background: url(../images/20201113115037_349114745.png) no-repeat left;
    background-size: 100%;
}

.header .tel b {
    display: block;
    font-size: 24px;
    color: #333;
}




.menuBtn {
    display: none;
    position: fixed;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.menuBtn b {
    display: block;
    height: 4px;
    background-color: #cc0808;
    margin: 4px 0;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.menuBtn.open b {
    display: none;
    margin: 0;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -5px;
    width: 30px;
}

.menuBtn.open b:first-child {
    display: block;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.menuBtn.open b:last-child {
    display: block;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}








/*栏目*/

#top {
    height: 70px;
}

.nav {
    background:#b07b49;
    width: 100%;
    height: 70px;
    display: block;
    position: relative;
    /*padding-top: 15px;*/
    top: 0px;
}

.nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.nav .wp {
    position: relative;
}

.nav>ul>li {
    float: left;
    width: 199px;
    /*height: 55px;*/
    display: block;
    position: relative;
}

.dropIcon{
    display: none;
    position: absolute;
    top: 0;
    right: 0px;
    width: 20px;
    height: 45px;
    background: url(../images/navjt.png) no-repeat center;
    background-size: 17px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.on .dropIcon{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.nav>ul>li:first-child {
    background: none;
}

.nav>ul>li>a {
    display: block;
    line-height: 70px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 18px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
    z-index: 3;
}

.nav>ul>li.on> a,
.nav>ul>li:hover> a {
    background-color: #fff;
    color: #b07b49;
    
}

.nav>ul>.block {
    background-color: #b07b49;
    width: 134px;
    height: 80px;
    display: block;
    position: absolute;
    top: 0;
}



.prod_fl a t:hover,
.prod_fl a t.on {
    color: #f7be00;
}

.nav>ul li .erji_menu a:hover {
    background: hsla(132, 67%, 40%, 0.6);
    color: #fff;
}


/*导航下拉*/
.nav .sub {
    width: 288px;
    padding: 28px;
    border: 3px #fff solid;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    left: 0;
    top: 100%;
    z-index: 99;
    display: none;
    box-sizing: content-box;
}

.nav .sub p {
    font-size: 19px;
    font-weight: bold;
    color: #222;
    padding-bottom: 8px;
}

.nav .sub span {
    font-size: 15px;
}

.nav .sub span:after {
    content: "";
    display: block;
    width: 29px;
    height: 4px;
    background: #064893;
    margin-top: 19px;
}

.nav .sub a {
    display: block;
    border: 1px #ccc solid;
    margin-bottom: 13px;
    width: 163px;
    line-height: 33px;
    color: #333;
    font-size: 15px;
    text-align: center;
}

.nav .sub a:hover {
    color: #fff;
    background-color: #064893;
}

.tabbar{
    display: none;
}
/*版权*/
.footer {
    padding-top: 63px;
    background:#000;
    overflow: hidden;
}

.f-links li {
    width: 280px;
    float: left;
}

.f-links li:nth-child(5) {
    width: 400px;
}

.f-links li:last-child {
    float: right;
    margin-top: 20px;
}

.f-links li a:first-child {
    margin-bottom: 30px;
    font-size: 16px;
    color: #b07b49;
}

.f-links li a,
.f-links li span {
    display: block;
    font-size: 14px;
    color: #999;
    line-height: 34px;
}

.f-links li a:hover,
.f-links li span:hover {
    color: #b07b49;
}

.f-links li img {
    width: 164px;
    border: 1px #eee solid;
}



.f-copy,
.f-copy a {
    color: #fff;
    font-size: 15px;
    margin-top: 80px;
}



/* 客服样式*/
.y-kefu-box {
    position: fixed;
    right: 0;
    top: 20%;
    z-index: 9999;
    font-size: 13px;
}

.y-kefu-box img {
    display: block;
    width: 100%;
    height: auto;
}

.y-kefu-box01 .icon {
    display: block;
    background: url(../images/20201120165234_719470543.png) no-repeat;
    margin: 0 auto 6px;
}

.y-kefu-box01 {
    width: 54px;
    color: #666;
    text-align: center;
}

.y-kefu-box01 .kf-close-btn {
    width: 27px;
    height: 27px;
    background-position: -5px -115px;
    position: relative;
    cursor: pointer;
}

.y-kefu-box01 .kf-close-btn:before {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: #b07b49;
    position: absolute;
    bottom: -12px;
    left: 13px;
    z-index: 1;
}

.y-kefu-box01 .show-status>a,
.y-kefu-box01 .show-status>div {
    display: block;
    width: 52px;
    padding: 8px 0 12px;
    background-color: #fff;
    border-left: solid 1px #efefef;
    border-top: solid 1px #efefef;
    border-right: solid 1px #efefef;
    position: relative;
}

.y-kefu-box01 .show-status {
    position: relative;
}

.y-kefu-box01 .show-status .kf-zixun {
    background-color: #b07b49;
    border-color: #b07b49;
    color: #fff;
    margin: 10px 0 7px;
}

.y-kefu-box01 .kf-zixun {
    border-radius: 2px;
}

.y-kefu-box01 .kf-zixun i {
    width: 21px;
    height: 22px;
    background-position: -5px -5px;
}

.y-kefu-box01 .kf-mobile {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.y-kefu-box01 .kf-mobile>i {
    width: 18px;
    height: 18px;
    background-position: -5px -32px;
}

.y-kefu-box01 .kf-mobile:hover>i {
    background-position: -30px -32px;
}

.y-kefu-box01 .kf-weChat>i {
    width: 22px;
    height: 19px;
    background-position: -5px -55px;
}

.y-kefu-box01 .kf-weChat:hover>i {
    background-position: -30px -55px;
}

.y-kefu-box01 .kf-email {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.y-kefu-box01 .kf-email>i {
    width: 18px;
    height: 14px;
    background-position: -5px -80px;
}

.y-kefu-box01 .kf-email:hover>i {
    background-position: -30px -80px;
}

.y-kefu-box01 .back-top i {
    width: 13px;
    height: 11px;
    background-position: -5px -98px;
}

.y-kefu-box01 .back-top:hover i {
    background-position: -30px -98px;
}

.y-kefu-box01 .kf-email,
.y-kefu-box01 .back-top {
    border-bottom: solid 1px #efefef;
}

.y-kefu-box01 .back-top {
    margin-top: 20px;
    border-radius: 2px;
    left: 55px;
}

.y-kefu-box01 .hver:hover {
    background-color: #b07b49;
    border-color: #b07b49;
}

.y-kefu-box01 .hver:hover>p {
    color: #fff;
}

.y-kefu-box01 .kf-zixun1 {
    border-radius: 2px;
    border-bottom: 1px #efefef solid;
}

.y-kefu-box01 .kf-zixun1 >i {
    width: 21px;
    height: 22px;
    background-position: -5px -180px;
}

.y-kefu-box01 .kf-zixun1:hover>i {
    background-position: -30px -180px;
}


.y-kefu-box01 .mobile-infos,
.y-kefu-box01 .y-ewm-box,
.y-kefu-box01 .y-email-infos {
    background-color: #fff;
    border: solid 1px #efefef;
    position: absolute;
    right: 90px;
    z-index: 2;
    border-radius: 2px;
    display: none;
}

/*咨询热线*/
.y-kefu-box01 .mobile-infos {
    width: 260px;
    text-align: left;
    top: 0;
}

.y-kefu-box01 .mobile-infos>div {
    padding: 20px 0 20px 45px;
    position: relative;
}

.y-kefu-box01 .mobile-infos>div i {
    width: 15px;
    height: 15px;
    background-position: -52px -32px;
    position: absolute;
    top: 22px;
    left: 20px;
    z-index: 2;
}

.y-kefu-box01 .mobile-infos .online1 {
    border-bottom: solid 1px #efefef;
}

.y-kefu-box01 .mobile-infos span {
    color: #b9b9b9;
}

.y-kefu-box01 .mobile-infos p {
    color: #b07b49;
    font-size: 18px;
}

.y-kefu-box .right {
    width: 12px;
    height: 12px;
    position: absolute;
    right: -12px;
    top: 24px;
}

.y-kefu-box .right-arrow1,
.y-kefu-box .right-arrow2 {
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-top: 6px transparent dashed;
    border-right: 6px transparent dashed;
    border-bottom: 6px transparent dashed;
    border-left: 6px white solid;
    overflow: hidden;
}

.y-kefu-box .right-arrow1 {
    left: 1px;
    border-left: 6px #efefef solid;
}

.y-kefu-box .right-arrow2 {
    border-left: 6px white solid;
}

/*二维码*/
.y-kefu-box01 .y-ewm-box {
    width: 151px;
    height: 178px;
    top: -60px;
}

.y-kefu-box01 .y-ewm-box>div {
    width: 151px;
    height: 178px;
}

.y-kefu-box01 .y-ewm-box img {
    width: 115px;
    height: 114px;
    margin: 20px auto 10px;
}

.y-kefu-box01 .y-ewm-box .y-ewm-img1 {
    width: 150px;
    border-right: solid 1px #efefef;
}

.y-kefu-box01 .y-ewm-box .right {
    top: 84px;
}

/*email*/
.y-kefu-box01 .y-email-infos {
    padding: 28px 20px 28px 45px;
    color: #b9b9b9;
    text-align: left;
    bottom: 0;
    width: 170px;
}

.y-kefu-box01 .y-email-infos p {
    color: #3eb020;
    font-size: 16px;
}

.y-kefu-box01 .y-email-infos>i {
    width: 18px;
    height: 13px;
    background-position: -52px -80px;
    position: absolute;
    left: 15px;
    top: 30px;
}

.y-kefu-box01 .y-email-infos .right {
    top: 55px;
}

.y-kefu-box01 .hide-status {
    width: 54px;
    height: 65px;
    background-color: #f55b1b;
    position: absolute;
    top: 37px;
    left: 55px;
    z-index: 9;
}

.y-kefu-box01 .hide-status .kf-zixun {
    padding: 10px 0 7px;
    color: #fff;
    cursor: pointer;
}

@media only screen and (min-width: 1199px) and (max-width: 1920px) {
    .wp {
        margin: 0 auto;
        width: 72.91vw;
    }

    /*间隙*/
    .top10 {
        padding-top: 0.520vw;
    }

    .top20 {
        padding-top: 1.041vw;
    }

    .top30 {
        padding-top: 1.562vw;
    }

    .top40 {
        padding-top: 2.083vw;
    }

    .top50 {
        padding-top: 2.604vw;
    }

    .top60 {
        padding-top: 3.125vw;
    }

    .top70 {
        padding-top: 3.645vw;
    }

    .top80 {
        padding-top: 4.166vw;
    }

    .top90 {
        padding-top: 4.687vw;
    }

    .top100 {
        padding-top: 5.208vw;
    }

    /*英文样式*/
    .font_en {
        font-family: Arial, Helvetica, sans-serif;
        text-transform: uppercase;
    }





    /*标题*/
    .g-titb1 {
        text-align: center;
    }

    .g-titb1 b {
        font-size: 2.083vw;
        color: #333;
        display: block;
    }

    .g-titb1 b:after {
        display: block;
        content: "";
        width: 4.791vw;
        height: 0.156vw;
        margin: 0.781vw auto;
        background: #eee;
    }

    .g-titb1 t {
        color: #000;
    }

    .g-titb1 p {
        font-size: 0.833vw;
        color: #999;
    }








    /*抬头*/
    .h-top {
        height: 2.343vw;
        line-height: 2.343vw;
        background: #f5f5f5;
        font-size: 0.729vw;
        color: #999;
    }

    .h-top a {
        font-size: 0.729vw;
        color: #999;
    }

    .header {
        height: 7.812vw;
    }

    .logo {
        margin-top: 2.083vw;
    }
    .logo img{
        width: 4.58333vw;
    }
    .header .name {
        font-size: 2.395vw;
        color: #333;
        margin: 2.043vw 0 0 0;
    }

    .header .name p {
        font-size: 0.929vw;
        color: #999
        letter-spacing: 0.2vw;
    }

    .header .name2 {
        font-size: 1.370vw;
        color: #d00606;
        margin-top: 2.343vw;
        padding-left: 2.604vw;
        position: relative;
    }

    .header .name2:after {
        display: block;
        content: "";
        width: 0.052vw;
        height: 3.385vw;
        margin: 0 1.302vw;
        background: #eee;
        position: absolute;
        top: 0.520vw;
        left: 0vw;
    }

    .header .name2 span {
        font-size: 0.833vw;
        color: #666;
    }

    .header .contact {
        width: 19.79vw;
        margin-top: 1.927vw;
    }

    .header .wechat {
        display: flex;
        align-items: center;
    }

    .header .wechat p {
        line-height: 1.562vw;
        font-size: 0.729vw;
        color: #666;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    .header .wechat img {
        border: 0.052vw #eee solid;
        width: 4.687vw;
    }

    .header .tel {
        margin-top: 1.041vw;
        position: relative;
    }

    .header .tel:after {
        display: block;
        content: "";
        width: 2.604vw;
        height: 2.604vw;
        position: absolute;
        top: -0.3vw;
        left: -3.125vw;
        background: url(../images/20201113115037_349114745.png)no-repeat left;
        background-size: 2.34375vw;
    }

    .header .tel b {
        display: block;
        font-size: 1.65vw;
        color: #333;
    }








    /*栏目*/

    #top {
        height: 3.645vw;
    }

    .nav {
        background: #b07b49;
        width: 100%;
        height: 3.645vw;
        display: block;
        position: relative;
        /*padding-top: 0.781vw;*/
        top: 0vw;
    }

    .nav.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .nav .wp {
        position: relative;
    }

    .nav>ul>li {
        float: left;
        width: 10.402vw;
        /*height: 2.864vw;*/
        display: block;
        position: relative;
    }



    .nav>ul>li:first-child {
        background: none;
    }

    .nav>ul>li>a {
        display: block;
        line-height: 3.623vw;
        width: 100%;
        color: #fff;
        text-align: center;
        font-size: 18px;
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
        position: relative;
        z-index: 3;
    }

    .nav>ul>li.on> a,
    .nav>ul>li:hover> a {
        background-color: #f4f4f4;
        color: #000;
        
    }

    .nav>ul>.block {
        background-color: #b07b49;
        width: 6.979vw;
        height: 4.166vw;
        display: block;
        position: absolute;
        top: 0;
    }



    .prod_fl a t:hover,
    .prod_fl a t.on {
        color: #f7be00;
    }

    .nav>ul li .erji_menu a:hover {
        background: hsla(132, 67%, 40%, 0.6);
        color: #fff;
    }


    /*导航下拉*/
    .nav .sub {
        width: 15vw;
        padding: 1.5vw;
        border: 0.156vw #fff solid;
        position: absolute;
        background: rgba(255, 255, 255, 0.9);
        left: 0;
        top: 100%;
        z-index: 99;
        display: none;
    }

    .nav .sub p {
        font-size: 1vw;
        font-weight: bold;
        color: #222;
        padding-bottom: 0.416vw;
    }

    .nav .sub span {
        font-size: 0.8vw !important;
    }

    .nav .sub span:after {
        content: "";
        display: block;
        width: 1.5vw;
        height: 0.2vw;
        background: #064893;
        margin-top: 1vw;
    }

    .nav .sub a {
        display: block;
        border: 0.052vw #ccc solid;
        margin-bottom: 0.7vw;
        width: 8.5vw;
        line-height: 1.7vw;
        color: #333;
        font-size: 0.8vw;
        text-align: center;
    }

    .nav .sub a:hover {
        color: #fff;
        background-color: #064893;
    }



    /*版权*/
    .footer {
        padding-top: 3.281vw;
        background: #242424;
    }

    .f-links li {
        width: 13.015vw; 
        float: left;
    }

    .f-links li:nth-child(5) {
        width: 10.83vw;
    }

    .f-links li:last-child {
        float: right;
        margin-top: 1.041vw;
    }

    .f-links li a:first-child {
        margin-bottom: 1.562vw;
        font-size: 0.833vw;
        color: #acacac;
        font-weight: bold;
    }

    .f-links li a,
    .f-links li span {
        display: block;
        font-size: 0.729vw;
        color: #999;
        line-height: 1.770vw;
    }

    .f-links li a:hover,
    .f-links li span:hover {
        color: #b07b49;
    }

    .f-links li img {
        width: 8.541vw;
        border: 0.052vw #eee solid;
    }



    .f-copy,
    .f-copy a {
        color: #fff;
        font-size: 0.781vw;
        margin-top: 4.166vw;
    }
}


@media screen and (max-width: 1199px) {
    .wp{
        width: auto;
        padding: 0 15px;
    }
    /*间隙*/
.top10 {
    padding-top: 0.833vw;
}

.top20 {
    padding-top: 1.666vw;
}

.top30 {
    padding-top: 2.5vw;
}

.top40 {
    padding-top: 3.333vw;
}

.top50 {
    padding-top: 4.166vw;
}

.top60 {
    padding-top: 5vw;
}

.top70 {
    padding-top: 5.833vw;
}

.top80 {
    padding-top: 6.666vw;
}

.top90 {
    padding-top: 7.5vw;
}

.top100 {
    padding-top: 8.3333vw;
}
    body{
        padding-top: 50px;
    }
    .menuBtn {
        display: block;
    }
    .header .name2,
    .header .contact,
    .h-top{
        display: none;
    }

    .header{
        height: 50px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background-color: #fff;
        box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
    }
    .logo{
        margin-top: 0;
        line-height: 50px;
        margin-right: 10px;
    }
    .logo img{
        height: 35px;
        margin-top: 7px;
    }
    .header .name{
        font-size: 16px;
        margin: 6px 0 0;
    }
    .header .name p{
        font-size: 12px;
    }
    #top{
        height: 0;
    }
    .nav{
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: auto;
        bottom: 0;
        background: #fff;
        overflow-y: auto;
        z-index: 101;
    }
    .nav>ul>li{
        float: none;
        width: auto;
        height: auto;
    }
    .nav>ul>li>a{
        font-size: 14px;
        color: #333;
        line-height: 45px;
        border-bottom: 1px solid #f1f1f1;
        text-align: left;
        border-radius: 0!important;
    }
    .nav>ul>li.on> a{
        color: #b07b49!important;
        background-color: #fff!important;
    }
   .nav>ul>li:hover> a{
       background-color: transparent;
       color: #333;
   }
   .dropIcon{
       display: block;
       z-index: 20;
       pointer-events: none;
   }
    .nav .sub{
        position: static;
        border: none;
        width: auto;
        padding: 0;
        background-color: transparent;
    }
    .sub .type{
        display: none;
    }
    .sub .fr{
        float: none;
        width: auto;
    }
    .nav .sub a{
        width: auto;
        border: none;
        font-size: 14px;
        line-height: 45px;
        color: #333;
        text-align: left;
        margin: 0 auto;
        padding-left: 15px;
        border-bottom: 1px solid #f1f1f1;
    }



    .g-titb1 b{
        font-size: 18px;
    }
    .g-titb1 p{
        font-size: 14px;
    }


    .f-links li{
        display: none;
    }
    .footer{
        padding-top: 5vw;
        background-position: bottom center;
    }
    .f-links li:nth-child(5),
    .f-links li:nth-child(6){
        display: block;
        float: none;
        width: auto;
        text-align: center;
    }
    .f-links li a:first-child{
        margin-bottom: 2vw;
    }
    .f-copy{
        margin-top: 4vw;
    }
    .f-copy .wp{
        padding: 0;
    }
    .f-copy, .f-copy a{
        font-size: 12px;
    }
    .f-copy .fr{
        display: none;
    }

    .y-kefu-box{
        display: none;
    }

    .tabbar{
        height: 60px;
        display: block;
    }
    .tabbar .box{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 100;
        background-color: #b07b49;
    }
    .tabbar .icon{
        height: 19px;
        overflow: hidden;
        text-align: center;
        font-size: 0;
        margin: 10px 0 4px;
    }
    .tabbar .icon img{
        display: inline-block;
        vertical-align: middle;
        max-height: 18px;
    }
    .tabbar .item{
        float: left;
        width: 25%;
        height: 60px;
        box-sizing: border-box;
        text-align: center;
        font-size: 14px;
        color: #fff;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        border-right: 1px solid #fff;
    }
    .tabbar .item:last-child{
        border-right: none;
    }
}