@charset "utf-8";
/* CSS Document */
/**全局样式**/
* {
    margin: 0;
    padding: 0;
    font-family: 'Microsoft YaHei", "微软雅黑", "Lantinghei SC", "Open Sans", Arial, "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif';
}
html {
    font-size: 10px;
}
body {
    overflow-x: hidden;
    font-size: 2rem;
}
img, button {
    border: 0;
}
p, h1, h2, h3, h4, h5, h6, ul, ol {
    margin: 0;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
textarea {
    resize: none;
    overflow: hidden;
}
::selection {
    background: #453325;
    color: #fff;
}
/**通用样式**/
.f-l, .y-l, .s-l {
    float: left;
}
.f-r, .y-l, .s-r {
    float: right;
}
/**盒子模型**/
.m-wrap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.m-box {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.m-t, .y-t, .s-t {
    width: 100%;
}
.m-c, .y-c, .s-c {
    width: 100%;
}
.m-f, .y-f, .s-f {
    width: 100%;
}
/**效果集合**/
@keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        opacity: 0.3;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        opacity: 0.6;
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 0.9;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        opacity: 1;
        transform: scale3d(0.97, 0.97, 0.97);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
@keyframes bounceOut {
    0%, 100%, 20%, 40%, 60%, 80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
    20% {
        opacity: 1;
        transform: scale3d(0.97, 0.97, 0.97);
    }
    40% {
        opacity: 0.9;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    60% {
        opacity: 0.6;
        transform: scale3d(0.9, 0.9, 0.9);
    }
    80% {
        opacity: 0.3;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    100% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }
    75% {
        opacity: 1;
        transform: translate3d(0, 10px, 0);
    }
    90% {
        opacity: 1;
        transform: translate3d(0, -5px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }
    75% {
        opacity: 1;
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        opacity: 1;
        transform: translate3d(5px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }
    75% {
        transform: translate3d(0, 10px, 0);
        opacity: 1;
    }
    90% {
        transform: translate3d(0, -5px, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        opacity: 1;
        transform: translate3d(10px, 0, 0);
    }
    90% {
        opacity: 1;
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}
@keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }
    75% {
        opacity: 1;
        transform: translate3d(0, -10px, 0);
    }
    90% {
        opacity: 1;
        transform: translate3d(0, 5px, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    100% {
        opacity: 1;
    }
}
@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes topLoop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes leftLoop {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes rightLoop {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes bottomLoop {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes enLarge {
    0% {
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes rotateYIn {
    from {
        transform: rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: rotateY(0);
        opacity: 1;
    }
}
@keyframes slideDown {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}
.bounceIn {
    animation: bounceIn 0.8s ease;
    animation-fill-mode: forwards;
}
.bounceOut {
    animation: bounceOut 0.8s ease;
    animation-fill-mode: forwards;
}
.bounceInUp {
    animation: bounceInUp 0.8s ease;
    animation-fill-mode: forwards;
}
.bounceInLeft {
    animation: bounceInLeft 0.8s ease;
    animation-fill-mode: forwards;
}
.bounceInRight {
    animation: bounceInRight 0.8s ease;
    animation-fill-mode: forwards;
}
.bounceInDown {
    animation: bounceInDown 0.8s ease;
    animation-fill-mode: forwards;
}
.fadeInDown {
    animation: fadeInDown 0.8s ease;
    animation-fill-mode: forwards;
}
.fadeInUp {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: forwards;
}
.fadeIn {
    animation: fadeIn 1.6s ease;
    animation-fill-mode: forwards;
}
.rotateIn {
    animation: rotateIn 0.8s ease;
    animation-fill-mode: forwards;
}
.rollIn {
    animation: rollIn 0.8s ease;
    animation-fill-mode: forwards;
}
.zoomIn {
    animation: zoomIn 0.8s ease;
    animation-fill-mode: forwards;
}
.zoomOut {
    animation: zoomOut 0.8s ease;
    animation-fill-mode: forwards;
}
.zoomInd {
    animation: zoomIn 0.2s cubic-bezier(0.18, 0.74, 1, 1);
    animation-fill-mode: forwards;
}
.zoomOutd {
    animation: zoomOut 0.2s cubic-bezier(0.18, 0.74, 1, 1);
    animation-fill-mode: forwards;
}
.zoomInUp {
    animation: zoomInUp 0.8s ease;
    animation-fill-mode: forwards;
}
.slideInRight {
    animation: slideInRight 0.8s ease;
    animation-fill-mode: forwards;
}
.zoomInLeft {
    animation: zoomInLeft 0.8s ease;
    animation-fill-mode: forwards;
}
.zoomInRight {
    animation: zoomInRight 0.8s ease;
    animation-fill-mode: forwards;
}
.topLoop {
    animation: topLoop 1s ease;
    animation-fill-mode: forwards;
}
.leftLoop {
    animation: leftLoop 1s ease;
    animation-fill-mode: forwards;
}
.rightLoop {
    animation: rightLoop 1s ease;
    animation-fill-mode: forwards;
}
.bottomLoop {
    animation: bottomLoop 1s ease;
    animation-fill-mode: forwards;
}
.enLarge {
    animation: enLarge 1s ease;
    animation-fill-mode: forwards;
}
.rotateYIn {
    animation: rotateYIn 1.6s ease;
    animation-fill-mode: forwards;
}
.slideDown {
    animation: slideDown 1.6s ease;
    animation-fill-mode: forwards;
}
/**导航菜单**/
.u-nav {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 4em;
    background: #fff;
    box-sizing: border-box;
}
.u-nav .s-nav li.on:nth-child(1):before, .u-nav .s-nav li:nth-child(1):hover:before {
    background-image: url("../images/nav-green-1.png");
}
.u-nav .s-nav li.on:nth-child(2):before, .u-nav .s-nav li:nth-child(2):hover:before {
    background-image: url("../images/nav-green-2.png");
}
.u-nav .s-nav li.on:nth-child(3):before, .u-nav .s-nav li:nth-child(3):hover:before {
    background-image: url("../images/nav-green-3.png");
}
.u-nav .s-nav li.on:nth-child(4):before, .u-nav .s-nav li:nth-child(4):hover:before {
    background-image: url("../images/nav-green-4.png");
}
.u-nav .s-nav li.on:nth-child(5):before, .u-nav .s-nav li:nth-child(5):hover:before {
    background-image: url("../images/nav-green-5.png");
}
.u-nav.on .s-btn .search-btn {
    background-image: url(../images/search-black.png);
}
.u-nav.on .s-btn .nav-btn {
    background-image: url(../images/menu-black.png);
}
.u-nav.on .s-nav li {
    color: #333;
}
.u-nav .s-main {
    position: relative;
    display: flex;
    align-items: center;
    width: 80.20833333%;
    height: 100%;
    margin: 0 auto;
}
.u-nav .s-logo {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 6.8em;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.5em;
}
.u-nav .s-logo a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url(../images/logo-black.png) 0 0 no-repeat;
    background-size: 100% 100%;
    transition: all ease-out 0.3s;
}
.u-nav .s-nav {
    width: 60em;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
.u-nav .s-nav ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-nav .s-nav li {
    width: auto;
    height: auto;
    overflow: hidden;
    float: left;
    margin: 0 2.8125em;
    font-size: 1.6rem;
    line-height: 3.375em;
    color: #333;
    transition: all ease-out 0.3s;
}
.u-nav .s-nav li:before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1em;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 1em;
    vertical-align: middle;
    transition: all ease-out 0.3s;
}
.u-nav .s-nav li:nth-child(1):before {
    background-image: url("../images/nav-black-1.png");
}
.u-nav .s-nav li:nth-child(2):before {
    background-image: url("../images/nav-black-2.png");
}
.u-nav .s-nav li:nth-child(3):before {
    background-image: url("../images/nav-black-3.png");
}
.u-nav .s-nav li:nth-child(4):before {
    background-image: url("../images/nav-black-4.png");
}
.u-nav .s-nav li:nth-child(5):before {
    background-image: url("../images/nav-black-5.png");
}
.u-nav .s-nav li a {
    color: inherit;
    vertical-align: middle;
}
.u-nav .s-nav li:hover, .u-nav .s-nav li.on {
    color: #86c12b;
}
.u-nav .s-btn {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 8.1em;
    height: auto;
    box-sizing: border-box;
    padding-top: 1.4em;
}
.u-nav .s-btn .btn-box {
    position: relative;
    width: auto;
    height: auto;
    float: left;
    margin-left: 1.5em;
}
.u-nav .s-btn .search-btn, .u-nav .s-btn .nav-btn {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all ease-out 0.3s;
}

.u-nav .s-btn .en {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all ease-out 0.3s;
}


.u-nav .s-btn .search-btn {
    background-image: url(../images/search-black.png);
}

.u-nav .s-btn .en {
    background-image: url(..//images/demodefault_en.png);
}

.u-nav .s-btn .nav-btn {
    background-image: url(../images/menu-black.png);
}
.u-nav .s-btn .s-search {
    position: absolute;
    z-index: 1;
    top: 2.25em;
    left: -13em;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20%);
    transition: all ease-out 0.3s;
}
.u-nav .s-btn .s-search.on {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.u-nav .s-btn .s-search .s-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 15em;
    height: 2em;
    background: #eee;
    box-sizing: border-box;
    border-radius: 1em;
    line-height: 2em;
}
.u-nav .s-btn .s-search .s-box form {
    display: flex;
    justify-content: space-between;
}
.u-nav .s-btn .s-search .s-box:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -0.65em;
    right: 1em;
    width: 0.85em;
    height: 0.65em;
    overflow: hidden;
    background: url(../images/triangle.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.u-nav .s-btn .s-search input, .u-nav .s-btn .s-search button {
    display: inline-block;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    box-sizing: border-box;
    border: 0;
    outline: 0;
}
.u-nav .s-btn .s-search input {
    width: 17.85714286em;
    box-sizing: border-box;
    padding: 0 1.42857143em;
    font-size: 1.4rem;
    border-radius: 1.42857143em;
}
.u-nav .s-btn .s-search button {
    width: 3.5em;
    background: url(../images/enter.png) center center no-repeat;
    background-size: 1em 1em;
}
.u-nav .s-btn .sub-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.u-nav .s-btn .sub-nav .s-min {
    position: relative;
    width: 68.33333333%;
    height: 100%;
    overflow: hidden;
    float: right;
    background: url(../images/nav-bg.png) 0 0 no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding-top: 12.75em;
    padding-left: 19.01041667%;
    visibility: hidden;
    transform: translateX(100%);
    transition: all ease-out 0.5s;
}
.u-nav .s-btn .sub-nav.on {
    visibility: visible;
    opacity: 1;
}
.u-nav .s-btn .sub-nav.on .s-min {
    visibility: visible;
    transform: translateX(0);
}
.u-nav .s-btn .sub-nav .s-close {
    position: absolute;
    z-index: 1;
    top: 2em;
    right: 10%;
    width: 1.6em;
    height: 1.6em;
    overflow: hidden;
    background: url(../images/close.png) center center no-repeat;
    background-size: 100% 100%;
}
.u-nav .s-btn .sub-nav .s-center {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-nav .s-btn .sub-nav .s-center .nav-list {
    width: auto;
    height: auto;
    overflow: hidden;
    float: left;
    margin-left: 2.5em;
}
.u-nav .s-btn .sub-nav .s-center .nav-list h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 2.4rem;
    color: #fff;
}
.u-nav .s-btn .sub-nav .s-center .nav-list ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 0.75em;
    line-height: 2em;
}
.u-nav .s-btn .sub-nav .s-center .nav-list li {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
}
.u-nav .s-btn .sub-nav .s-center .nav-list li:hover {
    text-decoration: underline;
}
.u-nav .s-btn .sub-nav .s-center .nav-list li a {
    color: inherit;
}
/**分类**/
.u-classify {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
    margin-top: 4em;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    box-sizing: border-box;
    padding-bottom: 120px;
}
.u-classify .s-desc, .u-classify .s-classify {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-desc {
    text-align: center;
}
.u-classify .s-desc h2, .u-classify .s-desc h3, .u-classify .s-desc p {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-desc h2 {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}
.u-classify .s-desc h3 {
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 2px;
    color: #86c12b;
    -webkit-text-stroke: 0.5px #fff;
}
.u-classify .s-desc p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
    color: #fff;
}
.u-classify .s-desc span {
    display: inline-block;
    width: 45px;
    height: 2px;
    overflow: hidden;
    background: #fff;
}
.u-classify .s-classify {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 1600px;
    height: 120px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    margin-left: -800px;
}
.u-classify .s-classify .s-main {
    width: 1200px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.u-classify .s-classify .s-main .s-crumbs, .u-classify .s-classify .s-main .s-nav {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-classify .s-main .s-crumbs {
    font-size: 16px;
    color: #999;
    line-height: 50px;
}
.u-classify .s-classify .s-main .s-crumbs i, .u-classify .s-classify .s-main .s-crumbs a, .u-classify .s-classify .s-main .s-crumbs small {
    display: inline-block;
    vertical-align: middle;
    color: #999;
}
.u-classify .s-classify .s-main .s-crumbs i {
    width: 24px;
    height: 24px;
    overflow: hidden;
    background: url(../images/home.png) center center no-repeat;
}
.u-classify .s-classify .s-main .s-nav {
    margin-top: 10px;
}
.u-classify .s-classify .s-main .s-nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-classify .s-main .s-nav li {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    overflow: hidden;
    font-size: 20px;
    color: #333;
    text-align: center;
}
.u-classify .s-classify .s-main .s-nav li img {
    vertical-align: middle;
    margin-right: 8px;
}
.u-classify .s-classify .s-main .s-nav li.on {
    font-weight: bold;
}
.u-classify .s-classify .s-main .s-nav li.on:after, .u-classify .s-classify .s-main .s-nav li:hover:after {
    background: #86c12b;
    font-weight: bold;
}
.u-classify .s-classify .s-main .s-nav li:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
    background: transparent;
}
.u-classify .s-classify .s-main .s-nav li:last-child a {
    border-right-color: transparent;
}
.u-classify .s-classify .s-main .s-nav li a {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-right: 1px solid #333;
    color: inherit;
}
/**底部**/
.u-footer {
    display: flex;
    align-items: center;
    height: 220px;
    overflow: hidden;
    background: #272a2e;
}
.u-footer .m-box {
    display: flex;
    justify-content: space-between;
}
.u-footer .s-info, .u-footer .s-qrcode {
    width: auto;
    height: auto;
    overflow: hidden;
    padding: 10px;
}
.u-footer .s-info p, .u-footer .s-qrcode p {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    color: #aeadad;
    line-height: 2;
    letter-spacing: 1px;
}
.u-footer .s-info p a, .u-footer .s-qrcode p a {
    color: inherit;
}
.u-footer .s-info img, .u-footer .s-qrcode img {
    display: block;
    width: 100px;
    height: auto;
}
.u-footer .s-qrcode p {
    margin-top: 8px;
    text-align: center;
}
/*统一内页*/
.m_nei {
    width: 100%;
    margin: 0 auto;
    background: #f5f5f5;
    margin-top: 6.5em;
    overflow: hidden;
}
.m_nei_c {
    background: #fff;
    margin-top: 60px;
}
.m_nei_c1 {
    width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
}
.m_nei_t {
    font-size: 16px;
    color: #606060;
    line-height: 50px;
}
.m_nei_t a {
    color: #606060;
}
.m_nei_c1 h1 {
    font-size: 24px;
    color: #333;
    width: 100%;
    line-height: 80px;
    border-bottom: 1px solid #333;
}
.nei_con {
    font-size: 14px;
    color: #4b4b4b;
    margin: 20px 0;
    line-height: 30px;
}
.nei_con img {
    width: 100%;
    margin: 10px 0;
}
.nsx {
    width: 100%;
    border-bottom: 1px solid #333;
    margin: 50px 0;
    padding-bottom: 50px;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}
.nsx a {
    display: block;
    width: 170px;
    height: 53px;
    background: #e1e1e1;
    border-radius: 5px;
    font-size: 18px;
    color: #2e2e2e;
    line-height: 53px;
    text-align: center;
}
.nsx a:hover {
    background: #83bd2b;
    color: #fff;
}
.n_list {
    width: 1200px;
    overflow: hidden;
    margin: 0 auto 50px;
}
.n_list ul {
    display: flex;
    justify-content: space-around;
}
.n_list ul li {
    width: 40%;
    overflow: hidden;
}
.n_list ul li img {
    width: 100%;
    transition: all 2s;
}
.n_list ul li:hover img {
    transform: scale(1.1)
}
.n_list ul li span {
    line-height: 30px;
    color: #666;
    font-size: 16px;
}
.n_list ul li h1 {
    font-size: 20px;
    color: #606060;
    line-height: 50px;
    font-weight: normal;
}
.n_list ul li:hover h1 {
    color: #83bd2b
}
/*产品内页*/
.m_product {
    width: 90%;
    padding: 0 5%;
    display: flex;
    justify-content: space-around;
}
.n_pic {
    width: 45%;
    margin: 50px 0;
}
/* 焦点图效果 */
.picBtnTop {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    zoom: 1;
}
.picBtnTop .hd {
    width: 115px;
    top: 0;
    padding-top: 50px;
    height: 300px;
    position: absolute;
    left: 5px;
}
.picBtnTop .hd ul li {
    width: 95px;
    text-align: center;
    padding: 0 0 5px 5px;
}
.picBtnTop .hd ul li img {
    width: 100%;
    height: 80px;
    border: 2px solid #ddd;
    cursor: pointer;
    vertical-align: bottom;
}
.picBtnTop .hd ul li.on img {
    border-color: #87c12e;
}
.picBtnTop .bd {
    width: 360px;
    height: 400px;
    margin-left: 32%;
    position: relative;
}
.picBtnTop .bd li {
    position: relative;
    zoom: 1;
    width: 100%;
    vertical-align: middle;
    height: 400px;
}
.picBtnTop .bd li .pic {
    position: relative;
    z-index: 0;
    width: 100%;
}
.picBtnTop .bd li .pic img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
.hd .tempWrap {
    height: 266px !important
}
#demo1, #demo2 {
    margin-bottom: 20px;
}
/* 下面是前/后按钮代码，如果不需要删除即可 */
.picBtnTop .arrow {}
.picBtnTop .arrow a {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -26px;
    width: 54px;
    height: 32px;
    float: right;
    margin-right: 5px;
    margin-top: 0;
    overflow: hidden;
    cursor: pointer;
}
.picBtnTop .arrow .next {
    background: url("../images/p_top_03.png") 0 0 no-repeat;
    top: -0;
}
.picBtnTop .arrow .prev {
    background: url("../images/p_b_03.png") 0 0 no-repeat;
    bottom: -10px
}
.n_txt {
    width: 30%;
    background: #fff;
    overflow: hidden;
    padding: 30px 3%;
    margin: 50px 0;
    color: #2e2e2e;
}
.n_txt h1 {
    font-size: 30px;
    color: #2e2e2e;
    font-weight: normal;
    line-height: 50px;
}
.n_txt p {
    font-size: 16px;
    line-height: 32px;
}
.n_txt span {
    width: 80px;
    height: 1px;
    display: block;
    margin: 15px 0;
    background: #2e2e2e;
}
.n_txt ul {
    margin-top: 15px;
}
.n_txt li {
    font-size: 16px;
    line-height: 30px;
    float: left;
}
.n_txt li:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #333;
    float: left;
    border-radius: 50%;
    margin: 12px 5px;
}
.p_tit {
    background: #2e2e2e;
    height: 100px;
    width: 100%;
    line-height: 100px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}
.p_xp {
    color: #2e2e2e;
    height: 60px;
    text-align: center;
    margin: 15px auto;
}
.p_xp h1 {
    border-bottom: 2px solid #87c12e;
    line-height: 60px;
    width: 120px;
    font-size: 30px;
}
.tuij {
    overflow: hidden;
    margin: 30px auto;
}
.tuij ul {
    display: flex;
    justify-content: space-around;
}
.tuij ul li {
    width: 30%;
    overflow: hidden;
    position: relative;
}
.tuij ul li img {
    width: 100%;
    transition: all 2s;
    background: white;
}
.tuij ul li:hover img {
    transform: scale(1.1)
}
.tuij ul li p {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #2e2e2e;
    font-weight: bold;
    font-size: 24px;
}
.tuij ul li:hover p {
    color: #83bd2b
}
.ditu {
    width: 100%;
    height: 400px;
    background: #000;
}
.m_lx {
    position: relative;
    z-index: 999;
    background: #e2e2e2;
}
.n_lx {
    position: relative;
    height: 600px;
    width:
        1000px;
    margin: 0 auto;
}
.lianxi {
    background: #ffffff;
    position: absolute;
    left: 0;
    top: -175px;
    height: 615px;
    padding: 45px 80px;
    padding-bottom: 75px;
    width: 55%;
    line-height: 40px;
    box-sizing: border-box;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
    z-index: 9;
}
.lianxi img {
    width: 50%;
    display: block;
    margin: 0 auto;
}
.lianxi p {
    font-size: 14px;
}
.form1 {
    position: absolute;
    right: 0;
    background: #83bd2b;
    color: #fff;
    height: 635px;
    margin-top: -85px;
    padding: 32px 40px;
    width: 47%;
    padding-top: 38px;
    line-height: 1;
    z-index: 10;
    text-indent: 2em;
    box-sizing: border-box;
}
.form1 .name, .form1 .yz, .form1 .phone {
    position: relative;
}
.form1 .name:after {
    content: '*';
    color: orange;
    position: absolute;
    left: -26px;
    top: 25px;
    font-size: 1em;
}
.form1 .yz:after {
    content: '*';
    color: orange;
    position: absolute;
    left: -26px;
    top: 410px;
    font-size: 1em;
}
.form1 .phone:after {
    content: '*';
    color: orange;
    position: absolute;
    left: -26px;
    top: 145px;
    font-size: 1em;
}
.form1 [type="text"] {
    width: 90%;
    height: 40px;
    margin: 10px;
    float: left;
    text-indent: 1em;
}
.form1 textarea {
    width: 90%;
    margin: 10px;
    float: left;
    text-indent: 1em;
}
.form1 [type="submit"] {
    width: 30%;
    height: 40px;
    margin: 10px auto;
    display: block
}
.form1 p {
    font-size: 40px;
    text-align: right;
}
.form1 p span {
    font-size: 16px;
}
/*map*/
.s-map {
    height: 300px;
    overflow: hidden;
    margin-top: 130px;
    background: #000;
}
.s-map .info {
    box-sizing: border-box;
    padding: 20px 0;
    font-size: 16px;
}
.s-map .info-middle {
    font-size: 14px;
}
/**网站地图**/
.u-webmap {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 130px;
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 50px;
}
.u-webmap .m-t, .u-webmap .m-c {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-webmap .m-t h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 24px;
    font-weight: normal;
    color: #333;
}
.u-webmap .m-t a {
    color: inherit;
}
.u-webmap .m-c {
    margin-top: 20px;
}
.u-webmap .m-c .nav-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(229, 229, 229, 0.6);
    padding: 20px 0;
}
.u-webmap .m-c .nav-item h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 18px;
    font-weight: normal;
    color: #666;
}
.u-webmap .m-c .nav-item a {
    color: inherit;
}
.u-webmap .m-c .nav-item .sub-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 10px;
}
.u-webmap .m-c .nav-item .sub-item li {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    float: left;
    margin-right: 60px;
    box-sizing: border-box;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1;
    color: #999;
    transition: all ease-out 0.3s;
}
.u-webmap .m-c .nav-item .sub-item li:hover {
    color: #86c12b;
}
.u-webmap .m-c .nav-item .sub-item li:last-child {
    margin-right: 0;
}
.u-webmap .m-c .nav-item .sub-item a {
    color: inherit;
}