@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Microsoft YaHei', arial, sans-serif;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
    
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: 16px 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

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

a:hover {
    color: #005028;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: 1370px;
    margin-left: auto;
    margin-right: auto;
	max-width: 80.375vw;
}

@media (max-width:1400px) {
    .container {
        width: 1200px;
    }
}

@media (max-width:1199px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.header {
    background-color: #005028;
    width: 100%;
    position: sticky;
    z-index: 999;
    top: 0px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header .logo {

}

.header .logo img {
    height: 50px;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav li>a {
    line-height: 25px;
    padding: 35px 23px;
    color: #FFF;
   font-size: 1.1rem;
}

.nav .drop {
    left: -15px;
    right: -15px;
    top: 95px;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    padding: 10px;
    line-height: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    font-size: 15px;
    white-space: nowrap;
}

.nav .drop::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -12px;
    width: 0;
    height: 0;
    border-left: 12px transparent solid;
    border-right: 12px transparent solid;
    border-bottom: 12px #FFF solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.nav .drop a {
    border-bottom: 1px #e0e0e0 solid;
}

.nav .drop a:last-child {
    border-bottom: 0;
}

.banner {
    overflow: hidden;
}

.banner 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);
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
    width: 100%;
}

.banner .swiper-slide {
    overflow: hidden;
}

.banner .swiper-slide-active img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.banner .video {
    height: 100% !important;
    width: 100% !important;
}

.banner .video img {
    opacity: 0;
}

.banner .swiper-pagination-bullet {
    background-color: #FFF;
    width: 14px;
    height: 14px;
}

.copyright {
    background-color: #005028;
    color: rgba(255, 255, 255, .7);
    padding: 20px;
}

.copyright a {
    color: rgba(255, 255, 255, .7);
}

.copyright .text {
    font-size: 14px;
}

.copyright .text a {
    margin-left: 10px;
}

.copyright .link {
    font-size: 15px;
    margin-top: 15px;
}

.copyright .link a {
    margin: 0 5px;
}

.copyright .link a img {
    margin-right: 5px;
}

.footer {
    background: url(../images/f-bg.jpg)no-repeat center;
    background-size: cover;
    padding: 60px 0;
}

.footer ul {
    margin-right: 100px;
}

.footer li .tit {
    font-weight: bold;
}

.footer li .sub {
    font-size: 14px;
    margin-top: 10px;
}

.footer li .sub a {
    line-height: 32px;
}

.footer .erwma {
    width: 125px;
    margin-right: 10px;
}

.footer .erwma:last-child {
    margin-right: 0;
}

.footer .erwma .pic {
    width: 100%;
    height: 125px;
    background-color: #FFF;
    padding: 5px;
}

.footer .erwma .pic img {
    width: 100%;
}

.footer .erwma .text {
    font-size: 14px;
    margin-top: 10px;
}

.footer .tel {
    background: url(../images/tel.png)no-repeat left center;
    padding-left: 35px;
    margin-top: 30px;
}

.footer .tel span {
    font-weight: bold;
    color: #005028;
    font-size: 28px;
}

.quick {
    position: fixed;
    right: 10px;
    bottom: 5%;
    width: 56px;
    display: none;
    z-index: 99;
}

.quick>div {
    margin-bottom: 5px;
    cursor: pointer;
}

.quick .item,
.quick>div span {
    position: relative;
    width: 100%;
    height: 56px;
    background-color: #005028;
    background-position: center;
    background-repeat: no-repeat;
}

.quick .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
}

.quick .item>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick .item img {
    width: 56%;
    height: 56%;
    object-fit: contain;
}

.quick .jd span {
    background-image: url(../images/jd1.svg);
    background-size: 30px;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
}

.quick .tmall span {
    background-image: url(../images/tmall1.svg);
    background-size: 32px;
}

.quick .tel span {
    background-image: url(../images/tel1.svg);
    background-size: 24px;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.quick .tel span a {
    height: 10%;
    width: 100%;
}

.quick .top {
    background: #005028 url(../images/top.svg) center no-repeat;
    background-size: 30px;
    height: 53px;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 13px;
}

.quick>div .erwma {
    position: absolute;
    width: auto;
    right: 80px;
    top: 0;
    line-height: 68px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 5px;
    background-color: #005028;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: none;
    white-space: nowrap;
    padding: 0 20px;
}

.quick>div .erwma a {
    color: #FFF;
}

.quick>div .erwma::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 10px transparent solid;
    border-bottom: 10px transparent solid;
    border-left: 10px #005028 solid;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-news {
    background-color: #f5f5f5;
    padding: 50px 4.5% 60px 4.5%;
}

.home-news .title-con .title {
    font-size: 19px;
}

.home-news .title-con .title::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #005028;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 6px;
    height: 6px;
}

.home-news .title-con .fulltext {
    font-size: 33px;
    margin-top: 10px;
}

.home-news .swiper-container {
    margin-top: 70px;
}

.home-news .swiper-slide {
    overflow: hidden;
    background-color: #FFF;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.home-news .swiper-button-black {
    display: block;
    background-size: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: rgba(255, 255, 255, .7);
}

.home-news .pic {
    overflow: hidden;
    padding-top: 69%;
}

.home-news .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-news .text-con {
    padding: 40px 35px;
}

.home-news .tit {
    font-size: 20px;
    color: #62717a;
    line-height: 1.5;
    height: 66px;
}

.home-news .des {
    color: #62717a;
    opacity: .75;
    margin-top: 15px;
    line-height: 1.7;
    height: 58px;
}

.home-news .date {
    font-size: 18px;
    color: #bababb;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 15px;
}

.home-news .more {
    margin-top: 60px;
    font-size: 18px;
}

/* .home-news .swiper-button-black {
    display: none;
} */

@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.eot") format("embedded-opentype"), url("../fonts/Roboto-Regular.svg") format("svg");
}

.home-pro {
    padding-bottom: 115px;
}

.home-pro .title-con {
    margin-top: 90px;
}

.home-pro .title-con .cn {
    font-size: 25px;
    font-weight: bold;
    color: #005028;
    margin-right: 5px;
}

.home-pro .title-con .en {
    color: #999999;
}

.home-pro .title-con .more {
    font-size: 16px;
    color: #005028;
    font-weight: bold;
}

.edible-con .swiper-container {
    margin-top: 55px;
    padding-bottom: 30px;
}

.edible-con .swiper-slide {
    overflow: hidden;
}

.edible-con .swiper-pagination,
.grain .swiper-pagination {
    bottom: 0;
}

.edible-con .swiper-pagination-bullet,
.grain .swiper-pagination-bullet,
.seasoning .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border: #005028 1px solid;
    background: none;
    opacity: 1;
}

.edible-con .swiper-pagination-bullet-active,
.grain .swiper-pagination-bullet-active,
.seasoning .swiper-pagination-bullet-active {
    background-color: #005028;
}

.edible-con .text {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    z-index: 10;
    color: #FFF;
}

.edible-con .first {
    overflow: hidden;
    padding-top: 49.271%;
    margin-right: 20px;
}

.edible-con .first .text {
    line-height: 60px;
    font-size: 20px;
}

.edible-con img,
.seasoning .item img,
.grain .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
}

.edible-con .item {
    width: calc(50% - 8px);
    margin-right: 16px;
    padding-top: calc(50% - 8px);
    overflow: hidden;
    margin-bottom: 16px;
}

.edible-con .item:nth-child(even) {
    margin-right: 0;
}

.edible-con .item .text {
    line-height: 50px;
    font-size: 18px;
}

.seasoning {
    width: 60.948%;
    /* margin-right: 20px; */
    padding-right: 20px;
    flex: unset;
}

.seasoning .con {
    margin-top: 50px;
    padding-bottom: 35px;
}

.seasoning .item {
    width: calc(33.333% - 10.7px);
    margin-right: 16px;
    padding-top: calc(33.333% - 10.7px);
    margin-bottom: 20px;
    overflow: hidden;
}

.seasoning .item:nth-of-type(3n) {
    margin-right: 0;
}

.seasoning .item .text {
    font-size: 17px;
    line-height: 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    z-index: 10;
    color: #FFF;
}

.grain {
    width: 39.052%;
}

.grain .swiper-container {
    margin-top: 50px;
    padding-bottom: 45px;
}

.grain .swiper-slide {
    overflow: hidden;
    padding-top: 101.2%;
}

.grain .text {
    font-size: 17px;
    line-height: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    z-index: 10;
    color: #FFF;
}

.home-pinzhi {
    width: 100%;
    overflow: hidden;
}

.home-pinzhi img {
    width: 100%;
    transition: all 2s;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
}

.home-pinzhi .text-con {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: 0;
    background-color: rgba(255, 255, 255, .7);
    padding: 40px 50px;
}

.home-pinzhi .text-con .tit {
    font-size: 29px;
}

.home-pinzhi .text-con .text {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 30px;
}

.home-pinzhi .title-con {
    position: absolute;
    left: 0;
    width: 100%;
    color: #FFF;
    z-index: 2;
    top: 28%;
}

.home-pinzhi .title-con .title {
    font-size: 43px;
}

.home-pinzhi .title-con .en {
    text-transform: uppercase;
    font-family: "Roboto-Regular";
    font-size: 17px;
    margin-top: 10px;
}

.home-bg {
    background: url(../images/bg.jpg)no-repeat center;
    background-size: cover;
    padding-bottom: 90px;
}

