
*{
    margin: 0;
    padding: 0;
    list-style: none;
}


.container {
    max-width: 1200px;
}

/*网站公共样式*/
.info-content {
    line-height: 2;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #c79127;
}

a:focus {
    color: #000;
}

a.btn-more {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease;
    /* Opera */
}

.banner {
    height: 500px\9 !important;
    overflow: hidden\9 !important;
    overflow: hidden;
}

/*兼容ie低版*/
.text-blue {
    color: #0a9023;
}

/*遮罩层*/
.mask-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    overflow: hidden;
    z-index: 100;
    top: 0;
    left: 0;
}

.mask-bg.active {
    display: block;
}



/*自定义导航动画，也可以用animater.css中的动画，需要在script.js中修改*/
.nav .animated,
.sub-nav .animated {
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.navSlide {
    animation-name: navSlide;
    -webkit-animation-name: navSlide;
}

@keyframes navSlide {
    0% {
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        opacity: 0;
        visibility: visible;
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1;
    }
}



/*主菜单*/
@media (min-width:992px)
/*pc端*/
    {
    .bannerphone {
        display: none !important;
    }

    .header {
        height: 100px;
        line-height: 100px;
        position: sticky;
        top: 0;
        background-color: rgb(139, 137, 137);
        z-index: 20;
    }

    .header .logo img {
        max-height: 52px;
    }

    .logo-box {
        text-align: left;
    }

    .nav {
        width: 100%;
        padding-top: 24px;
    }

    .nav>ul>li {
        float: left;
        text-align: center;
        width: 14.25%;
        height: 50px;
        line-height: 50px;
    }

    .nav>ul>li>ul {
        position: absolute;
    }

    .nav>ul>li>a {
        font-size: 14px;
        display: block;
        width: 100%;
        color: #fff;
    }

    .nav>ul>li.current>a,
    .nav li:active a{
        color: #c79127;
    }

    .nav li:hover>ul {
        display: block;
    }

    .nav>ul>li>ul::before {
        display: block;
        margin: 0px auto;
        text-align: center;
        position: absolute;
        top: -8px;
        left: 45%;
        content: "";
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #fff;
    }

    .nav>ul>li>ul li ul::before {
        display: block;
        margin: 0px auto;
        text-align: center;
        position: absolute;
        top: 20px;
        left: -10px;
        content: "";
        width: 0;
        height: 0;
        border-bottom: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid transparent;
        border-left: 5px solid #fff;
    }

    .nav ul li ul li a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 15px;
        line-height: 50px
    }

    .nav ul li ul li a:hover {
        text-decoration: none;
        color: #fff;
        background: #0a1859;
    }

    .nav ul li ul li,
    .nav>ul>li>ul::before,
    .nav ul li ul {
        display: none !important;
    }

    .nav ul li {
        position: relative;
    }

    .nav ul li .arrow {
        display: none
    }

    .nav ul li ul {
        background-color: #fff;
        display: none;
        position: absolute;
        left: -18%;
        top: 100px;
        z-index: 2;
        width: 150px;
        border-top: 1px solid #0a1859;
    }

    /*二级ul样式*/
    .nav ul li ul li ul {
        left: 100%;
        top: 0px;
        display: none;
    }

    /*三级以后ul样式*/

    .nav-toggle {
        display: none;
    }

    .breadcrumb {
        line-height: 60px;
    }

    .breadcrumb li:first-child {
        border-left: 1px solid #e1e1e1;
        border-right: 1px solid #e1e1e1;
        padding: 0 24px;
    }

    .breadcrumb-bg {
        line-height: 40px;
        border-bottom: 1px solid #e1e1e1;
        background-color: #f5f5f5;
    }
}

.header .logo-box .logo img {
        max-height: 80px;
    }

@media (max-width:992px)  {
/*手机端*/
  
    .bannerpc {
        display: none !important;
    }

    .header .logo-box {
        height: 70px;
        padding-right: 70px;
        line-height: 70px;
        background: rgb(139, 137, 137);
    }

    .header .logo-box .logo img {
        max-height: 80px;
    }

    .header .nav-toggle {
        position: absolute;
        right: 0px;
        top: 0px;
        font-size: 25px;
        color: #fff;
        min-width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        cursor: pointer;
        z-index: 1;
    }

    .header .nav-toggle.active {
        color: #ccc;
    }

    /*.nav {*/
    /*    position: fixed;*/
    /*    z-index: 999;*/
    /*    top: 0px;*/
    /*    right: 0px;*/
    /*    width: 0px;*/
    /*    background: #fff;*/
    /*    height: 100vh;*/
    /*    opacity: 0;*/
    /*    transition: all 0.2s linear;*/
    /*    overflow-y: auto*/
    /*}*/

    /*.nav .active {*/
        /*color:#c79127 ;*/
    /*    opacity: 1;*/
    /*    width: 300px;*/
    /*    max-width: 60%*/
    /*}*/
    
    .nav {
        position: fixed;
        top: 0;
        right: -280px; /* 隐藏到右侧屏幕外 */
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 15px rgba(0,0,0,0.1);
        z-index: 1002;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding-top: 60px;
    }
    
    /* 激活状态：显示侧边栏 */
    .nav.active {
        right: 0 !important; /* 使用 !important 确保生效 */
    }

    .nav ul li {
        line-height: 45px;
        text-align: left;
    }

    .nav ul li ul {
        display: none;
    }

    /*二级ul样式*/
    .nav ul li a {
        padding-left: 30px;
        display: block;
        color: #999;
        font-size: 15px;
        line-height: 3.5;
        border-bottom: 1px solid #dcdcdc
    }

    .nav ul li ul li a {
        padding-left: 60px;
        font-size: 14px;
        background-color: #eeeeee
    }

    .nav ul li ul li ul li a {
        padding-left: 90px;
    }

    .nav ul li ul li ul li li a {
        padding-left: 120px;
    }

    .nav ul li {
        position: relative;
    }

    .nav ul li .arrow {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        transition-duration: 0s
    }

    .nav ul li .arrow:after {
        font-family: FontAwesome;
        content: "\f105";
        display: block;
        font-weight: bold;
        font-size: 18px
    }

    .nav ul li.current>a {
        color: #5a342b;
    }

    .nav ul li.active>ul {
        display: block
    }

    .nav ul li.active>.arrow {
        transform: rotate(90deg)
    }

    .sub-nav-box {
        display: none;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .breadcrumb-bg {
        height: 40px;
        line-height: 20px;
    }
}




/*TOP*/
.header-top {
    line-height: 40px;
    background-color: rgb(34, 34, 34);
    font-size: 13px;
}

.header-top a {
    color: rgb(149, 149, 149);
}

.header-top .float-lg-left,
.header-top .float-lg-right {
    color: rgb(149, 149, 149);
}



/*图片列表*/
.images-list .row .item a {
    display: block;
    overflow: hidden;
}

.images-list .row .item img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s ease-out 0s;
}

.images-list .row .item a:hover img {
    transform: scale(1.1, 1.1);
}