.homg-leimu {
    background-color: #FFF;
    padding: 3.5%;
}

.homg-leimu .item {
    width: 24%;
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.homg-leimu .item img {
    width: 100%;
}

.homg-leimu .text {
    font-size: 34px;letter-spacing: 7px;
    color: #FFF;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 2;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

.home-about {
    margin-top: 75px;
    padding: 30px 0;
}

.home-about .pic {
    width: 50%;
    z-index: 5;
    overflow: hidden;
}

.home-about .pic img {
    width: 100%;
}

.home-about .text-con {
    padding: 70px 80px 70px 70px;
    z-index: 2;
}

.home-about .text-con::after {
    content: '';
    position: absolute;
    left: -30px;
    top: -30px;
    right: 0;
    bottom: -30px;
    background-color: #e6f7ec;
    z-index: -1;
}

.home-about .en {
    font-size: 23px;
    color: #9b9c9a;
    font-family: Arial, Helvetica, sans-serif;
}

.home-about .title {
    font-size: 29px;
    margin-top: 20px;
}

@font-face {
    font-family: "yahei-light";
    src: url("../fonts/msyhl.ttc");
}

.home-about .fulltitle {
    font-size: 28px;
    margin-top: 5px;
    font-family: "yahei-light";
}

.home-about .text {
    line-height: 1.8;
    margin-top: 20px;
    font-family: "yahei-light";
}

.home-about .more {
    margin-top: 20px;
    font-size: 18px;
    font-family: "yahei-light";
}

@font-face {
    font-family: 'Futura LT';
    src: url('../fonts/FuturaLT.eot');
    src: url('../fonts/FuturaLT.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaLT.woff2') format('woff2'), url('../fonts/FuturaLT.woff') format('woff'), url('../fonts/FuturaLT.svg#FuturaLT') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.home-year {
    background: url(../images/bg1.jpg)no-repeat center;
    background-size: cover;
    padding: 80px 0;
    color: #FFF;
}

.home-year .year {
    font-size: 250px;
    white-space: nowrap;
    margin-right: 110px;
    font-family: 'Futura LT';
}

.home-year .title {
    font-size: 19px;
    padding-left: 20px;
}

.home-year .title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #FFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-year .fulltext {
    font-size:29px;
    margin-top: 25px;
    color: #FFF;
}

.home-year .des {
    font-size: 15px;
    font-family: "yahei-light";
    margin-top: 25px;
    line-height: 1.8;
    color: #FFF;
}

.home-year .more {
    margin-top: 30px;
}

.home-year .more a {
    border: 1px #FFF solid;
    line-height: 40px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    color: #FFF;
    width: 225px;
}

@media (min-width:1025px) {
    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .nav .drop a:hover {
        background-color: #005028;
        border-bottom: 0;
    }
    .nav .drop a:hover,
    .copyright a:hover {
        color: #FFF;
    }
    .quick>div:hover .erwma,
    .quick>div:hover .mob {
        display: block;
    }
    .home-news .swiper-slide:hover .pic img,
    .edible-con .first:hover img,
    .edible-con .item:hover img,
    .seasoning .item:hover img,
    .grain .swiper-slide:hover img,
    .home-pinzhi:hover img,
    .homg-leimu .item:hover img,
    .home-about .pic:hover img,
    .job .pic-con .pic:hover img,
    .job .team li .pic:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-news .swiper-slide:hover .tit {
        color: #005028;
    }
    .home-pro .title-con .more:hover,
    .home-pro .title-con .title:hover .cn,
    .home-year .more a:hover,
    .home-year a:hover {
        text-decoration: underline;
    }
    .seasoning .item:hover .text,
    .grain .swiper-slide:hover .text,
    .edible-con .item:hover .text,
    .edible-con .swiper-slide .first:hover .text {
        background-color: #005028;
    }
}

@media (max-width:1400px) {
    body {
        font-size: 15px;
    }
    .header .logo {
        height: 90px;
    }
    .header .logo img {
        height: 50px;
    }
    .nav li>a {
        font-size: 15px;
        padding:30px 16px;

    }
    .nav .drop {
        top: 90px;
    }
    .home-news .title-con .fulltext,
    .homg-leimu .text,
    .home-about .title,
    .home-about .fulltitle {
        font-size: 32px;
    }
    .home-news .tit {
        height: 60px;
    }
    .home-news .des {
        height: 51px;
    }
    .footer .tel span,
    .home-pro .title-con .cn {
        font-size: 24px;
    }
    .home-news .tit,
    .edible-con .first .text,
    .home-about .en {
        font-size: 20px;
    }
    .home-news .date,
    .edible-con .item .text,
    .seasoning .item .text,
    .grain .text {
        font-size: 18px;
    }
    .copyright .link,
    .home-news .more,
    .home-pinzhi .title-con .en,
    .home-pinzhi .text-con .text,
    .home-about .more {
        font-size: 16px;
    }
    .nav .drop,
    .home-pro .title-con .more {
        font-size: 14px;
    }
    .footer li .sub {
        font-size: 13px;
    }
    .footer .erwma {
        width: 115px;
    }
    .footer .erwma .pic {
        height: 115px;
    }
    .home-news .text-con {
        padding: 30px 20px;
    }
    .quick {
        width: 45px;
    }
    .quick>div span,
    .quick .top,
    .quick>div .mob {
        height: 45px;
    }
    .quick>div .erwma,
    .quick>div .mob {
        right: 45px;
    }
    .quick>div .mob {
        line-height: 45px;
    }
    .quick>div .erwma {
        width: 90px;
        height: 90px;
    }
    .home-pinzhi .title-con .title {
        font-size: 36px;
    }
    .home-pinzhi .text-con .tit {
        font-size: 28px;
    }
    .home-about .text-con {
        padding: 50px 70px 50px 50px;
    }
    .home-year .year {
        font-size: 200px;
        margin-right: 130px;
    }
}

@media (max-width:1199px) {
    /* body {
        font-size: 13px;
    } */
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
		max-width:95%;
    }
    .header .logo {
        height: 1.1rem;
    }
    .header .logo img {
        height: .6rem;
    }
    .menu-btn {
        display: block;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.1rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #FFF;
        z-index: 999;
        height: calc(100vh - 1.1rem);
    }
    .nav li>a {
        color: #005028;
        font-size: 16px;
        line-height: .9rem;
        height: .9rem;
		padding:0px 16px;
		font-weight: bold;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 1rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: .32rem;
        height: .32rem;
        position: absolute;
        left: .1rem;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        background: none;
        padding-bottom: 0;
        right: auto;
        top: auto;
        box-shadow: none;
        padding-left: .4rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .banner .swiper-button-white {
        background-size: .24rem;
    }
    .quick {
        display: none !important;
    }
    .home-news {
        padding: 20px 20px 35px;
    }
    .home-news .swiper-container {
        margin-top: .5rem;
    }
    .home-news .title-con .fulltext,
    .homg-leimu .text,
    .home-pinzhi .text-con .tit,
    .home-year .fulltext {
        font-size: 22px;
    }
    .home-news .tit {
        height: 48px;
    }
	.home-news .more{font-size: 13px;margin-top: 34px;}
	.home-news .title-con .title{font-size: 15px;}
    .home-pro .title-con {
        margin-top: 70px;
    }
    .edible-con .first .text {
        line-height: 50px;
    }
    .edible-con .item .text,
    .grain .text {
        line-height: 40px;
    }
    .seasoning .item .text {
        line-height: 30px;
    }
    .edible-con .first .text {
        font-size: 18px;
    }
    .home-news .tit,
    .edible-con .item .text,
    .seasoning .item .text,
    .grain .text {
        font-size: 16px;
    }
    .home-pinzhi .title-con .title {
        font-size: 29px;
    }	
    .home-pinzhi .title-con .en{
        font-size: 13px;
    }
    .home-pinzhi {
        display: flex;
        justify-content: flex-end;
    }
    .home-pinzhi img {
        width: auto;
        height: 5.9rem;
    }
    .home-pinzhi .text-con {
        padding: .4rem;
    }
    .home-pinzhi .text-con .text {
        margin-top: .3rem; font-size:14px;
    }
    .home-about .text-con {
        padding: .5rem .7rem .5rem .5rem;
    }
    .home-about .title,
    .home-about .fulltitle {
        font-size: 24px;
    }
    .home-year .year {
        font-size: 160px;
        margin-right: .8rem;
    }
	.home-bg{padding-bottom:40px}
	.home-about{margin-top:40px}
}

@media (max-width:950px) {
    .footer .con {
        width: 100%;
        margin-top: .3rem;
    }
    .footer ul {
        margin-right: 0;
    }
    .footer li {
        width: 100%;
    }
    .footer li .tit {
        border-bottom: 1px #9b9c9a solid;
        line-height: 50px;
    }
    .footer li .tit::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 30px;
        height: 30px;
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 14px;
        margin-top: -15px;
    }
    .footer li .tit.cur::after {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }
    .footer .sub {
        display: none;
    }
    .footer .sub a {
        padding-left: 20px;
    }
    .home-pro .title-con .cn {
        font-size: 20px;
    }
    .home-pro .title-con {
        margin-top: 35px;
    }
    .seasoning {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
    .grain {
        width: 100%;
    }
    .edible-con .swiper-container,
    .seasoning .con,
    .grain .swiper-container {
        margin-top: 30px;
    }
    .home-pinzhi .title-con {
        top: 18%;
    }
    .home-about .pic {
        width: 100%;
    }
    .home-about .text-con::after {
        left: 0;
        top: 0;
        bottom: 0;
    }
    .home-year .year {
        font-size: 145px;
    }
}

@media (max-width:767px) {
	.container{max-width: inherit;}
    .footer {
        padding: 30px 0;
    }
    .edible-con .first {
        width: 100%;
        margin-right: 0;
        flex: none;
        padding-top: 100%;
        margin-bottom: 20px;
    }
    .home-pro {
        padding-bottom: .7rem;
    }
    .home-about .text-con {
        padding: .4rem .3rem;
    }
    .home-about .title,
    .home-about .fulltitle,
    .home-year .fulltext {
        font-size: 20px;
    }
    .home-year {
        padding: .6rem 0;
    }
    .home-year .year {
        width: 100%;
        margin-right: 0;
    }
    .home-year .title {
        font-size: 16px;
    }
    .home-year .des {
        font-size: 14px;
    }
}

@media (max-width:480px) {
    .home-news .text-con {
        padding: 20px;
    }
    .home-news .des,
    .home-news .date {
        margin-top: 10px;
    }
    .home-news .date,
    .home-pro .title-con .more {
        font-size: 13px;
    }
    .seasoning .item {
        width: calc(50% - 5px);
        margin-right: 10px;
        padding-top: calc(50% - 5px);
    }
    .seasoning .item:nth-of-type(3n) {
        margin-right: 10px;
    }
    .seasoning .item:nth-child(even) {
        margin-right: 0;
    }
    .homg-leimu .item {
        width: 49%;
        margin: 5px 0;
    }
    .home-pinzhi .title-con {
        top: 16%;
    }
}


/* 关于长寿花 */

.n-banner {
    overflow: hidden;
}

.n-banner img {
    width: 100%;
}

.about .title-con .title {
    font-size: 20px;
    padding-left: 20px;
}

.about .title-con .title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #005028;
}

.about .title-con .fulltext {
    font-size: 29px;
    color: #005028;
    font-weight: bold;
    margin-top: 20px;
}

.about .more {
    border: 1px #005028 solid;
    line-height: 48px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    color: #005028;
    width: 240px;
    margin-top: 45px;
}

.about .text-content1 {
    background: url(../images/bg2.jpg)no-repeat center;
    padding-top: 100px;
    padding-bottom: 110px;
    background-size: cover;
}

.about .text-content1 .pic {
    width: 48.4%;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    margin-right: 6%;
}

.about .text-content1 .pic img {
    width: 100%;
}

.about .des {
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.8;
}

.about .xiaoshou {
    margin-top: 90px;
}

.about .xiaoshou .brand {
    width: 51%;
    margin-left: 3%;
}

.about .xiaoshou .brand .item {
    width: 30%;
    margin-right: 2%;
    border: 1px #c5c6c6 solid;
    height: 118px;
    overflow: hidden;
    margin-bottom: 15px;
}

.about .xiaoshou .brand .item:nth-of-type(3n) {
    margin-right: 0;
}

.about .xiaoshou .brand .item img {
    max-width: 90%;
}

.about .buju {
    background: url(../images/bg.jpg)no-repeat center;
    background-size: cover;
    padding: 60px 0;
    margin-top: 80px;
}

.about .buju .pic {
    width: 50%;
    margin-right: 8%;
    overflow: hidden;
}

.about .buju .pic img {
    width: 100%;
}

.about .events {
    padding: 95px 0;
    background: url(../images/bg3.jpg)no-repeat center;
    background-size: cover;
}

.about .events .title-con .title,
.about .events .title-con .fulltext {
    color: #FFF;
}

.about .events .title-con .title::after {
    background-color: #FFF;
}

.about .events .more {
    position: absolute;
    right: 0;
    bottom: 0;
    border-color: #FFF;
    color: #FFF;
}

.about .events .content {
    margin-top: 85px;
}

.about .events .swiper-slide {
    background-color: #FFF;
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    padding: 30px;
    height: auto;
}

.about .events .swiper-slide .title {
    font-size: 22px;
    font-weight: bold;
    color: #c29230;
    padding-bottom: 30px;
    border-bottom: 1px #c29230 solid;
}

.about .events .swiper-slide .text-con {
    margin-top: 25px;
}

.about .events .swiper-slide .text {
    margin-top: 15px;
    line-height: 1.6;
    color: #666;
    padding-left: 15px;
    font-size: 15px;
}

.about .events .swiper-slide .text::after {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #4e4e4e;
}

.about .events .swiper-button-next,
.about .events .swiper-button-prev {
    width: 53px;
    height: 88px;
    background: url(../images/prev.png)no-repeat center;
    background-size: 100%;
    margin-top: -44px;
}

.about .events .swiper-button-prev {
    left: -65px;
}

.about .events .swiper-button-next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    right: -65px;
}

.about .rongyu {
    background: url(../images/bg4.jpg)repeat-x left bottom;
    padding-top: 75px;
    padding-bottom: 45px;
}

.about .rongyu .tit {
    margin-top: 20px;
    font-size: 20px;
}

.about .rongyu .des {
    color: #666;
}

.about .rongyu .pic {
    width: 49.7%;
    margin-left: 5%;
}

.about .rongyu .pic img {
    max-width: 100%;
}

.about .text-content2 {
    margin-top: 90px;
    margin-bottom: 120px;
}

.about .text-content2 .pic {
    width: 45%;
    margin-right: 5%;
}

.about .text-content2 .pic img {
    max-width: 90%;
}


/* 公司简介 */

.subnav {
    border-bottom: 1px #91b4a2 solid;
    padding: 15px 0;
}

.subnav .title {
    font-weight: bold;
    color: #005028;
    font-size: 24px;
    margin-right: 5%;
}

.subnav a {
    margin: 0 10px 0 0;
    padding: 0 7px 0 0;
    font-size: 17px;
    line-height: 26px;
}

.subnav a.on {
    font-size: 18px;
    color: #005028;
    font-weight: bold;
}

.subnav a.on::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 4px;
    background-color: #005028;
}

.search {
    width: 380px;
}

.search input[type='text'] {
    border: 1px #e1e1e1 solid;
    height: 36px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
    margin-right: 10px;
}

.search input[type='submit'] {
    background-color: #da9c5e;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 105px;
}

.introduction,
.jidi-details,
.xiaoshou,
.chanye,
.honor,
.c-events {
    padding-bottom: 60px;
}

.introduction .title-con {
    margin-top: 80px;
    border-bottom: 1px #005028 solid;
    color: #005028;
    padding-bottom: 25px;
}

.introduction .title-con .cn,
.jidi-details .title-con .cn {
    font-size: 27px;
    font-weight: bold;
}

.introduction .title-con .en,
.jidi-details .title-con .en {
    font-size: 19px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
}

.introduction .text-con {
    font-size: 16px;
    line-height: 2;
}

.introduction .text-con p,
.introduction .text-con li {
    margin-top: 30px;
    margin-bottom: 30px;
}


.introduction .text {
    position: relative;
    margin-top: 30px;
    font-size: 16px;
    line-height: 2;
    text-indent: 20px;
}

.introduction .text-con {
    position: relative;
    font-size: 16px;
    line-height: 2;
}
.introduction .text-con ul li {
    position: relative;
    margin-top: 30px;
    text-indent: 20px;
}

.introduction .text-con ul li::before,
.introduction .text::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #005028;
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
}

.introduction .txt {
    font-size: 16px;
    line-height: 2;
    text-indent: 20px;
}

.introduction img {
    display: block;
    max-width: 100%;
    /* margin-top: 40px; */
}

.introduction .tit {
    font-weight: bold;
    font-size: 19px;
    margin-top: 30px;
}

.jidi-details .title-con {
    margin-top: 80px;
    color: #005028;
}

.jidi-details .txt,
.jidi-details .body {
    line-height: 2;
    margin-top: 25px;
}

.jidi-details .body img {
    max-width: 100%;
}

.jidi-details .pic-con {
    margin-top: 80px;
}

.jidi-details .pic {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    margin-right: 10px;
    overflow: hidden;
    padding-top: 25%;
}

.jidi-details .pic:nth-child(even) {
    margin-right: 0;
}

.jidi-details .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.fenbu,
.chanye {
    margin-top: 80px;
    padding-bottom: 100px;
}

.fenbu .title,
.chanye .title,
.chanye .text-cont h1,
.fenbu .text-cont h1 {
    font-weight: bold;
    font-size: 26px;
}

.chanye .text-cont h2,
.fenbu .text-cont h2 {
    font-size: 24px;
}

.chanye .text-cont h3,
.fenbu .text-cont h3 {
    font-size: 20px;
}

.fenbu .txt,
.chanye .txt {
    font-size: 16px;
    margin-top: 30px;
    line-height: 2;
}

.fenbu .text-cont,
.chanye .text-cont {
    font-size: 16px;
    line-height: 2;
}

.fenbu .text-cont p,
.chanye .text-cont p {
    margin-top: 30px;
}

.fenbu img {
    max-width: 100%;
    margin-top: 60px;
}

.chanye {
    padding-left: 4%;
    padding-right: 4%;
}

.chanye .map {
    margin-top: 80px;
}

.chanye .map>img {
    width: 100%;
}

.chanye .map .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.chanye .map .item {
    position: absolute;
    cursor: pointer;
    width: 140px;
    height: 80px;
}