/*固定TOP*/
#toTop {
    position: fixed;
    bottom: 140px;
    right: 20px;
    width: 40px;
    height: 40px;
    text-indent: -999em;
    z-index: 999;
    background: url(../image/top.png) no-repeat;
    background-position: -503px 0;
    transition: all 0.2s linear;
}

#toTop:hover {
    background-position: -503px -42px;
}

@media (max-width:1000px) {
    #toTop {
        display: none !important;
    }
}


/*移动端固定栏目按钮*/
.float-nav-toggle {
    z-index: 10;
    display: block;
    text-align: center;
    position: fixed;
    left: 6px;
    bottom: 60px;
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(13, 13, 13, 0.6);
    border-radius: 20px;
}

@media (max-width: 767px) {
    .display-xs-block {
        display: block !important;
    }
}



/*手机端固定导航栏*/
.footer-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    padding: 6px 0px 2px;
    color: #fff;
    z-index: 9;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 0.2rem solid #000;
    background: #fff;
}

.footer-fixed ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.footer-fixed ul li a {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.footer-fixed ul li p {
    font-size: 1.3rem;
}

.footer-fixed.active {
    transform: translateX(2.8rem);
    z-index: 9;
}

.footer-fixed2 {
    font-size: 2.8rem;
    padding-top: 0.6rem;
}

.footer-fixed i {
    display: block;
}

.footer-fixed .fa {
    font-size: 22px;
}

@media (min-width:1000px) {
    .footer-fixed {
        display: none !important;
    }
}

@media (max-width:1000px) {
    footer {
        margin-bottom: 50px;
    }
}


/*在线客服*/
.zaixian {
    position: fixed;
    bottom: 440px;
    right: 0px;
    z-index: 9;
}

.zaixian .zaixian_com {
    position: relative;
    width: 50px;
    height: 80px;
}

.zaixian_com .zxzx_pic1 {
    position: absolute;
    right: 0px;
    top: 0px;
}

.zaixian_com .zxzx_pic2 {
    position: absolute;
    right: -190px;
    top: -70px;
    z-index: 10;
    width: 170px;
    height: 300px;
}

.zaixian_com .zxzx_pic1 p {
    position: absolute;
    top: 50px;
    left: 18px;
    font-size: 13px;
    color: #fff;
}

.zaixian_com .zxzx_pic2 p {
    position: absolute;
    top: 118px;
    left: 24px;
    font-size: 13px;
    color: #fff;
}

.kf-lf-lj {
    position: absolute;
    width: 100px;
    right: 10px;
    top: 70px;
}

.kf-lf-lj a {
    display: block;
    line-height: 30px;
    padding-left: 10px;
    margin: 5px 0;
    color: #848484;
    font-size: 13px;
}

.kf-lf-lj a .fa {
    padding-right: 4px;
}

.kf-lf-lj a:hover {
    background: #a88c48 url(http://t9498.mbdemo.18inter.com/Templates/T9498/images/box-kefu2.png) no-repeat 5px center;
    color: #FFF;
    border-radius: 4px;
}

@media(max-width:1000px) {
    .zaixian {
        display: none;
    }
}


.breadcrumb {
    padding: 0px 0px;
}

.breadcrumb li .fa {
    color: #c99b46;
}

.breadcrumb>li+li+li::before {
    content: ">>";
    padding: 0 5px;
    color: rgb(102, 102, 102);
}

.breadcrumb>li+li::before {
    content: " ";
}

.breadcrumb li:first-child a span:hover,
.breadcrumb li:last-child a:hover {
    text-decoration: underline;
}

.pagination>li>a,
.pagination>li>span {
    padding: 4px 10px;
}

.card1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.card2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    height: 50px;
}

.cards2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    height: 40px;
}


.page ul li .fa {
    padding-right: 10px;
}

.page ul li:hover a,
.page ul li:hover {
    color: #0488CD;
}

.news-page ul li {
    color: #0f89dd;
}

.news-page ul li a:hover,
.news-page ul li:hover {
    color: #000;
}

.pagedetail {
    background: #f5f5f5;
    border: #E5E5E5 1px solid;
    padding: 5px;
    margin: 40px 0 20px;
    color: #868686;
    text-indent: 24px;
    font-size: 13px;
}


/*搜索*/
.ss-box {
    position: relative;
    color: #000;
    border: 2px solid #0a9023;
    background: #fff;
    width: 200px;
    height: 40px;
    border-radius: 2px;
}

.ss-box input {
    margin-bottom: 8px;
}

.ss-box .s-input {
    width: 100%;
    outline: none;
    border: none;
    line-height: 40px;
    height: 38px;
    padding-left: 0px;
    background-color: transparent;
}

.ss-box .s-btn {
    position: absolute;
    background-color: #0a9023;
    width: 60px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    line-height: 36px;
    outline: none;
    border: none;
    top: -2px;
}

.search {
    background: rgb(247, 247, 247);
}

.search .ss-box {
    margin: 0px auto;
}

.search .font span {
    cursor: pointer;
}

.search .font span:hover {
    color: #da0000;
}

.search-add {
    font-size: 13px;
    clear: both;
    margin-left: 90px;
}


/*转动*/
.zhuan {
    -webkit-animation: logoRotate 0.8s ease-in-out 0.8s alternate none 1;
    animation: logoRotate 0.8s ease-in-out 0.8s alternate none 1;
}