.chanye .map .address {
    background-color: #FFF;
    padding: 5px;
    overflow: hidden;
    border: 2px #eed024 solid;
    width: 200px;
    position: absolute;
    left: 140px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.chanye .map .address .pic {
    width: 100%;
    overflow: hidden;
}

.chanye .map .address .pic img {
    width: 100%;
}

.chanye .map .address .more {
    font-size: 14px;
    line-height: 2;
    color: #005028;
}

.chanye .map .on .di_no {
    display: block;
}

.chanye .map .zouping {
    right: 17%;
    top: 40%;
}

.chanye .map .hangzhou {
    right: 15%;
    bottom: 30%;
}

.chanye .map .guangzhou {
    right: 30%;
    bottom: 13%;
}

.chanye .map .eerduosi {
    right: 37%;
    top: 35%;
}

.chanye .map .tongliao {
    right: 23%;
    top: 20%;
    width: 100px;
}

.chanye .map .tongliao .address {
    right: auto;
    left: -200px;
}

.chanye .map .tieling {
    right: 14%;
    top: 22%;
    width: 100px;
}

.honor {
    margin-top: 20px;
}

.honor li {
    margin-top: 30px;
    background-color: #f6f6f6;
    padding: 30px 30px 50px 30px;
    width: 32%;
    margin-right: 2%;
    cursor: pointer;
}

.honor li:nth-of-type(3n) {
    margin-right: 0;
}

.honor li .pic img {
    width: 100%;
}

.honor li .text {
    font-size: 18px;
    margin-top: 15px;
}

.honor li::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 26px;
    height: 26px;
    background: url(../images/icon1.png)no-repeat center;
    background-size: 100%;
}

.pages {
    margin-top: 80px;
}

.pages a {
    width: 40px;
    line-height: 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px #b3b3b3 solid;
    margin: 0 5px;
}

.pages a.on {
    background-color: #dc9e4e;
    color: #FFF;
    border-color: #dc9e4e;
}

.pages a.prev {
    background-color: #e5e5e5;
}

.pages a.prev::before{
    content: "<";
    color: transparent;
}
.pages a.prev::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 5px transparent solid;
    border-bottom: 5px transparent solid;
    border-right: 5px #595959 solid;
}

.pages a.next::before{
    content: ">";
    color: transparent;
}
.pages a.next::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 5px transparent solid;
    border-bottom: 5px transparent solid;
    border-left: 5px #595959 solid;
}

.c-events {
    margin-top: 60px;
}

.c-events .sidebar {
    width: 293px;
    margin-right: 8%;
}

.c-events .sidebar li {
    margin-bottom: 60px;
    width: 100%;
    height: 118px;
    background: url(../images/tbg1.png)no-repeat center;
    color: #005028;
    cursor: pointer;
    padding-top: 30px;
    padding-left: 30px;
    background-size: 100% 100%;
}

.c-events .sidebar .tit {
    font-weight: bold;
    font-size: 24px;
}

.c-events .sidebar .year {
    font-size: 20px;
}

.c-events .sidebar li.on {
    background-image: url(../images/tbg2.png);
    color: #FFF;
}

.c-events .sidebar li.on::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 32px;
    right: -24px;
    background: url(../images/icon2.png)no-repeat center;
    top: 35%;
}

.c-events .content .text-con {
    border-bottom: 2px #eeeded solid;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.c-events .content .year {
    background-color: #005028;
    color: #FFF;
    font-size: 21px;
    font-weight: bold;
    line-height: 36px;
    padding: 0 20px;
}

.c-events .content .text {
    color: #333;
    font-size: 18px;
    margin-top: 30px;
    line-height: 1.8;
}

.yumiyou {
    margin-top: 70px;
    padding-bottom: 100px;
}

.yumiyou .text-con {
    font-size: 17px;
    line-height: 2;
}

.yumiyou strong {
    color: #005028;
}

.yumiyou .text {
    margin-top: 40px;
}

.yumiyou .btn {
    margin-top: 60px;
}

.flipbook-viewport {
    padding-top: 60px;
    background-image: url(../images/bg5.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    overflow: hidden;
    /* height: 845px; */
    margin-top: 30px;
}

.flipbook-viewport .content {
    /* position: absolute;
    top: 550px;
    left: 50%; */
    margin: 0 auto;
}

.flipbook-viewport .flipbook {
    /* width: 922px;
    height: 600px;
    left: -461px;
    top: -300px; */
}

.flipbook-viewport .page {
    width: 461px;
    height: 600px;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.flipbook .page {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.flipbook-viewport .page img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
}

.flipbook-viewport .shadow {
    -webkit-transition: -webkit-box-shadow 0.5s;
    -moz-transition: -moz-box-shadow 0.5s;
    -o-transition: -webkit-box-shadow 0.5s;
    -ms-transition: -ms-box-shadow 0.5s;
    -webkit-box-shadow: 0 0 20px #ccc;
    -moz-box-shadow: 0 0 20px #ccc;
    -o-box-shadow: 0 0 20px #ccc;
    -ms-box-shadow: 0 0 20px #ccc;
    box-shadow: 0 0 20px #ccc;
}

@media (min-width:1025px) {
    .about .title-con .title:hover,
    .about .more:hover,
    .about .events .swiper-slide:hover .title,
    .chanye .map .address .more:hover,
    .chanye .map .address .tit:hover,
    .about .title-con .fulltext:hover {
        text-decoration: underline;
    }
    .about .text-content1 .pic:hover img,
    .about .xiaoshou .brand .item:hover img,
    .about .buju .pic:hover img,
    .about .rongyu .pic:hover img,
    .about .text-content2 .pic:hover img,
    .chanye .map .address .pic:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .subnav a:hover {
        font-size: 19px;
        color: #005028;
        font-weight: bold;
    }
    .pages a:hover {
        background-color: #dc9e4e;
        color: #FFF;
        border-color: #dc9e4e;
    }
    .pages a.prev:hover {
        background-color: #e5e5e5;
    }
    .pages a.next:hover {
        background-color: #FFF;
    }
}

@media (max-width:1400px) {
    .about .title-con .fulltext,
    .subnav .title,
    .fenbu .title,
    .chanye .title,
    .c-events .sidebar .tit,
    .chanye .text-cont h1 {
        font-size: 24px;
    }
    .chanye .text-cont h2 {
        font-size: 20px;
    }
    .chanye .text-cont h3 {
        font-size: 18px;
    }
    .about .more {
        margin-top: 35px;
    }
    .about .des,
    .introduction .text,
    .honor li .text {
        font-size: 15px;
    }
    .about .title-con .title,
    .about .rongyu .tit,
    .about .events .swiper-slide .title {
        font-size: 18px;
    }
    .about .events .swiper-slide .text {
        font-size: 14px;
    }
    .subnav a.on,
    .c-events .content .text {
        font-size: 17px;
    }
    .subnav a {
        font-size: 16px;
    }
    .introduction .title-con .cn,
    .jidi-details .title-con .cn {
        font-size: 26px;
    }
    .introduction .title-con .en,
    .jidi-details .title-con .en,
    .c-events .sidebar .year,
    .c-events .content .year {
        font-size: 20px;
    }
    .about .events .swiper-slide .text::after {
        top: 8px;
    }
    .about .events .swiper-button-next,
    .about .events .swiper-button-prev {
        width: 40px;
    }
    .honor li {
        padding: 20px 20px 30px 20px;
    }
    .honor li::after {
        right: 20px;
        bottom: 20px;
        width: 20px;
        height: 20px;
    }
}

@media (max-width:1199px) {
    .about .title-con .fulltext,
    .subnav .title,
    .chanye .title,
    .c-events .sidebar .tit,
    .chanye .text-cont h1,
    .fenbu .text-cont h1 {
        font-size: 18px;
    }
    .fenbu .text-cont h2,
    .fenbu .text-cont h3,
    .chanye .text-cont h2,
    .chanye .text-cont h3 {
        font-size: 17px;
    }
    .subnav a,
    .introduction .text,
    .fenbu .txt,
    .chanye .txt,
    .yumiyou .text-con,
    .chanye .text-cont,
    .fenbu .text-cont,
    .introduction .text-con {
        font-size: 14px;
    }
    .subnav a.on,
    .c-events .content .text {
        font-size: 15px;
    }
    .introduction .title-con .cn,
    .jidi-details .title-con .cn {
        font-size: 24px;
    }
    .introduction .title-con .en,
    .jidi-details .title-con .en,
    .c-events .sidebar .year,
    .c-events .content .year {
        font-size: 18px;
    }
    .introduction .tit {
        font-size: 17px;
    }
    .introduction .title-con,
    .jidi-details .title-con,
    .jidi-details .pic-con,
    .fenbu,
    .chanye,
    .pages,
    .c-events {
        margin-top: .5rem;
    }
    .introduction,
    .jidi-details,
    .fenbu,
    .chanye,
    .honor,
    .c-events {
        padding-bottom: 1rem;
    }
    .jidi-details .txt,
    .c-events .content .text {
        margin-top: .4rem;
    }
    .fenbu .text-cont p,
    .chanye .text-cont p,
    .chanye .txt {
        margin-top: .3rem;
    }
    .introduction .text-con p, 
    .introduction .text-con ul li {
        margin-top: .3rem;
        margin-bottom: .3rem;
    }
    .chanye .map .item {
        width: 1.4rem;
        height: .8rem;
    }
    .chanye .map .address {
        width: 2rem;
        left: 1.4rem;
    }
    .chanye .map .address .pic {
        height: .75rem;
    }
    .chanye .map .address .more {
        font-size: 12px;
    }
    .chanye .map .tieling .address {
        left: 1.4rem;
    }
    .chanye .map .tongliao .address {
        left: -1.6rem;
    }
    .honor li {
        padding: .3rem .3rem .6rem .3rem;
        margin-top: .3rem;
    }
    .honor li::after {
        width: .24rem;
        height: .24rem;
        right: .3rem;
        bottom: .3rem;
    }
    .pages a {
        width: .5rem;
        line-height: .5rem;
        margin: 0 .05rem;
    }
    .c-events .sidebar {
        width: 240px;
    }
    .c-events .sidebar li {
        margin-bottom: .4rem;
        height: 100px;
    }
    .c-events .content .text-con {
        padding-bottom: .4rem;
        margin-bottom: .4srem;
    }
    .flipbook-viewport {
        padding-top: 0;
        margin-top: 0;
    }
    .search {
        display: none;
    }
}

@media (max-width:950px) {
    .about .events .swiper-button-next {
        right: .2rem;
    }
    .about .events .swiper-button-prev {
        left: .2rem;
    }
    .about .text-content1,
    .about .events {
        padding: .7rem 0;
    }
    .about .events .content {
        margin-top: .6rem;
    }
    .about .text-content1 .pic {
        width: 100%;
        margin-right: 0;
        order: 2;
        margin-top: .4rem;
        border-radius: .3rem;
        -webkit-border-radius: .3rem;
        -moz-border-radius: .3rem;
        -ms-border-radius: .3rem;
        -o-border-radius: .3rem;
    }
    .about .xiaoshou,
    .about .buju,
    .about .text-content2 {
        margin-top: .7rem;
    }
    .about .xiaoshou .brand,
    .about .rongyu .pic {
        width: 100%;
        margin-left: 0;
        margin-top: .4rem;
    }
    .about .buju .pic,
    .about .text-content2 .pic {
        width: 100%;
        margin-right: 0;
        order: 2;
        margin-top: .4rem;
    }
    .about .text-content2 {
        margin-bottom: 1rem;
    }
    .about .rongyu {
        padding-top: .7rem;
        padding-bottom: .7rem;
    }
    .about .events .more {
        width: 2rem;
        line-height: .6rem;
    }
    .chanye .map .address {
        width: 2.6rem;
    }
    .chanye .map .tongliao {
        top: 22%;
    }
    .chanye .map .tongliao .address {
        left: -2.4rem;
    }
}

@media (max-width:767px) {
	.yumiyou {margin-top: 23px;}
    .subnav .title {
        margin-right: 0;
        width: 100%;
        margin-bottom: .15rem;
        padding-right: 15px;
    }
    .subnav a.on::after,
    .c-events .sidebar li.on::after,
    .flipbook-viewport,
    .yumiyou .btn {
        display: none;
    }
    .introduction .title-con .cn,
    .jidi-details .title-con .cn {
        font-size: 20px;
    }
    .introduction .title-con .en,
    .jidi-details .title-con .en {
        font-size: 16px;
    }
    .jidi-details .pic {
        width: 100%;
        margin-right: 0;
        padding-top: 50%;
    }
    .chanye .map .item {
        width: .8rem;
        height: .4rem;
    }
    .chanye .map .address {
        left: .8rem;
        width: 2.4rem;
    }
    .chanye .map .zouping .address {
        left: -2.4rem;
        top: .4rem;
    }
    .chanye .map .hangzhou .address {
        left: -2.4rem;
        bottom: .4rem;
    }
    .chanye .map .guangzhou .address {
        left: -1.2rem;
        top: .4rem;
    }
    .chanye .map .tieling .address {
        left: -1.2rem;
        bottom: .4rem;
    }
    .chanye .map .tongliao .address {
        left: -1.2rem;
        bottom: .4rem;
    }
    .chanye .map .eerduosi .address {
        left: -2rem;
        bottom: .4rem;
    }
    .honor li {
        width: 49%;
        padding: .2rem .2rem .5rem .2rem;
    }
    .honor li:nth-of-type(3n) {
        margin-right: 2%;
    }
    .honor li:nth-child(even) {
        margin-right: 0;
    }
    .c-events .sidebar {
        margin-right: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .c-events .sidebar li {
        width: 49%;
        margin-right: 2%;
        padding-left: .3rem;
        padding-top: .3rem;
        height: auto;
        padding-bottom: .3rem;
    }
    .c-events .sidebar li:nth-child(even) {
        margin-right: 0;
    }
    .c-events .sidebar .tit {
        font-size: 18px;
    }
    .c-events .sidebar .tit {
        font-size: 15px;
    }

    .about .more{width: 200px;line-height: 41px;}
}

@media (max-width:540px) {
    .honor li {
        width: 100%;
        margin-right: 0;
    }
}


/* 新闻 */

.news-list {
    margin-bottom: 140px;
}

.news-list .item {
    margin-top: 50px;
}

.news-list .item .pic {
    width: 450px;
    /* padding-top: 20.9%; */
    overflow: hidden;
    margin-right: 40px;
}

.news-list .item .pic img {
    /* position: absolute; */
    position: relative;
    left: 0;
    top: 0;
}

.news-list .item .text-con {
    border-bottom: 1px #d7d7d7 solid;
}

.news-list .item .tit {
    font-size: 24px;
}

.news-list .item .date {
    color: #dc9e4e;
    font-size: 21px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
}

.news-list .item .des {
    color: #777777;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 40px;
}

.news-details {
    background-color: #f8f7f3;
    padding: 40px 0;
}

.crumbs {
    font-size: 15px;
    color: #666;
    background: url(../images/home.png)no-repeat left center;
    padding-left: 20px;
}

.news-details .content {
    background-color: #FFF;
    padding: 50px;
    margin-top: 20px;
}

.news-details h1 {
    font-size: 26px;
    font-weight: normal;
}

.news-details .info {
    font-size: 15px;
    color: #666;
    margin-top: 30px;
    line-height: 2;
    border-bottom: 1px #dadada solid;
    padding-bottom: 25px;
}

.news-details .body {
    line-height: 2;
    border-bottom: 1px #dadada solid;
    padding-bottom: 60px;
    padding-top: 40px;
}

.news-details .body p {
   text-indent: 33px;
    margin-top: 20px; 
}

.news-details .body img {
    max-width: 100%;
    height: auto;
    /* margin-top: 35px; */
}

.news-details .prev {
    line-height: 2.4;
    margin-top: 30px;
}

.news-details .prev strong {
    color: #005028;
}

.news-details .hot-news {
    margin-top: 50px;
}

.news-details .hot-news .title {
    color: #005028;
    font-weight: bold;
    font-size: 22px;
    border-bottom: 1px #dadada solid;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.news-details .hot-news li {
    margin-top: 20px;
}

.news-details .hot-news .tit {
    margin-right: 30px;
}

.news-details .hot-news .date {
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.news .title-con {
    margin-top: 60px;
}

.news .title-con .title {
    color: #005028;
    font-weight: bold;
    font-size: 29px;
}

.news .title-con .more {
    color: #005028;
    font-size: 20px;
    background: url(../images/more.png)no-repeat right center;
    padding-right: 30px;
}

.news .com-news {
    margin-top: 50px;
}

.news .com-news .swiper-container {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #f8f6f3;
}

.news .com-news .swiper-container .pic {
    width: 604px;
    overflow: hidden;
    padding-top: 27.7%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-right: 30px;
}

.news .com-news .swiper-container .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.news .com-news .swiper-container .text-con {
    padding: 30px;
}

.news .com-news .swiper-container .tit {
    font-size: 22px;
}

.news .com-news .swiper-container .date {
    margin-top: 20px;
}

.news .com-news .swiper-container .date span {
    background-color: #FFF;
    color: #c99332;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 20px;
    line-height: 1.8;
}

.news .com-news .swiper-container .des {
    margin-top: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

.news .com-news .button {
    position: absolute;
    width: 100px;
    bottom: 40px;
    left: 664px;
}

.news .com-news .swiper-container .swiper-button-white {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #c2c0be;
    background-size: 12px;
}

.news .com-news .swiper-button-next {
    right: 0;
}

.news .com-news .swiper-button-prev {
    left: 0;
}

.news .com-news ul {
    margin-top: 60px;
}

.news .com-news li {
    width: 23.5%;
    margin-right: 2%;
    background-color: #f8f6f3;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news .com-news li:last-child {
    margin-right: 0;
}

.news .com-news li .pic {
    overflow: hidden;
    width: 100%;
    padding-top: 63.5%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news .com-news li .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.news .com-news li .text-con {
    height: 180px;
    padding: 30px 20px;
}

.news .com-news li .tit {
    line-height: 1.7;
}

.news .com-news li .date {
    margin-top: 25px;
}

.news .com-news li .date span {
    background-color: #005028;
    color: #FFF;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 1.8;
    padding: 0 10px;
}

.news .hgu {
    margin-top: 110px;
    background-color: #f8f6f3;
    overflow: hidden;
    padding-bottom: 110px;
}

.news .hgu li {
    width: 32%;
    margin-right: 2%;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    margin-top: 40px;
}

.news .hgu li:nth-of-type(3n) {
    margin-right: 0;
}

.news .hgu li .pic {
    width: 100%;
    overflow: hidden;
    padding-top: 65%;
}

.news .hgu li .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.news .hgu li .text-con {
    padding: 25px;
}

.news .hgu li .date {
    color: #888;
}

.news .hgu li .tit {
    font-size: 21px;
    margin-top: 20px;
    height: 55px;
}

.news .hgu li .text {
    font-weight: bold;
    font-size: 15px;
    color: #005028;
    margin-top: 20px;
}

@media (min-width:1025px) {
    .news-list .item:hover .pic img,
    .news .com-news .swiper-slide:hover .pic img,
    .news .com-news li:hover .pic img,
    .news .hgu li:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .news .title-con a:hover,
    .news-list .item:hover .tit,
    .news .com-news .swiper-slide:hover .tit,
    .news .hgu li:hover .tit {
        text-decoration: underline;
    }
    .news .com-news .swiper-container .swiper-button-white:hover,
    .news .com-news li:hover {
        background-color: #005028;
    }
    .news .com-news li:hover .tit {
        color: #FFF;
    }
    .news .com-news li:hover .date span {
        background-color: #FFF;
        color: #005028;
    }
}

@media (max-width:1400px) {
    .news-details h1,
    .news .title-con .title {
        font-size: 24px;
    }
    .news-list .item .tit,
    .news .com-news .swiper-container .tit {
        font-size: 20px;
    }
    .news-list .item .date,
    .news .title-con .more,
    .news .hgu li .tit {
        font-size: 18px;
    }
    .news .com-news .button {
        bottom: 60px;
    }
    .news .com-news li .date span {
        font-size: 13px;
    }
}

@media (max-width:1199px) {
    .news-list {
        margin-bottom: .7rem;
    }
    .news-list .item .pic {
        width: 4.5rem;
    }
    .news-list .item .des {
        margin-top: .3rem;
    }
    .news-list .item .tit,
    .news .com-news .swiper-container .tit {
        font-size: 18px;
    }
    .news-list .item .date,
    .news .hgu li .tit {
        font-size: 16px;
    }
    .news-list .item .des,
    .crumbs,
    .news-details .info,
    .news-details .hot-news .date,
    .news .com-news .swiper-container .des,
    .news .title-con .more {
        font-size: 14px;
    }
    .news-details h1,
    .news-details .hot-news .title {
        font-size: 20px;
    }
    .news-details .content {
        padding: .5rem .3rem;
    }
    .news-details .info {
        margin-top: .2rem;
        padding-bottom: .2rem;
    }
    .news-details .body {
        font-size: 15px;
    }
	.news-details .body img{display: block;}
    .news .com-news .swiper-container .pic {
        width: 6.1rem;
        margin-right: 0;
    }
    .news .com-news .button {
        left: 6.4rem;
        bottom: .6rem;
    }
    .news .com-news .swiper-container .des,
    .news .com-news .swiper-container .date,
    .news .hgu li .tit,
    .news .hgu li .text,
    .news .com-news li .date {
        margin-top: .2rem;
    }
    .news .title-con .more {
        background-size: .24rem;
    }
    .news .com-news li .text-con {
        height: auto;
        padding: .3rem .2rem;
    }
    .news .hgu {
        margin-top: 1rem;
    }
    .news .hgu li .text-con {
        padding: .3rem;
    }
    .news .hgu {
        padding-bottom: 1rem;
    }
}

@media (max-width:990px) {
    .news .com-news ul {
        margin-top: .3rem;
    }
    .news .com-news li,
    .news .hgu li {
        width: 49%;
        margin-top: .4rem;
    }
    .news .hgu li:nth-of-type(3n) {
        margin-right: 2%;
    }
    .news .com-news li:nth-child(even),
    .news .hgu li:nth-child(even) {
        margin-right: 0;
    }
    .news .com-news .button {
        left: .2rem;
        right: .2rem;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        width: auto;
        z-index: 10;
    }
    .news .hgu li .text {
        font-size: 13px;
    }
    .news .com-news .swiper-container .text-con {
        padding: .3rem;
    }
}

@media (max-width:767px) {
    .news-list .item {
        margin-top: .4rem;
    }
    .news-list .item .pic {
        width: 100%;
        margin-right: 0;
        /* padding-top: 50%; */
    }
    .news-list .item .text-con {
        margin-top: .3rem;
        padding-bottom: .4rem;
    }
}

@media (max-width:540px) {
    .news .com-news .swiper-container .pic {
        width: 100%;
        margin-right: 0;
        padding-top: 54%;
    }
    .news .com-news .button {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        top: 2rem;
    }
    .news .com-news li,
    .news .hgu li {
        width: 100%;
        margin-right: 0;
    }
}


/* 联系 */

.pub-title {
    line-height: 43px;
    height: 43px;
}

.pub-title span {
    width: 265px;
    background: url(../images/titbg.png)no-repeat center;
    background-size: cover;
    color: #FFF;
    font-size: 22px;
    font-weight: bold;
}

.contact {
    background-image: url(../images/bg6.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact .container,
.jiankang .container {
    background-color: #FFF;
    padding: 60px 65px;
}

.contact .box {
    margin-top: 85px;
}

.contact .title {
    font-size: 22px;
    font-weight: bold;
}

.contact .info {
    font-size: 18px;
    line-height: 1.8;
    /* margin-top: 20px; */
}

.contact .text {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 30px;
}

.contact .text strong {
    color: #c67f05;
    font-size: 22px;
}

.contact .media .item {
    margin-top: 30px;
    width: 160px;
    padding: 20px;
    border: 1px #e1e1e1 solid;
    margin-right: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contact .media .item .tit {
    font-size: 16px;
}

.contact .media .item .pic {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.contact .shop {
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact .shop a {
    margin-right: 40px;
    margin-top: 20px;
}

.contact .shop a:last-of-type {
    margin-right: 0;
}

.contact .form {
    margin-top: 40px;
}

#contact-form .fluentform .ff-el-input--label {
    display: none;
}
#contact-form .frm-fluent-form .ff-t-container {
    display: flex;
    gap: 20px;
}
#contact-form .fluentform .ff-el-group {
    margin-bottom: 15px;
}
#contact-form .ff_submit_btn_wrapper {
    display: none;
}

.contact .form .group {
    margin-bottom: 15px;
    margin-right: 20px;
}
.contact .form .group_messg{ margin-right: 0;}

.contact .form .group:last-child {
    margin-right: 0;
}

#contact-form .fluentform .ff-el-form-control,
.contact .form .group input[type='text'] {
    border: 1px #b2b2b2 solid;
    height: 45px;
    padding: 0 20px;
    font-size: 17px;
    width: 100%;
    border-radius: 0;
}

#contact-form .fluentform textarea.ff-el-form-control,
.contact .form .group textarea {
    width: 100%;
    height: 170px;
    border: 1px #b2b2b2 solid;
    padding: 20px;
    font-size: 17px;
    font-family: 'Microsoft YaHei', arial, sans-serif;
}

#contact-form .submit,
.contact .form .group input[type='submit'] {
    position: relative;
    width: 100%;
    background-color: #c67f05;
    color: #FFF;
    height: 45px;
    font-size: 15px;
}

.jiankang {
    background: url(../images/bg7.png);
}

.jiankang .kepu {
    margin-bottom: 100px;
}

.jiankang .kepu .item {
    position: relative;
    margin-top: 60px;
    width: 30%;
    margin-right: 5%;
    cursor: pointer;
}

.jiankang .kepu .item:nth-child(3n) {
    margin-right: 0;
}

.jiankang .kepu .item .pic {
    width: 100%;
    padding-top: 131%;
    overflow: hidden;
}

.jiankang .kepu .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.jiankang .kepu .item .tit {
    width: 100%;
    background-color: #d38b1e;
    line-height: 60px;
    color: #FFF;
    font-size: 20px;
    margin-top: 20px;
}

.jiankang .kepu .item .tit.s2 {
    color: #000;
    line-height: 1.4;
    background: transparent;
}

.jiankang .shipu {
    margin-top: 50px;
}

.jiankang .shipu .item {
    position: relative;
    margin-bottom: 30px;
    width: 32%;
    margin-right: 2%;
    cursor: pointer;
}

.jiankang .shipu .item:nth-child(3n) {
    margin-right: 0;
}

.jiankang .shipu .item .pic {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 57%;
}

.jiankang .shipu .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.jiankang .shipu .item .tit {
    margin-top: 25px;
}

.jiankang .kepu .item:hover .tit.s2,
.jiankang .shipu .item:hover .tit {
    color: #005028;
}

.jiankang .kepu .item.video-type .pic::before,
.jiankang .shipu .item.video-type .pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    z-index: 1;
}

.jiankang .kepu .item.video-type .pic::after,
.jiankang .shipu .item.video-type .pic::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    background: url(../images/play2.png) no-repeat center;
    background-size: contain;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.video {
    background: url(../images/bg8.jpg)no-repeat center;
    background-size: cover;
}

.video .container {
    padding: 70px 50px;
    background-color: #FFF;
}

.video ul {
    margin-bottom: 60px;
}

.video li {
    margin-top: 40px;
    width: 31%;
    margin-right: 3.5%;
    cursor: pointer;
}

.video li:hover .tit {
    color: #005028;
}

.video li:nth-of-type(3n) {
    margin-right: 0;
}

.video li .pic {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 58%;
}

.video li .pic::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

.video li .pic span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 2;
    width: 54px;
    height: 54px;
    background: url(../images/play2.png)no-repeat center;
    background-size: 100%;
}

.video li .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.video li .tit {
    margin-top: 20px;
}

.job .point {
    position: relative;
    top: -120px;
}

.job .text-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.job .pic-con {
    width: 49.2%;
    z-index: 5;
    margin-right: 6%;
}

.job .pic-con::after {
    content: '';
    position: absolute;
    right: -25px;
    bottom: -25px;
    background-color: #d9e5df;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    top: 40px;
    left: 175px;
    z-index: -1;
}

.job .pic-con .pic {
    z-index: 5;
    overflow: hidden;
    width: 100%;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.job .pic-con .pic img {
    width: 100%;
}

.job .text-content .title {
    color: #005028;
    font-weight: bold;
    font-size: 28px;
    margin-top: 20px;
}

.job .fulltext {
    font-size: 19px;
    margin-top: 25px;
}

.job .text-content .text {
    width: 100%;
    font-size: 16px;
    margin-top: 40px;
    line-height: 1.7;
    color: #666;
    height: 200px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-image: linear-gradient(#005028, #005028);
}

.job .list {
    background-color: #f5f5f5;
    padding: 60px 0 50px 0;
}

.job .list .title {
    font-size: 28px;
    color: #005028;
    font-weight: bold;
}

.job .list .th {
    background-color: #005028;
    color: #FFF;
    padding-left: 80px;
    margin-top: 40px;
    line-height: 50px;
    font-size: 16px;
    font-weight: bold;
}

.job .list ul {
    background-color: #FFF;
}

.job .list li .tit {
    padding: 30px 0 30px 80px;
    border-bottom: 1px #e3e3e3 solid;
    font-size: 16px;
    cursor: pointer;
}

.job .list li .mc {
    color: #005028;
    font-weight: bold;
}

.job .list li .sub {
    padding: 50px 90px;
    display: none;
}

.job .list li .sub h3 {
    font-size: 16px;
    line-height: 1.8;
}

.job .list li .sub .text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.job .list li .sub .btn {
    margin-top: 30px;
    background-color: #005028;
    color: #FFF;
    line-height: 50px;
    width: 160px;
}

.job .team {
    margin-top: 70px;
    margin-bottom: 80px;
}

.job .team .title {
    font-size: 28px;
    color: #005028;
    font-weight: bold;
}

.job .team ul {
    margin-top: 40px;
}

.job .team li {
    margin-top: 30px;
    width: 24.25%;
    margin-right: 1%;
    cursor: pointer;
}

.job .team li:nth-of-type(4n) {
    margin-right: 0;
}

.job .team li .pic {
    overflow: hidden;
    width: 100%;
    padding-top: 64%;
}

.job .team li .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.job .team li .text {
    margin-top: 20px;
}

.subpro {
    margin-top: 65px;
}

.subpro .item {
    width: 24%;
    background: url(../images/tbg3.png)no-repeat center;
    background-size: cover;
    margin-right: 1%;
    height: 105px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.subpro .item:last-child {
    margin-right: 0;
}

.subpro .item .icon {
    width: 55px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 20px;
}

.subpro .item .text {
    font-weight: bold;
    color: #005028;
    font-size: 21px;
}

.subpro .item.on {
    background-image: url(../images/tbg4.jpg);
    box-shadow: 0 0 10px rgba(220, 118, 1, .5);
}

.subpro .item.on .text {
    color: #FFF;
}

.subpro .item .icon .i2 {
    display: none;
}

.subpro .item.on .icon .i2, 
.subpro .item:hover .icon .i2 {
    display: block;
}

.subpro .item.on .icon .i1, 
.subpro .item:hover .icon .i1 {
    display: none;
}

.pro-list {
    margin-top: 25px;
    margin-bottom: 120px;
}

.pro-list .item {
    width: 49%;
    overflow: hidden;
    padding-top: 23.5%;
    margin-top: 20px;
    padding-left: 30px;
}

.pro-list .item:nth-child(1) {
    background: -webkit-radial-gradient( #FFF 20%, #f5c595);
}

.pro-list .item:nth-child(2) {
    background: -webkit-radial-gradient( #FFF 20%, #bae677);
}

.pro-list .item:nth-child(3) {
    background: -webkit-radial-gradient( #FFF 20%, #9ad9f8);
}

.pro-list .item:nth-child(4) {
    background: -webkit-radial-gradient( #FFF 20%, #bba5e6);
}

.pro-list .item:nth-child(5) {
    background: -webkit-radial-gradient( #FFF 20%, #f4b1b1);
}

.pro-list .item:nth-child(6) {
    background: -webkit-radial-gradient( #FFF 20%, #f8d4b0);
}

.pro-list .item:nth-child(7) {
    background: -webkit-radial-gradient( #FFF 20%, #e2b3fa);
}

.pro-list .item:nth-child(8) {
    background: -webkit-radial-gradient( #FFF 20%, #f8e184);
}

.pro-list .item:nth-child(9) {
    background: -webkit-radial-gradient( #FFF 20%, #c7ec92);
}

.pro-list .item:nth-child(10) {
    background: -webkit-radial-gradient( #FFF 20%, #c3d3f1);
}

.pro-list .item .text-con {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.pro-list .item .pic {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 61%;
    top: 50px;
}

.pro-list .item .pic img {
    max-width: 100%;
    max-height: 100%;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.pro-list .item .tit {
    font-size: 20px;
}

.pro-list .item .ck {
    border: 1px #333333 solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    line-height: 40px;
    padding: 0 30px;
    margin-top: 30px;
}

.pro-details {
    margin-top: 70px;
    margin-bottom: 130px;
}

.pro-details .title {
    overflow: hidden;
    color: #005028;
    font-size: 29px;
    font-weight: bold;
    z-index: 3;
}

.pro-details .title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #005028;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: -1;
}

.pro-details .title span {
    background-color: #FFF;
    padding: 0 40px;
}

.pro-details .title span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #005028;
}

.pro-details .title span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #005028;
}

.pro-details .des {
    line-height: 2;
    margin-top: 40px;text-align: left; text-indent: 2rem;
}

.pro-details .gallery-top {
    margin-top: 40px;
    background: -webkit-radial-gradient( #FFF 20%, #faf6c4);
    padding-top: 40px;
    padding-bottom: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.pro-details .gallery-top .swiper-slide {
    cursor: pointer;
    width: 20%;
}

.pro-details .gallery-top .pic {
    max-width: 70%;
    height: 235px;
    margin: 0 auto;
}

.pro-details .gallery-top .pic img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.pro-details .gallery-top .tit {
    margin-top: 20px;
}

.pro-details .swiper-button-black {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #003340 solid;
    width: 40px;
    height: 40px;
    background-size: 14px;
}

/* .pro-details .swiper-slide-active .tit  */
.pro-details .swiper-slide.on .tit 
{
    font-weight: bold;
    color: #005028;
}

.pro-details .body {
    background-color: #FFF;
    margin-top: 90px;
    padding: 50px;
    box-shadow: 0 0 30px rgba(0, 80, 40, .4);
}

/* .pro-details .body::after, */
.pro-details .body .mark {
    content: '';
    position: absolute;
    left: 10%;
    width: 0;
    height: 0;
    top: -20px;
    border-left: 20px transparent solid;
    border-right: 20px transparent solid;
    border-bottom: 20px #FFF solid;
    margin-left: -20px;
    transition: all .3s;
}

.pro-details .body .content {
    font-size: 18px;
    line-height: 2;
    margin-top: 70px;
}

.pro-details .body .content img {
    max-width: 100%;
    display: block;
}

.book {
    display: none;
    margin-top: .5rem;
    overflow: hidden;
}

.book img {
    width: 100%;
}

@keyframes progress-anim {
    0% {
        width: 0
    }

    5% {
        width: 0
    }

    10% {
        width: 15%
    }

    30% {
        width: 40%
    }

    50% {
        width: 55%
    }

    80% {
        width: 100%
    }

    95% {
        width: 100%
    }

    to {
        width: 0
    }
}

#contact-form .submit.working {
    cursor: progress;
}

#contact-form .submit.working::after {
    animation: progress-anim 4s 0s infinite;
    background: hsla(0, 0%, 100%, .4);
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
}

.rich-text p::after {
    content: "";
    display: block;
    clear: both;
}
.rich-text img{
    display: block;
    max-width: 100%;
    height: auto;
}

@media (min-width:1025px) {
    .jiankang .shipu .item:hover .pic img,
    .jiankang .kepu .item:hover .pic img,
    .video li:hover .pic img,
    .pro-list .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .jiankang .kepu .item:hover .tit,
    .jiankang .shipu .item:hover .tit,
    .video li:hover .tit {
        text-decoration: underline;
    }
    .subpro .item:hover {
        background-image: url(../images/tbg4.jpg);
        box-shadow: 0 0 10px rgba(220, 118, 1, .5);
    }
    .subpro .item:hover .text {
        color: #FFF;
    }
    .pro-list .item:hover .ck {
        background-color: #005028;
        color: #FFF;
    }
    .pro-list .item:hover .tit {
        font-weight: bold;
    }
}

@media (max-width:1366px) {
    .job .text-content .title,
    .job .list .title,
    .job .team .title,
    .pro-details .title {
        font-size: 24px;
    }
    .job .fulltext {
        font-size: 18px;
    }
    .job .text-content .text {
        font-size: 15px;
    }
}

@media (max-width:1199px) {
    .contact .container,
    .jiankang .container,
    .video .container {
        padding: .6rem;
    }
    .contact .box {
        margin-top: .8rem;
    }
    .contact .title {
        font-size: 20px;
    }
    .contact .info,
    .jiankang .kepu .item .tit,
    .pro-list .item .tit {
        font-size: 17px;
    }
    .contact .text {
        font-size: 15px;
    }
    .contact .media .item {
        padding: .2rem;
    }
    .jiankang .kepu {
        margin-bottom: 1rem;
    }
    .jiankang .kepu .item,
    .jiankang .shipu {
        margin-top: .5rem;
    }
    .jiankang .shipu .item {
        margin-bottom: .3rem;
    }
    .jiankang .shipu .item .tit {
        margin-top: .3rem;
    }
    .video li .pic span {
        width: .8rem;
        height: .8rem;
    }
    .video li .tit,
    .job .fulltext {
        margin-top: .2rem;
    }
    .video ul {
        margin-bottom: .6rem;
    }
    /* .video li, */
    .job .text-content .text {
        margin-top: .4rem;
        height: 2.6rem;
    }
    .job .text-content {
        padding-top: .6rem;
        padding-bottom: .6rem;
    }
    .job .text-content .title {
        margin-top: 0;
    }
    .job .pic-con::after {
        right: -.25rem;
        bottom: -.25rem;
        left: 1.7rem;
        top: .4rem;
    }
    .job .list .th,
    .job .list li .tit {
        padding-left: .6rem;
        font-size: 15px;
    }
    .job .list li .tit {
        padding-top: .3rem;
        padding-bottom: .3rem;
    }
    .pro-list .item {
        margin-top: .2rem;
        padding-left: .2rem;
    }
    .pro-list .item .pic {
        top: .5rem;
    }
    .pro-list .item .text-con {
        left: .2rem;
    }
    .pro-list .item .ck {
        padding-left: .3rem;
        padding-right: .3rem;
    }
    .pro-list .item .pic {
        width: 55%;
    }
    .pro-list .item .ck {
        margin-top: .3rem;font-size: 13px;
    }
    .subpro,
    .pro-details {
        margin-top: .6rem;
    }
    .subpro .item {
        height: 1.15rem;
    }
    .subpro .item .text,
    .pro-details .title {
        font-size: 20px;
    }
    .subpro .item .icon {
        width: .55rem;
        height: .6rem;
    }
    .pro-list {
        margin-top: .4rem;
        margin-bottom: .7rem;
    }
    .pro-details .des {
        margin-top: .4rem;
    }
    .pro-details .body {
        margin-top: .9rem;
        padding: .5rem .3rem;
    }
    /* .pro-details .body::after {
        left: 1.4rem;
    } */
    .pro-details .body .content {
        margin-top: .6rem;
        font-size: 15px;
    }
    .pro-details {
        margin-bottom: 1rem;
    }
    .about .xiaoshou {
        padding-bottom: .7rem;
    }
    .job .list li .sub {
        padding: .4rem .6rem;
    }
    .pro-details .gallery-top .swiper-slide {
        width: 25%;
    }
}

@media (max-width:990px) {
    .video li {
        width: 48%;
        margin-right: 4%;
    }
    .video li:nth-child(even) {
        margin-right: 0;
    }
    .job .pic-con {
        margin-right: .6rem;
    }
    .job .fulltext {
        font-size: 16px;
    }
    .job .text-content .title,
    .job .list .title,
    .job .team .title {
        font-size: 20px;
    }
    /* .video li, */
    .job .text-content .text {
        height: 2.4rem;
    }
    .job .team li {
        width: 49%;
        margin-right: 2%;
    }
    .job .team li:nth-child(even) {
        margin-right: 0;
    }
    .subpro .item .text {
        font-size: 17px;
    }
}

@media (max-width:767px) {
    .jiankang .kepu .item {
        width: 47.5%;
    }
    .jiankang .kepu .item:nth-child(3n) {
        margin-right: 0;
    }
    .jiankang .kepu .item:nth-child(even) {
        margin-right: 0;
    }
    .jiankang .kepu .item:nth-child(odd) {
        margin-right: 5%;
    }
    .jiankang .container {
        padding: .4rem .3rem;
    }
    .jiankang .shipu .item {
        width: 48%;
        margin-right: 4%;
    }
    .jiankang .shipu .item:nth-child(3n) {
        margin-right: 4%;
    }
    .jiankang .shipu .item:nth-child(even) {
        margin-right: 0;
    }
    .jiankang .shipu .item:nth-child(odd) {
        margin-right: 4%;
    }
    .job .pic-con {
        width: 100%;
        margin-right: 0;
        order: 2;
        margin-top: .3rem;
    }
    .job .pic-con::after {
        display: none;
    }
    .job .text-content .text-con {
        order: 1;
    }
    .job .text-content .text {
        height: auto;
    }
    .job .list .th,
    .job .list li .tit {
        padding-left: .4rem;
        font-size: 14px;
    }
    .pro-list {
        margin-top: .2rem;
    }
    .pro-list .item {
        width: 100%;
        padding-top: 40%;
    }
    .subpro .item {
        width: 49%;
        margin-top: .3rem;
    }
    .subpro .item:nth-child(even) {
        margin-right: 0;
    }
    .subpro .item .icon {
        margin-right: .2rem;
    }
	.subpro .item .icon img{width: 100%;}
    .job .list li .sub {
        padding: .4rem;
    }
    .job .team{margin-top: 45px;}
    .job .team ul{margin-top: 15px;}
    .job .list{padding: 30px 0 50px 0;}
    .pro-details .gallery-top .swiper-slide {
        width: 50%;
    }
    .book {
        display: block;
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .book .swiper-button-black {
        background-size: 16px;
    }
    .pro-details .gallery-top .pic {
        height: 180px;
    }
    .pro-details .body .mark {
        left: 25%;
    }
}

@media (max-width:540px) {
    .contact .container,
    .video .container {
        padding: .3rem;
    }
    .pub-title span,
    .contact .text strong {
        font-size: 20px;
    }
    .contact .title {
        font-size: 18px;
    }
    .subpro .item .text {
        font-size: 16px;
    }
    .contact .info,
    .jiankang .kepu .item .tit {
        font-size: 15px;
    }
    .contact .text {
        font-size: 14px;
    }
    .contact .media .item {
        width: 49%;
        margin-right: 2%;
    }
    .contact .media .item:nth-child(even) {
        margin-right: 0;
    }
    .contact .form .group {
        flex: none;
        width: 100%;
        margin-right: 0;
    }
    #contact-form .frm-fluent-form .ff-t-container {
        flex-direction: column;
        gap: 0;
    }
    .jiankang .kepu .item,
    .jiankang .shipu .item,
    .video li {
        width: 100%;
        margin-right: 0 !important;
    }
    .job .list .th,
    .job .list li .tit {
        padding-left: .2rem;
        font-size: 13px;
    }
    .job .list .go {
        display: none;
    }
    .job .team li {
        width: 100%;
        margin-right: 0;
    }
    .subpro {
        margin-top: .2rem;
    }
    .job .list li .sub {
        padding: .4rem .2rem;
    }
}

.ff-message-success,.ff-form-loading_errors,.ff-errors-in-stack {
    display: none!important
}
.fluentform .ff_submitting {
    pointer-events: auto!important
}
.fluentform .text-danger {
    color: #f56c6c !important;
}


.maskBg {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0
}

.videoShow {
    width: 60vw;
    height: calc(60vw * 0.5);
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.maskBg.active {
    opacity: 1;
}

.videoShow.active {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.videoShow .close {
    color: #FFF;
    position: absolute;
    right: 0;
    top: -.3rem;
    background: url(../images/close.svg)no-repeat left center;
    background-size: .2rem;
    padding-left: .3rem;
    cursor: pointer;
}

.popup.tip .container {
    background: #fff;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    padding: 0
}

.popup.tip .title {
    font-size: 20px;
    text-align: center;
    color: #000
}

.popup.tip .txt {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    color: #666;
    padding: 0 20px
}

.popup.tip .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #198f54;
    border-radius: 50%;
    background-image: url(../images/correct.png);
    margin-top: 30px;
    margin-bottom: 20px;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat
}

.popup.tip .opt {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer
}

.popup.tip .opt .btn {
    color: #000;
    font-size: 16px;
    border-radius: 6px
}

.popup.iframe .container {
    width: 60vw;
    height: calc(60vw * 0.5);
    padding: 0
}

.popup.iframe iframe {
    width: 100%;
    height: 100%;
    background: #000
}

.videoShow .close,
.popup.iframe .close {
    position: absolute;
    right: 0;
    top: -30px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    background: url(../images/close.svg)no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    padding-right: 5px;
}

.popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10000
}

.popup .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5)
}

.popup.iframe .mask {
    background: rgba(0,0,0,.8)
}

.popup .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.alignleft {
    float: left;
    margin: .5em 1em .5em 0
}

.alignright {
    float: right;
    margin: .5em 0 .5em 1em
}

.news-search-list span.key {
    color: #da9c5e;
}

@media (max-width: 1199px) {
    .videoShow,
    .popup.iframe .container {
        width: 80vw;
        height: calc(80vw * 0.5);
    }
}

@media (max-width: 767px) {
    .videoShow,
    .popup.iframe .container {
        width: 90vw;
        height: calc(90vw * 0.5);
    }
}

@media (max-width: 540px) {
    .popup.tip .icon {
        width:80px;
        height: 80px
    }
}