@-webkit-keyframes logoRotate {
    0% {
        -webkit-transform: rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateY(-180deg);
    }

    0% {
        -webkit-transform: rotateY(-180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@keyframes logoRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(-180deg);
    }

    0% {
        -webkit-transform: rotateY(-180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

/*---------------------------------------------------------add------------------------------------------------------------------------------*/

/*内页样式*/
@media (min-width:992px) {
    .subNavboxs {
        padding-left: 0;
    }

    .sub-nav {
        background-color: #fff;
    }

    /*子栏目样式*/
    .sub-nav>ul {
        background: #f4f5f7;
    }

    .sub-nav>ul>li {
        text-align: center;
    }

    .sub-nav>ul>li>ul {
        position: absolute;
    }

    .sub-nav>ul>li>a {
        padding: 12px 20px;
        font-size: 15px;
        color: #666666;
        display: block;
        line-height: 25px;
        padding: 17.5px 0px;
        border-bottom: 1px #e1e1e1 solid;
    }

    .sub-nav>ul>li.active>a {
        background-color: #c79127;
        color: #fff;
    }

    .sub-nav li:hover>ul {
        display: block;
    }

    .sub-nav>ul>li>ul::before {
        display: block;
        margin: 0px auto;
        text-align: center;
        position: absolute;
        top: -8px;
        left: 45%;
        content: "";
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #ed8e82;
    }

    .sub-nav>ul>li>ul li ul::before {
        display: block;
        margin: 0px auto;
        text-align: center;
        position: absolute;
        top: 20px;
        left: -10px;
        content: "";
        width: 0;
        height: 0;
        border-bottom: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid transparent;
        border-left: 5px solid #fff;
    }

    .sub-nav ul li ul li a {
        display: block;
        width: 100%;
        text-align: center;
        color: #fff;
        line-height: 50px
    }

    .sub-nav ul li ul li a:hover {
        text-decoration: none;
        color: #fff;
        background: rgba(0, 0, 0, 0.1);
    }

    .sub-nav ul li {
        position: relative;
    }

    .sub-nav ul li .arrow {
        display: none
    }

    .sub-nav ul li ul {
        background-color: #0a9023;
        display: none;
        position: absolute;
        left: 0;
        z-index: 2;
        width: 100%;
    }

    /*二级ul样式*/
    .sub-nav ul li ul li ul {
        left: 100%;
        top: 0px;
        display: none;
    }

    /*三级以后ul样式*/

    .headlinebox {
        margin: 60px 0;
    }

    .headlinebox .title {
        width: 18%;
        font-size: 24px;
    }

    .headlinebox .title p {
        font-size: 14px;
    }

    .smallboxs {
        padding: 0 100px;
    }

    .news-list .left {
        padding-right: 0;
    }

    .news-list .row .title a {
        font-size: 20px;
    }

}

    .sub-nav{
 
        clear: both;
        text-align: left;
        margin-bottom: 20px;
        width: 100%;
        overflow: visible;
        background: #fafafa;
    }

@media(max-width:992px) {
    .subNavboxs {
        padding-left: 0;
        padding-right: 0;
    }

    .sub-nav {
        clear: both;
        text-align: left;
        margin-bottom: 20px;
        width: 100%;
        overflow: visible;
        background: #fafafa;
    }

    .sub-nav li {
        /*width: 100%;*/
        /*padding: 0px;*/
        /*text-align: left;*/
        /*position: relative;*/
        /*display: block;*/
         width: 100%;
        padding: 0px;
        text-align: center;
        margin: 0 auto;
        font-size: 15px;
        position: relative;
        display: block;
    }
    
    .sub-nav>ul>li>a {
        padding: 12px 20px;
        font-size: 15px;
        color: #666666;
        display: block;
        line-height: 40px;
        padding: 0.5px 0px;
        border-bottom: 1px #e1e1e1 solid;
    }
    
    
    .sub-nav>ul>li.active>a {
        background-color: #c79127;
        color: #fff;
    }

    /*.sub-nav li a {*/
    /*    display: block;*/
    /*    padding-left: 25px;*/
    /*    line-height: 40px;*/
    /*    font-size: 14px;*/
    /*    color: #0a9023;*/
    /*    font-family: "Microsoft YaHei", Tahoma, Verdana, "Simsun";*/
    /*    border: 1px solid #0a9023;*/
    /*}*/

    .sub-nav li a:hover {
        color: #5a342b;
    }

    .sub-nav li ul {
        display: none
    }

    .sub-nav li ul li a {
        padding-left: 55px;
    }

    .sub-nav li ul li ul li a {
        padding-left: 85px
    }

    .sub-nav li .arrow {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        transition-duration: 0.1s;
        cursor: pointer;
        color: #fff;
    }

    .sub-nav li .arrow:after {
        font-family: FontAwesome;
        content: "\f105";
        display: block;
        font-weight: bold;
        font-size: 18px
    }

    .sub-nav li.current>a {
        color: #fff;
        background-color: #0a9023;
    }

    .sub-nav li.active>ul {
        display: block
    }

    .sub-nav li.active>.arrow {
        transform: rotate(90deg)
    }

    .navtit {
        width: 100%;
        overflow: hidden;
    }

    .navtit a {
        width: 45%;
        padding: 10px;
        background-color: rgba(10, 144, 35, 1);
        color: #fff;
        display: block;
        float: left;
        text-align: center;
        border-radius: 4px;
        margin-right: 4%;
    }

    .address-bg .address-content {
        padding-top: 20px;
    }

    .address-bg .address-content strong {
        font-size: 18px !important;
    }

    .address-bg .address-content p {
        font-size: 12px;
    }

    .message-tit {
        font-size: 12px;
        color: rgb(123, 123, 123);
    }

    .message-tit p {
        line-height: 1.8;
        padding-top: 10px;
    }

    .headlinebox {
        margin: 30px 0 30px;
    }

    .headlinebox .title p {
        font-size: 12px;
    }

    .news-list {
        margin-top: 20px !important;
    }
}

@media(max-width:1000px) and (min-width:415px) {
    .headlinebox .title {
        width: 30%;
        font-size: 20px;
        font-weight: bold;
    }
}

@media(max-width:415px) {
    .headlinebox .title {
        width: 60%;
        font-size: 20px;
        font-weight: bold;
    }

    .news-list {
        margin: 0px 15px;
    }

    .news-list li .left {
        padding-right: 0;
        padding-left: 0;
    }

    .news-list li .title {
        padding-right: 0;
    }
}

/*内页公共样式*/
.headlinebox .title {
    font-weight: bold;
}

.headlinebox .title {
    padding: 10px;
    border-top: 3px solid #0a9023;
    border-bottom: 3px solid #0a9023;
    margin: auto;
    text-align: center;
    color: #0a9023;
}

.headlinebox .title p {
    font-weight: 400;
}

/*内页-关于我们*/
.marqueelefts {
    height: auto;
    max-width: 1200px;
    overflow: hidden;
    margin: 0px auto;
}

/*滚动*/
.marqueelefts ul {
    float: left;
}

.marqueelefts li {
    float: left;
    margin: 0 5px;
    display: inline;
    width: 250px;
    height: auto;
    text-align: center;
}

.marqueelefts li .pic {
    display: block;
    width: 250px;
    height: auto;
    padding: 10px;
    overflow: hidden;
}

.marqueelefts li .pic img {
    height: 100%;
    width: 100%;
}

.marqueelefts li .txt {
    text-align: center;
    height: auto;
    line-height: 260px;
}

.marqueelefts .marquee1_1>li>p {
    text-align: center;
    margin: 0 auto;
    display: inline-block;
}


/*内页-产品中心*/
.proline h5 {
    border-bottom: 1px solid #ededed;
}

.proline .listprice {
    color: #898989;
    text-decoration: line-through;
}

.proline .price .text {
    color: #898989;
}


/*内页-新闻中心*/
.color-tit {
    float: left;
    font-size: 24px;
    color: rgb(10, 144, 35);
    line-height: 1.7;
    position: absolute;
    right: 15px;
    top: 0;
}

.news-list .row {
    border-bottom: 1px dashed #e3e3e3;
    overflow: hidden;
    padding: 10px 0 20px;
    margin-bottom: 10px;
    display: flex;
}

.news-list .row .date {
    background: #f5f5f5;
    text-align: center;
    color: #999999;
    padding: 4px 0;
    width: 76px;
    margin: 0px 15px;
}

.news-list .row .date li:first-child {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0px;
}

.news-list .row .date li:last-child {
    font-size: 13px;
}

.news-list .row .title {
    flex: auto;
    margin-right: 15px;
}

.news-list .row .title p {
    padding-top: 2px;
    font-size: 13px;
    color: #5A5A5A;
    line-height: 22px;
}

.news-list .row .title a {
    color: #5A5A5A;
    font-size: 16px;
}

.news-list .row .title a:hover {
    color: #c79127;
}


/*分页-联系我们*/
.address-bg {
    padding: 0;
    margin: 0;
    color: rgb(123, 123, 123);
    background-color: #fff;
    margin-bottom: 20px;
    overflow: hidden;
}

.address-bg .address-content strong {
    color: rgb(10, 144, 35);
    font-size: 24px;
    font-family: 微软雅黑;
}

.address-bg .address-content p {
    font-family: 微软雅黑;
    font-size: 16px;
    color: rgb(123, 123, 123);
}


/*分页-在线留言*/
.message-tit {
    text-align: center;
    font-size: 16px;
    font-family: 微软雅黑;
    color: rgb(123, 123, 123);
    line-height: 3;
}





/*首页样式*/
@media(min-width:1000px) {
    .homelist .left {
        padding-right: 0;
    }

    .headlinetitle {
        height: 52px;
        line-height: 52px
    }

    .headlinetitle a {
        font-size: 18px;
    }

    .homelist {
        margin-top: -20px;
    }

    .homelist .imges {
        padding-right: 0;
    }

    .homelist .newswords .news-list {
        padding-top: 14px;
    }

    .homelist .newswords .news-list .row {
        padding: 10px 0 12px;
        margin-bottom: 8px;
    }

    .homejianjie {
        margin-top: 60px;
    }
}

@media (max-width:1000px) {
    .headlinetitle {
        height: 40px;
        line-height: 40px
    }

    .headlinetitle a {
        font-size: 16px;
    }

    .homelist .newswords {
        padding-left: 0;
        padding-right: 0;
    }

    .homelist .newswords .news-list {
        margin: 0px 0px;
    }

    .homelist .imges {
        margin-top: -10px;
    }

    .homejianjie {
        margin-top: 20px;
    }

}


/*首页公共样式*/
.headlinetitle {
    border: 1px solid rgb(10, 144, 35);
    text-align: center;
}

.headlinetitle a {
    color: rgba(10, 144, 35, 1);
    font-weight: bold;
    width: 100%;
    display: inline-block;
}

.headlinetitle a:hover {
    background-color: rgba(10, 144, 35, 1);
    color: #fff;
}


/*首页-新闻资讯*/
.homelist .imges img {
    border: 8px solid #f4f3f3;
}

.homelist .newswords li .left {
    padding-left: 0;
}

.homelist .newswords li .title {
    padding-right: 0;
}

/*首页-关于我们*/
.right-text {
    position: absolute;
    right: 0;
    writing-mode: vertical-lr;
    max-height: 290px;
    border-top: 3px solid #0a9023;
    border-bottom: 3px solid #0a9023;
    height: 300px;
}

.right-text a {
    width: 100%;
    height: 100%;
    text-align: center;
    display: block;
    line-height: 3;
    color: rgba(10, 144, 35, 1);
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: bold;
}

.container {
    position: relative;
}


/*左侧文字*/
@media (min-width:1000px) {

    /*pc端*/
    .title-line {
        text-align: center;
    }

    .title-line .title {
        letter-spacing: 14px;
        color: rgb(10, 144, 35);
    }

    .title-line .message h4 {
        font-family: 微软雅黑;
        font-size: 36px;
        color: rgb(10, 144, 35);
        line-height: 4;
    }

    .title-line .message .img {
        float: left;
        border: 7px solid rgb(228, 230, 229);
    }

    .title-line .message .text h4 {
        line-height: 1.5;
    }

    .title-line .message .text p {
        font-family: 微软雅黑;
        font-size: 16px;
        color: rgb(123, 123, 123);
    }

    .title-line .message .text {
        border-right: 7px solid #e4e6e5;
        padding: 20px 0;
    }
}

@media(max-width:1000px) {

    /*手机端*/
    .title-line {
        text-align: center;
        position: relative;
    }

    .title-line .title {
        letter-spacing: 2px;
        color: rgb(10, 144, 35);
        line-height: 2;
    }

    .title-line .message h4 {
        font-family: 微软雅黑;
        font-size: 20px;
        color: rgb(10, 144, 35);
        line-height: 2.8;
    }

    .title-line .message .img {
        float: left;
        border: 7px solid rgb(228, 230, 229);
        width: 100%;
    }

    .title-line .message .img img {
        width: 100%;
    }

    .title-line .message .text p {
        font-family: 微软雅黑;
    }

    .title-line .message .text h4 {
        line-height: 1.5;
        font-size: 16px;
        color: rgb(123, 123, 123);
    }

    .title-line .message .text {
        width: 100%;
        text-align: center;
        font-size: 16px;
        color: rgb(123, 123, 123);
        line-height: 1.5;
    }
}


@media(max-width:1000px) and (min-width:415px) {

    /*ipad端*/
    .title-line .message .text {
        top: 25%;
    }

    .title-line .title {
        letter-spacing: 12px;
        color: rgb(10, 144, 35);
    }

    .text-img {
        text-align: center;
    }
}

@media(max-width:415px) {

    /*手机端*/
    .title-line .message h4 {
        line-height: 3;
    }

    .title-line .message .text {
        line-height: 3;
    }
}


/*栏目标题*/
.subColumnTitle {}

.subColumnTitle h3 {
    float: left;
}

.subColumnTitle div {
    margin-top: 15px;
    text-transform: uppercase;
    margin-left: 10px;
    float: left;
    font-size: 12px;
    color: #999999;
}

/*品牌简介*/
.subColumnPpjj {
    font-size: 18px;
    color: #c79127;
    margin: 20px 0px;
}

.subColumnPpmx p {
    line-height: 30px;
    color: #999999;
}

.subColumnPpHx {
    width: 100%;
    height: 7px;
    margin-top: 15px;
    margin-bottom: 5px;
    background: url(../image/xgray_line06.png);
}

/*分页-产品中心*/
.product-box .row .item {
    text-align: center;
    padding-bottom: 20px;
}

.product-box .row .item .border-box {
    border: 1px solid rgb(238, 238, 238);
}

.product-box .row .item .border-box:hover {
    border-color: #c79127;
    box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.06);
}

.product-box .row .item .border-box a {
    position: relative;
}

/* .product-box .row .item .border-box a:hover .productBg{bottom:0px;} */
.product-box .productBg {
    background: rgba(199, 145, 39, .8) url(../image/k40w.png) no-repeat center center;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    bottom: -100%;
    transition: bottom .3s ease-in;
}

.font-size-13 {
    font-size: 13px !important;
}

.text-red {
    color: #b40013;
}

@media (min-width:1000px) {
    .product-box .row .item .border-box {
        padding: 20px;
    }

    .product-box .row .item .border-box .title {
        text-align: center;
    }

    .product-box .row .item .border-box .title a {
        font-size: 16px;
    }
}

@media (max-width:1000px) {
    .product-box {
        padding-top: 20px;
    }

    .product-box .row .item {
        padding-left: 5px;
        padding-right: 5px;
    }

    .product-box .row .item .border-box {
        padding: 10px;
    }

    .product-box .row .item .border-box .title a {
        font-weight: bold;
    }
}


.sub-list {
    border: 1px rgb(234, 234, 234) solid;
    min-height: 100px;
}

.sub-detail {
    border: 1px #c79127 solid;
}

/*体验中心*/
.tyzx-jj {
    background: url(../image/ep23.jpg) no-repeat center center;
    min-height: 421px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.tyzx-jj h3 {
    margin-bottom: 10px;
}

.tyzx-jj .tyzx-ljyy {
    width: 150px;
    line-height: 50px;
    display: block;
    background: rgba(199, 145, 39, 1);
    margin: 0px auto;
    color: #fff;
    margin-top: 40px;
}

.tyzx-nc {
    width: 100%;
    margin: 0px auto;
    max-width: 300px;
    text-align: center;
}


.tyzx-jtyw {}

.tyzx-jtyw>li {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
}

.tyzx-jtyw>li>img {
    width: auto;
    height: 41px;
    margin-right: 8px;
}

.tyzx-jtyw>li>div {
    flex: auto;
}

.tyzx-jtyw>li>div .p2 {
    color: rgb(153, 153, 153);
}

.tyzx-list>li>h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tyzx-list>li>div {
    white-space: pre;
    font-size: 12px;
    line-height: 25px;
    overflow: hidden;
}

/*底部*/
footer {
    margin-top: 80px;
}

.bg-gray {
    background: #eeeeee;
    padding: 15px 0px;
}

.footer-ul1>li {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
}

.footer-ul1>li>img {
    width: 80px;
    height: 80px;
}

.footer-ul1>li>div {
    flex: auto;
    margin-left: 10px;
}

.footer-ul1>li>div>h5 {
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 5px;
}

.footer-ul1>li>div>p {
    color: rgb(153, 153, 153);
    line-height: 22px;
    font-size: 12px;
}

.bg-black {
    background: rgb(32, 32, 32);
}


/*较新产品系列*/
.index-product {
    margin: auto;
    text-align: center;
    overflow: hidden;
}

.index-product .indexTitle {
    font-family: 微软雅黑;
    color: rgb(51, 51, 51);
    line-height: 190%;
}

.index-product .title {
    color: rgb(153, 153, 153);
    /*text-transform: uppercase;*/
    line-height: 140%;
}

.index-product .index-home {
    padding-top: 40px;
    overflow: hidden;
}

.index-product .index-home .item-back {
    background: #f4f5f7;
    padding: 25px;
}

.index-product .index-home .item-back .item-text {
    margin: 20px 0px 0px 0px;
    width: 100%;
    padding: 0px 20px;
}

.index-product .index-home .item-back .item-text p {
    font-family: 微软雅黑;
    font-size: 18px;
    color: rgb(51, 51, 51);
    margin-bottom: 10px;
}

.index-product .index-home .item-back .item-text span {
    font-family: 微软雅黑;
    color: rgb(153, 153, 153);
    line-height: 200%;
    font-size: 12px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-product .index-home .item-back:hover {
    background: rgb(244, 233, 212);
}


/*较新动态*/
.index-trends {
    width: 100%;
    margin: 30px 0px;
}

.index-trends {
    overflow: hidden;
}

.index-trends .sub-nav ul {
    overflow: hidden;
    display: table;
    margin: auto;
}

.index-trends .sub-nav ul li {
    background: url(../image/g6lc.png) no-repeat;
}

.index-trends .sub-nav>ul>li {
    text-align: center;
    line-height: 50px;
    float: left;
    width: 120px;
    margin: 0px 5px;
}

.index-trends .sub-nav>ul>li a {
    width: 100%;
    display: block;
    line-height: 2.9;
    color: white;
    font-size: 14px;
}

.index-trends .sub-nav>ul>li.active {
    background: url(../image/uk3c.png) no-repeat;
}

.index-trends .sub-nav>ul>li.active a {
    color: white;
    background-color: transparent;
}

/*较新动态 tab*/
.columnlink .card1 {
    text-align: left;
    display: block;
    font-family: Microsoft YaHei;
    font-size: 11px;
    color: #929292;
    font-weight: normal;
    text-decoration: none;
    line-height: 2;
}

.images-pro li .accounts {
    display: inline-block;
    font-size: 12px;
    line-height: 22px !important;
    color: #999999;
    font-weight: normal;
    text-decoration: none;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: left;
}

.images-pro li .title a:hover {
    color: #c79127;
}

.index-product .trends-button {
    border-color: rgba(102, 102, 102, 1);
    margin: 0px auto;
    margin-top: 50px;
}

.index-product .trends-button a {
    color: rgba(102, 102, 102, 1);
}

.index-product .trends-button:hover {
    border-color: rgba(199, 145, 39, 1);
    background-color: rgba(199, 145, 39, 1);
}

.index-product .trends-button:hover a {
    color: rgba(255, 255, 255, 1);
}

/*鼠标触发下拉遮罩样式*/
.div-img {
    position: relative;
}

.div-img img {
    display: block;
    width: 100%;
}

.div-img .mask i {
    width: 40px;
    height: 40px;
    background: url(../image/k40w.png) no-repeat;
}

.div-img .mask {
    width: 100%;
    height: 0;
    background: rgba(199, 145, 39, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s linear;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-img:hover .mask {
    height: 100%;
}

.div-img .mask .fa {
    font-size: 36px;
    color: #fff;
}


@media(min-width: 1000px) {

    /*pc*/
    /*较新产品系列*/
    .index-product {
        padding: 80px 0px;
    }

    .index-product .index-home .item-back .item-text div:hover {
        border-color: rgba(199, 145, 39, 1);
        background-color: rgba(199, 145, 39, 1);
    }

    .index-product .index-home .item-back .item-text div:hover a {
        color: rgba(255, 255, 255, 1);
    }

    .index-product .indexTitle {
        font-size: 24px;
    }

    .index-product .index-home .item-back .item-text div a {
        width: 100%;
        display: block;
        line-height: 2.5;
        transition: color 0.4s ease 0s;
        color: rgba(102, 102, 102, 1);
    }

    .index-product .index-home .item-back .item-text div {
        margin: auto;
        padding: 0px;
        border-color: transparent;
        border-width: 0px;
        overflow: hidden;
        width: 140px;
        height: 35px;
        border-style: solid;
        border: 1px solid rgba(102, 102, 102, 1);
        border-radius: 50px 50px 50px 50px;
        margin-top: 15px;
        transition: color 0.4s ease 0s;
    }

    /*较新动态*/
    .index-product.trends {
        padding-bottom: 30px;
    }

    .images-pro li .titlebox {
        margin: 5px;
    }

    .images-pro li .title {
        font-family: Microsoft YaHei;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        line-height: 140%;
        text-align: left;
    }

    .images-pro li .title a {
        color: #5A5A5A;
    }

    .images-pro li {
        margin-top: 20px;
    }

    .images-pro {
        text-align: center;
    }

    .images-pro li .columnlink a {
        color: #35c5af;
        font-size: 12px;
    }

    .images-pro li .price {
        color: #acacac;
        font-size: 12px;
    }

    .images-pro li .price span {
        color: #fe4b14;
        padding-left: 4px;
    }

    .index-trends .sub-nav ul {
        background: #fff;
    }

    .index-trends .sub-nav>ul>li a {
        padding: 0px 0px;
        border-bottom: 0px;
    }

    /*定制服务*/
    .custom-home .index-home .item-one .item-back1 {
        height: 472px;
    }

    .custom-home .index-home .item-one .item-back1 .item-text .title {
        font-size: 24px;
    }

    .custom-home .index-home .item-one .item-back1 .item-text p {
        font-size: 24px;
    }

    .custom-home .index-home .item-one .item-back1 .item-text {
        padding-top: 50px;
    }

}

@media (max-width:1000px) {

    /*ipone| ipad*/
    body {
        color: #5a5a5a;
    }

    /*较新产品系列*/

    .images-pro li {
        margin-top: 16px;
    }

    .index-product .indexTitle {
        font-size: 16px;
        font-weight: bold;
    }

    .index-product {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .index-product .index-home .item-one {
        margin-bottom: 10px;
    }

    .index-product .index-home .item-back .item-text p {
        font-size: 16px;
    }

    .index-product .index-home .item-back .item-text div {
        width: 120px;
        height: 40px;
        margin: auto;
        margin-top: 20px;
        background: rgba(199, 145, 39, 1);
        border-radius: 3px 3px 3px 3px;
    }

    .index-product .index-home .item-back .item-text div a {
        color: white;
        line-height: 3.5;
        font-size: 12px;
    }

    .index-trends .sub-nav {
        background: transparent;
    }

    .index-trends .sub-nav>ul>li a {
        border: 0px;
        padding-left: 0px;
    }

    /*按钮*/
    .button-read a {
        color: white;
        line-height: 3.5;
        font-size: 12px;
    }

    /*定制服务*/
    .custom-home .index-home .item-one .item-back1 {
        height: 320px;
        overflow: hidden;
        margin-bottom: 10px;
        background-position: 0px -84px;
    }

    .custom-home .index-home .item-one .item-back1 .item-text {
        padding-top: 20px;
    }

    .custom-home .index-home .item-one .item-back1 .item-text span {
        font-size: 12px;
    }

    .custom-home .index-home .item-one .item-back1 .item-text .title {
        font-size: 16px;
    }

    .custom-home .index-home .item-one .item-back1 .item-text p {
        font-size: 16px;
    }
}

/*定制服务*/
.custom-home .index-home .item-one .item-back1 .item-text {
    text-align: center;
}

.custom-home .index-home .item-one .item-back1 .item-text .title {
    font-family: 微软雅黑;
    color: rgb(32, 32, 32);
    line-height: 140%;
}

.custom-home .index-home .item-one .item-back1 .item-text p {
    color: rgb(199, 145, 39);
    line-height: 2;
    font-family: 微软雅黑;
}

.custom-home .index-home .item-one .item-back1 .item-text span {
    color: rgb(153, 153, 153);
    line-height: 2;
    font-family: 微软雅黑;
}


/*品牌简介*/
.home-ppjj {
    background: #c79127 url(../image/8jmz.jpg) no-repeat center center;
    max-height: 522px;
    overflow: hidden;
}

.synopsis-header {
    padding-right: 30px;
    color: #fff;
}

.synopsis-title {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 80px;
}

.synopsis-button {
    margin-top: 55px;
    margin-bottom: 96px;
}

.button-read {
    border-color: transparent;
    border-width: 0px;
    overflow: hidden;
    width: 140px;
    height: 35px;
    border-style: solid;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50px 50px 50px 50px;
    transition: color 0.4s ease 0s;
}

.button-read a {
    text-align: center;
    width: 100%;
    display: block;
    line-height: 2.5;
    transition: color 0.4s ease 0s;
    color: rgba(255, 255, 255, 1);
}

.button-read:hover {
    border-color: rgba(199, 145, 39, 1);
    background-color: rgba(255, 255, 255, 1);
}

.button-read:hover a {
    color: rgba(199, 145, 39, 1);
}

@media (max-width:768px) {
    .home-ppjj {
        background: #c79127;
        max-height: initial;
        overflow: hidden;
    }

    .synopsis-title {
        margin-top: 30px;
    }

    .synopsis-button {
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

/*体验中心*/
.home-experience {
    background: #eeeeee url(../image/cj6i.jpg) no-repeat center center;
    max-height: 522px;
    overflow: hidden;
}

.experience-header .experience-title {
    font-size: 24px;
}

.experience-header .experience-title p {
    color: rgb(102, 102, 102);
}

.experience-header .experience-title span {
    display: block;
    padding: 15px 0px;
}

.experience-header {
    padding-left: 35px;
}

.experience-header {
    margin: auto;
    float: none;
    margin-top: 80px;
}

.experience-header .experience-button {
    border-color: rgb(102, 102, 102);
    margin-top: 77px;
    margin-bottom: 126px;
}

.experience-header .experience-button a {
    color: rgb(102, 102, 102);
}

.experience-header .experience-button:hover {
    border-color: rgb(199, 145, 39);
    background: rgb(199, 145, 39);
}

.experience-header .experience-button:hover a {
    color: #fff;
}

.experience-body {
    line-height: 25px;
    color: #999;
}

@media (max-width:768px) {
    .experience-header {
        margin-top: 30px;
        padding-left: 0px;
    }

    .home-experience {
        background: #eeeeee;
        max-height: initial;
        overflow: hidden;
    }

    .experience-header .experience-button {
        margin-top: 30px;
        margin-bottom: 50px;
    }
}


/* banner图片 */
.banners {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pics_wrap .font-box {
    position: absolute;
    left: 0px;
    top: 0px;
    color: #fff;
    width: 100%;
    height: 100%;
}

.pics_wrap .font-box .container {

    height: 100%;
}

.pics_wrap .font-box .inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.pics_wrap .font-box .inner>div {
    text-align: left;
    max-width: 600px;
}

.pics_wrap .font-box .font1 .p1 {
    font-size: 20px;
    color: rgb(32, 32, 32);
}

.pics_wrap .font-box .font1 .p2 {
    font-size: 36px;
    color: rgb(199, 145, 39);
    line-height: 45px;
    font-weight: bold;
    margin: 8px 0px;
}

.pics_wrap .font-box .font1 .p3 {
    text-transform: uppercase;
    color: #5a5a5a;
    font-size: 10px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pics_wrap .font-box .font1 .p4 {
    margin-top: 30px;
}

.pics_wrap .font-box .font1 .p4 a {
    background: url(static/image/jiantou.png) no-repeat center right;
    padding-right: 43px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}

.pics_wrap .font-box .font1 .p4 a:hover {
    background: url(static/image/arrow.png) no-repeat center right;
}

@media(max-width:667px) {
    .pics_wrap .font-box .font1 .p1 {
        font-size: 18px;
    }

    .pics_wrap .font-box .font1 .p2 {
        font-size: 22px;
        line-height: 30px;
        margin: 6px 0px;
    }

    .pics_wrap .font-box .font1 .p4 {
        margin-top: 15px;
    }
}

/* 网点查询 */
.branch-section {
    background-color: #222;
    color: #fff;
    margin-top: 30px;
    padding: 30px 0px;
}

.branch-search {
    background-color: #fff;
    padding: 30px;
    border-radius: 0;
    margin-bottom: 40px;
}

.branch-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.branch-card {
    background-color: #333;
    padding: 20px;
    border-left: 3px solid #D4AF37;
}

.branch-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #D4AF37;
}

.btn-custom {
    background-color: #D4AF37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #b89628;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-select {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 1px solid #dee2e6;
}

select {
    word-wrap: normal;
}

/* 服务优势 */
.advantage-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-card i {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.text-center {
    margin-bottom: 20px;
}

/* 底部css */
.footer-site {
    text-align: center;
}

.footer-site ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer-site li {
    width: 117px;
    line-height: 60px;
}

.footer-site li a {
    color: #fff;
    font-size: 14px;
}

.footer-site li a:hover {
    color: #c79127;
}

.yjwrap {
    padding: 40px 0px 0px 0px;
    background: #fff;
}

.yjlb {
    width: 78%;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding: 0 35px;
}

.yjinfo {
    width: 100%;
    position: relative;
    margin-bottom: 6px;
}

.yjinfo img {
    width: 100%;
}

.yjinfo p {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 16px;
    color: #fff;
    line-height: 36px;
    background: rgba(171, 148, 125, 0.9);
    text-align: center;
}

.yjbd .swiper-slide span {
    display: block;
    font-size: 16px;
    color: #786f68;
    line-height: 30px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yjbd .swiper-slide {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -khtml-opacity: 0.6;
    opacity: 0.6;
}

.yjbd .swiper-slide-active {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.yjnext,
.yjprev {
    position: absolute;
    top: 50%;
    display: block;
    width: 15px;
    margin-top: -13px;
    z-index: 10;
}

.yjnext {
    right: 0;
}

.yjprev {
    left: 0;
}

.tit h3 {
    font-size: 30px;
    color: #463527;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 15px;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.tit span {
    display: block;
    width: 120px;
    height: 5px;
    background: #463527;
    margin: 0 auto;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.tit {
    margin-bottom: 45px;
}
/* 友情链接 */
.w_yqlj {
    /* border: 1px solid red; */
    margin-top: 40px;
	margin-bottom: 30px;
}

.w_yqlja {
	width: 100%;
	color: #c79127;
	padding-bottom: 12px;
	border-bottom: 1px solid #c79127    ;
	font-weight: bold;
	margin-bottom: 12px;
}

.w_yqljb {
	width: 100%;
}

.w_yqljb a {
	color: rgb(4 4 4 / 59%);
	line-height: 24px;
	padding: 0px 0.12%;
}

.w_yqljb a:nth-last-of-type(1).shuxian {
	display: none;
}


/* 维修项目 */

.flex {
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
}

.wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
}

.spjz {
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
}

.czjz {
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
}

.lao05 {
	width: 100%;
	margin: 0px auto 24px;
	background: url(../images/ls15.jpg) center top no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;
	padding: 32px 0px;
}

.lao05a {
	margin: 0px auto;
	position: relative;
}

.lao05aa {
	width: 35%;
}

.lao05aa_a {
	width: 96%;
	margin: 0px auto;
	padding: 20px 2%;
}

.lao05aa_a h3 {
	margin-bottom: 24px;
}

.lao05aa_a h3 .lao05aa_aa {
	color: rgba(221 156 82);
	margin-right: 8px;
	font-weight: bold;
	font-size: 52px;
	line-height: 52px;
}

.lao05aa_a h3 .lao05aa_ab {
	color: #060404;
	font-weight: bold;
	line-height: 30px;
	padding-top: 4px;
}

.lao05aa_a p {
	margin: 0px auto;
}

.lao05aa_a p,
.lao05aa_a p a {
	color: #060404;
	line-height: 30px;
}

.lao05aa_a p span {
	margin-bottom: 18px;
}

.lao05aa_a p a:nth-last-of-type(1) {
	margin: 0px auto;
	line-height: 36px;
}

.lao05aa_a p a:nth-last-of-type(1):hover {
	background: rgba(221 156 82);
}

.lao05aa_b {
	border-bottom: 1px solid rgba(221 156 82);
}

.lao05ab {
	width: 30%;
}

.lao05ab img {
	max-width: 80%;
	margin-bottom: 42px;
}

/*.lao05abyu{ width:100%; margin:0px auto;}
.lao05abyua{ width:180px; line-height:42px; background:rgba(31,118,84, 0.59); border-radius:8px; color:#fff; text-align:center; display:block; margin:0px auto;}
.lao05abyua:hover{ background:#6a563e;}*/
.lao05ac {
	width: 35%;
}

@media (max-width:780px) {
	.lao05 {
		background: url(../images/ls15sj.jpg) center top no-repeat;
		background-size: 100% 100%;
		background-attachment: fixed;
	}

	.lao05aa {
		width: 100%;
	}

	.lao05ab {
		width: 100%;
	}

	.lao05ab img {
		max-width: 40%;
	}

	.lao05ac {
		width: 100%;
	}

	.lao05 .pcshow {
		display: none !important;
	}

	.lao05 .sjshow {
		display: flex !important;
	}
}

@media (max-width:480px) {
	.lao05ab img {
		max-width: 60%;
	}
}

/* 服务环境 */
.wxtit01 {
	margin: 0px auto 20px;
	padding-top: 20px;
	width: 100%;
}

.wxtit01 h3,
.wxtit01 div:first-child {
	margin-bottom: 10px;
}

.wxtit01a {
	width: 108px;
	height: 8px;
	line-height: 7px;
	background: #dfc5a9;
	margin: 6px auto 12px;
}

.wxtit01b {
	width: 90%;
	line-height: 36px;
	margin: 0px auto;
	text-align: center;
	font-weight: bold;
}

.wxtit01b span {
	font-weight: bold;
}

.wxtit01c {
	width: 68%;
	border: 4px solid #9e8463;
	height: 54px;
	border-radius: 12px;
}

.wxtit01ca {
	color: #9e8463;
	font-size: 24px;
}

.wxtit01d {
	width: 100%;
	margin-bottom: 24px;
	padding-top: 12px;
}

.wxtit01d a {
	text-decoration: underline;
	padding: 0px 8px 0px;
	border-right: 1px solid #fff;
	color: #fff;
	margin-bottom: 10px;
}

.wxtit01d .wxtit01d01 {
	padding: 0px 8px 0px;
	border-right: 1px solid #fff;
	color: #fff;
	margin-bottom: 10px;
}

.wxtit01d .wxtit01d01:nth-last-of-type(1) {
	border-right: none;
}

@media (max-width:640px) {
	.wxtit01b {
		line-height: 28px;
	}

	.wxtit01a {
		height: 4px;
	}

	.wxtit01c {
		width: 78%;
		height: 46px;
	}
}

@media (max-width:360px) {
	.wxtit01c {
		width: 88%;
		height: 36px;
	}
}

.huanjin_cont {
	margin: 0px auto 24px;
}

.huanjin_left {
	width: 20%;
}

.huanjin_left li {
	padding: 3px;
    margin: 5px;
	background: #bfbfbf;
	width: 45%;
	margin-bottom: 14px;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.huanjin_left li:nth-last-of-type(1),
.huanjin_left li:nth-last-of-type(2) {
	margin-bottom: 0px;
}

.huanjin_left li .bor {
	text-align: center;
	border: 1px solid #fff;
	width: 97.6%;
	height: 96px;
}

.huanjin_left li .bor span {
	font-size: 14px;
	color: #fff;
}

.huanjin_left li .bor p {
	font-size: 12px;
	color: #fff;
	padding-top: 6px;
	filter: alpha(Opacity=45);
	-moz-opacity: 0.45;
	opacity: 0.45;
}

.huanjin_left li.on {
	background: rgba(221 156 82);
}

.huanjin_left li.on .bor {
	border: 1px solid #fff;
}

.huanjin_left li.on .bor span {
	color: #fff;
}

.huanjin_left li.on .bor p {
	color: #fff;
}

.huanjin_right {
	width: 78.4%;
}

.huanjin_right ul li {
	overflow: hidden;
	width: 100%;
}

.huanjin_right ul li img {
	width: 100%;
	display: block;
}

.huanjin_right ul li:hover img {
	
	
}

@media (max-width:1200px) {
	.huanjin_left {
		width: 100%;
		margin-bottom: 14px;
	}

	.huanjin_left li:nth-last-of-type(1),
	.huanjin_left li:nth-last-of-type(2) {
		margin-bottom: 14px;
	}

	.huanjin_left li {
		width: 16.2%;
	}

	.huanjin_right {
		width: 100%;
	}
}

@media (max-width:740px) {
	.huanjin_left li {
		width: 30.3%;
	}
}


/*常见问题*/
.cjwt04 {
    margin-bottom: 24px;
    height: 32px;
    /*padding-top: 42px;*/
}

.p06 {
    width: 100%;
    color: #020414;
    line-height: 24px;
    font-weight: bold;
}

.p06 a {
    color: #020414;
    line-height: 24px;
    font-weight: normal;
}

/*网点*/

.blog-article {
    margin-bottom: 30px;
    border: none;
    padding: 15px;
    float: left;
    width: 100%;
    border: 2px solid #ebe6e6;
    border-radius: 22px;
}

.blog-article figure {
    /* float: left; */
    /* width: 100%; */
    margin: 0;
    /* margin-right: 25px; */
    margin-bottom: 10px;
}

.entry-header{
    background:none;
    box-shadow:none;
    padding-top:0;
    border:none;
}

/*.r_tit {*/
/*    width: 100%;*/
/*    padding: 0.9rem 0;*/
/*    color: #FFFFFF;*/
/*    font-size: 20px;*/
/*    text-align: center;*/
/*    background-color: #d0a17b;*/
/*}*/


img {
    max-width: 100%;
}

h2.post-title {
    font-size: 20px;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

h2.post-title a {
    display: inline;
    font-size: inherit;
}

.entry-content p{
    line-height: 30px;
    font-size: 15px;
}

/* 分页 */

.pagebar { padding:20px; overflow:hidden}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 0px 8px;
  margin: 0 2px;
  border-radius: 3px;
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}
.pagination .st{ font-family:å®‹ä½“}
.text-secondary{ text-align:center; padding:20px 0}


/*网点右侧*/
.r_tit {
            background: #222;
            color: white;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px 8px 0 0;
            position: relative;
        }
        
        .r_tit:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #D4AF37;
        }
        
        .r_list {
            background: white;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
        }
        
        .sideMenu {
            padding: 0;
        }
        
        .sideh3 {
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .sideh3 a {
            display: flex;
            padding: 15px 20px;
            color: #222;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            align-items: center;
        }
        
        .sideh3 a:hover {
            background: #f9f9f9;
            color: #D4AF37;
        }
        
        .sideh3 a i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background: #D4AF37;
            color: white;
            border-radius: 50%;
            margin-right: 12px;
            font-style: normal;
            font-weight: bold;
            font-size: 14px;
        }
        
        .sideMenuaa {
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .sideMenuaa_i {
            margin-bottom: 15px;
        }
        
        .sideMenuaa_i img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 6px;
        }
        
        .sideMenuaa_a {
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .sideMenuaa_a a {
            display: inline-block;
            color: #D4AF37;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .sideMenuaa_a a:hover {
            color: #b8962c;
            transform: translateX(3px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .list_con {
                flex-direction: column;
            }
            
            .con_left, .con_right {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .w_con {
                flex-direction: column;
            }
            
            .w_img {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
/*当前位置*/
.breadcrumb-bg{
    margin-bottom: 20px;
}

/*网点详情页*/
@media (max-width:480px) {
    .bai01a p a {
        padding: 0px 6px;
    }
}

.bai02 {
    padding: 62px 0px;
    background: #f3f3f3;
}

.bai02a {
    padding: 42px 24px;
    background: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.bai02a_a {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #d0a17b;
    width: 100%;
}

.bai02a_aa {
    width: 25%;
}

.bai02a_aa img {
    max-width: 70%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.bai02a_aa:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.bai02a_ab {
    width: 70%;
}

.bai02a_ab p,
.bai02a_ba p {
    color: #282828;
    line-height: 32px;
}

.bai02a_aba {
    padding-bottom: 8px;
}

.bai02a_b {
    width: 100%;
}

.bai02a_ba {
    width: 60%;
}

.bai02a_bb {
    width: 40%;
}

.bai02a_bb img {
    max-width: 70%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.bai02a_bb:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media (max-width:1000px) {

    .bai02a_ab p,
    .bai02a_ba p {
        line-height: 24px;
    }

    .bai02a_aa {
        width: 100%;
        margin-bottom: 24px;
    }

    .bai02a_ab {
        width: 100%;
    }

    .bai02a_ba {
        width: 100%;
    }

    .bai02a_bb {
        width: 100%;
        margin-bottom: 24px;
    }
}

@media (max-width:780px) {

    .bai02a_ab p,
    .bai02a_ba p {
        line-height: 20px;
    }

    .bai02 {
        padding: 52px 0px 32px;
    }
}

/*新闻左下侧*/
.left_t{
    margin-top: 20px;
}
.left_t h4{
    border: 3px solid #f4f5f7;
    text-align: left;
    line-height: 50px;
    font-size: 18px;
    background-color: #f4f5f7;
}
.wz{
    border: 1px solid #e1e1e1;
    /*opacity: .5;*/
}
/*.wz a i {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 26px;*/
/*    height: 26px;*/
/*    background: #D4AF37;*/
/*    color: white;*/
/*    border-radius: 50%;*/
/*    margin-right: 12px;*/
/*    font-style: normal;*/
/*    font-weight: bold;*/
/*    font-size: 14px;*/
/*}*/
.wz a i{
    background-color: #D4AF37;
    float: left;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    color: #ffffff;;
    line-height: 28px;
    margin-top: 15px;
    text-align: center;
    margin-right: 10px;
}











