/* 公共 */
/*主色：#009944 */
/* 主字体色：#191919# */
/*初始化*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
img,
div,
a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

fieldset,
img {
    border: 0;
}

/* 滚动条 */
/* ::-webkit-scrollbar ：滚动条整体部分，其中的属性有width,height,background,border等。 */
/* ::-webkit-scrollbar-button ：滚动条两端的按钮。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果。 */
/* ::-webkit-scrollbar-track ：外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果。 */
/* ::-webkit-scrollbar-track-piece ：内层轨道，需要注意的就是它会覆盖第三个属性的样式。 */
/* ::-webkit-scrollbar-thumb ：滚动条里面可以拖动的那部分 */
/* ::-webkit-scrollbar-corner ：边角，两个滚动条交汇处 */
/* ::-webkit-resizer ：两个滚动条交汇处用于拖动调整元素大小的小控件 */

body::-webkit-scrollbar {
    width: 8px;
    background: #e0e0e0;
}

body::-webkit-scrollbar-button {
    display: none;
}

body::-webkit-scrollbar-thumb {
    background: #009944;
    border-radius: 2px;
}

/* 滚动条 结束 */

/* 公共的aside */
.ww-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 64px;
}

.ww-left {
    width: calc(100% - 772px);
}

.ww-right {
    width: 772px;
}

.ww-left-box {
    display: inline-block;
    position: -webkit-sticky;
    /* Safari  */
    position: sticky;
    top: 80px;

}

.ww-left-title-h3 {
    position: relative;
}

.ww-left-title-h3>a {
    font-size: 18px;
    color: #191919;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.ww-left-title-h3:hover::after {
    background-image: url(../images/right_active.png);
}

.ww-left-title-h3::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #848484;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ww-left-title-h3::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/right.png);
    background-size: 100% 100%;
    position: relative;
    top: 2px;
    left: 6px;
}

.ww-left-item>li {
    padding: 10px 18px 0 0;
    text-align: right;
}

.ww-left-item>li>a {
    font-size: 14px;
    color: #191919;
}

.ww-left-item-box {
    margin-bottom: 42px;
}

.ww-left-item-box .t-active>a {
    color: #009944;
}

.ww-left-item-box .t-active::after {
    background-image: url(../images/right_active.png);
}

.ww-left a:hover {
    color: #009944;
}

/* 公共的aside 结束 */

/* 公共的面包屑 */
.navMenbox {
    margin: 0 auto;
    max-width: 864px;
    width: 100%;
}

.navMenbox a {
    display: inline-block;
    color: #191919;
    margin: 0 6px;
}

.navMenbox a:first-child {
    margin-left: 0;
}

.navMenbox a:hover {
    text-decoration: underline;
}

.navMenbox i {
    background-image: url(../images/navMenu-icon.png);
    width: 13px;
    height: 13px;
    background-size: 100% 100%;
    display: inline-block;
}

/* 公共的面包屑 结束 */

/* 内容宽度 */
.box {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}

/* 首页内容宽度 */
.index-container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 44px;
}

/* 公共结束 */

/* 顶部 */

.down-box {
    display: none;
}

.header-mobile-logo,
.mobile-header-shopping2 {
    display: none;
}

.header-box {
    width: 100%;
    background-color: #f9f9f9;
    padding: 40px 0;
    box-shadow: 0 2px 3px rgb(197 197 197 / 50%);
    margin: 0 auto;
}

.header {
    display: flex;
    align-items: flex-end;
    width: 864px;
    margin: 0 auto;
    box-sizing: border-box;
}

.header-logoBox>a {
    display: block;
}

.header .header-logo {
    height: 76px;
}

.header .header-logo img {
    height: 100%;
}

.header .header-nav {
    padding-left: 30px;
    padding-right: 26px;
    box-sizing: border-box;
    flex: 1;
}

.header .header-nav-ul {
    display: flex;
    height: 100%;
    align-items: flex-end;
}

.header .header-nav-ul>li {
    flex: 1;
}

.header .header-nav-ul a {
    font-size: 16px;
    color: #191919;
}

.header .header-nav-ul a:hover {
    color: #009944;
}

.header .header-nav-ul>li>.nav-mobile-active>a,
.header .down-box>li .nav-active {
    color: #009944;
}


.header-shopping-item:nth-child(1) {
    margin-bottom: 4px;
}

.header .header-shopping-text1,
.header .header-shopping-text2 {
    color: #000;
    font-size: 10.5px;
}

.header-shopping-item {
    margin-bottom: 0;
}

.header .header-shopping a:hover {
    color: #009944;
}

.header .header-shopping-text1::before,
.header .header-shopping-text2::before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 4px;
    background-size: 100% 100%;
    position: relative;
    top: 3px;
}

.header .header-shopping-text1::before {
    background-image: url(../images/tmall.png);
}

.header .header-shopping-text2::before {
    background-image: url(../images/jd.png);

}

/* 顶部结束 */

/* 轮播图-banner */
#banner {
    position: relative;
}

#banner .banner-ctrl {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    align-items: center;

}

#banner .banner-pagination {
    margin-top: -2px;
}

#banner .banner-pagination>.swiper-pagination-bullet {
    margin: 0 10px;
    display: inline-block;
    background-color: rgba(131, 131, 131, .4);
    opacity: 1;
    outline: none;
}

#banner .banner-pagination>.swiper-pagination-bullet-active {
    background-color: #fff;
}

#banner .banner-prev,
#banner .banner-next {
    outline: none;
    cursor: pointer;
    width: 10px;
    /* background-image: url(../images/banner-ctrl.png);
    background-size: 100% 100%;
    background-repeat: no-repeat; */
}

#banner .banner-prev img {
    transform: rotate(-180deg);
}

#banner .banner-prev img,
#banner .banner-next img {
    width: 100%;
}

#banner .banner-prev {
    margin-right: 10px;
}

#banner .banner-next {
    margin-left: 10px;
}

/* 轮播图-banner 结束 */

/* 首页公共标题 */
.text-title-box {
    width: 100%;
    text-align: center;
}

.text-title,
.text-en-title {
    color: #009944;
}

.text-title {
    font-size: 40px;
    font-weight: 550;
    font-family: "Microsoft YaHei", "微软雅黑";
    margin-bottom: 2px;
}

.text-en-title {
    font-size: 16px;
    font-weight: lighter;
    font-family: "Bahnschrift Regular", "Microsoft YaHei", "微软雅黑";
}

/* 首页公共标题结束 */

/* 首页新闻 */
.inews {
    position: relative;
}

.inews .news-list {
    margin-top: 26px;
}

.inews .swiper-slide .news-list-item {
    padding: 4px;
}

.inews .news-list-ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.inews .news-list-ul-li {
    /* width: 264px; */
    /* margin-right: 30px; */
    margin-bottom: 48px;
}


.inews .news-list-item {
    border-radius: 30px;
}

.inews .news-list-item-img>a {
    display: block;
}

.inews .news-list-item-img,
.inews .news-list-item-text {
    overflow: hidden;
}

.inews .news-list-item-img {
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 5px #ccc;
    height: 184px;
}

.inews .news-list-item-img:hover img {
    transform: scale(1.2);
}

.inews .news-list-item-img a {
    height: 100%;
}

.inews .news-list-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .4s;
}

.inews .news-list-item-text {
    padding: 18px 25px 30px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 0 5px #ccc;
}

.inews .news-list-item-text>.news-list-item-time {
    font-size: 27px;
    padding-bottom: 20px;
    position: relative;
    font-weight: 550;
}

.inews .news-list-item-text>.news-list-item-time a {
    color: #009944;
}

.inews .news-list-item-text>.news-list-item-time a:hover {
    text-decoration: underline;
}

.inews .news-list-item-text>.news-list-item-time::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    background-color: #009944;
    position: absolute;
    bottom: 0;
    left: 0;
}

.inews .news-list-item-text>p>a {
    color: #3f3f3f;
    padding-top: 20px;
    font-size: 16px;
    display: block;
    text-align: justify;
}

.inews .news-list-item-text>p>a:hover {
    text-decoration: underline;
}

.inews .banner-ctrl {
    margin-top: 34px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    align-items: center;

}

.inews .banner-pagination {
    margin-top: -2px;
}

.inews .banner-pagination>.swiper-pagination-bullet {
    margin: 0 10px;
    display: inline-block;
    background-color: #838383;
    opacity: 1;
    outline: none;
}

.inews .banner-pagination>.swiper-pagination-bullet-active {
    background-color: #009944;
}

.inews .banner-prev,
.inews .banner-next {
    outline: none;
    cursor: pointer;
    width: 10px;
    /* background-image: url(../images/banner-ctrl.png);
    background-size: 100% 100%;
    background-repeat: no-repeat; */
}

.inews .banner-prev img {
    transform: rotate(-180deg);
}

.inews .banner-prev img,
.inews .banner-next img {
    width: 100%;
}

.inews .banner-prev {
    margin-right: 10px;
}

.inews .banner-next {
    margin-left: 10px;
}

/* 首页新闻 结束 */


/* 集团品牌 */
.brand-box {
    width: 100%;
    padding-top: 92px
}

.brand-box .brand-content {
    padding-top: 26px;
}

.brand-box .brand-content-ul {
    display: flex;
    justify-content: space-between;
}

.brand-box .brand-content-li {
    width: 202px;
    height: 202px;
    border-radius: 20px;

}

.brand-box .brand-content-li img {
    transition: all .4s;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.brand-box .brand-content-li a {
    display: block;
    height: 100%;
}

.brand-box .brand-content-li:hover img {
    transform: scale(1.1);
}

.ww-brand-content-c {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ww-brand-content-c>li {
    width: 32.3%;
    margin-right: 1.5%;
    margin-bottom: 44px;
}

.ww-brand-content-c>li:nth-child(3n) {
    margin-right: 0;
}

.ww-brand-content-c img {
    background-color: #f3f3f3;
    width: 100%;
}

.ww-brand-content-c p {
    color: #191919;
    font-size: 20px;
    text-align: center;
    line-height: 34px;
}

/* 集团品牌 结束 */

/* 全球合作伙伴 */
.pathner-box {
    margin-top: 92px;
}

.pathner-box .prthner-content {
    padding: 26px;
}

.pathner-box .prthner-content-text p {
    width: 82%;
    margin: 0 auto;
    font-size: 14px;
    color: #000000;
    line-height: 25px;
    padding-bottom: 24px;
}

.pathner-box img {
    width: 100%;
}

/* 全球合作伙伴结束 */
/* 首页内容 结束 */

/* 关于我们模块 */
/* 集团简介 */
.ww-content {
    margin-top: 30px;
}

.about-text-content {
    line-height: 40px !important;
    font-size: 16px;
    color: #191919 !important;
}

.about-text-content img {
    text-indent: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 20px 0 10px;
    height: auto !important;
}

/* 集团文化 */
.about-wenhua-list-box {
    display: flex;
    flex-wrap: wrap;
    height: 595px;
    margin-bottom: 42px;
}

.about-wenhua-list-box .about-wenhua-item-colum {
    margin-right: 4%;
}

.about-wenhua-list-box .about-wenhua-item-colum:last-child {
    margin-right: 0;
}

.about-wenhua-item {
    border-radius: 20px;
    background: #009944;
    padding: 28px;
}

.item-colum1 {
    width: 28%;
}

.item-colum1>div:first-child {
    height: 335px;
    background-image: url(../images/wenhua_1.jpg);
}

.item-colum1>div:last-child {
    height: 238px;
    background-image: url(../images/wenhua_2.jpg);
}

.item-colum2 {
    width: 30%;
}

.item-colum2>div:first-child {
    height: 214px;
    background-image: url(../images/wenhua_3.jpg);
}

.item-colum2>div:last-child {
    height: 358px;
    background-image: url(../images/wenhua_4.jpg);

}

.item-colum3 {
    width: 34%;
}

.item-colum3>div:first-child {
    height: 298px;
    background-image: url(../images/wenhua_5.jpg);
}

.item-colum3>div:last-child {
    height: 275px;
    background-image: url(../images/wenhua_6.jpg);
}

.about-wenhua-list-box .about-wenhua-item-colum {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.about-wenhua-item {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.about-wenhua-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, transparent, #000);
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.about-wenhua-item-title {
    position: relative;
    z-index: 2;
}

.about-wenhua-item-title div {
    position: absolute;
    right: 0;
    bottom: 2px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    font-weight: 550;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-wenhua-item-title div {
    -o-user-select: none;
    -moz-user-select: none;
    /*火狐 firefox*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -ms-user-select: none;
    /*IE10+*/
    -khtml-user-select: none;
    /*早期的浏览器*/
    user-select: none;
}

.about-wenhua-item-title h4 {
    font-size: 28px;
    color: #fff;
    padding-bottom: 8px;
}

.about-wenhua-item-text {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    position: relative;
    z-index: 2;
}

/* 股东 */
.person-box {
    padding-left: 44px;
}

.person-box img {
    display: block;

}

.person-box .person-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 32px;
    width: 100%;
}

.person-box .person-item {
    width: 100%;
    display: flex;
    background-image: url(../images/person-bg.png);
    background-repeat: no-repeat;
    background-position: top right;
    margin-bottom: 68px;
}


.person-box .person-item:last-child {
    margin-bottom: 0;
}

.person-box .person-name h3 {
    font-size: 38px;
    color: #009944;
    position: relative;
    z-index: 1;
}

.person-name {
    position: relative;
}

.person-name>div {
    position: absolute;
    top: -70px;
    right: 0;
    -o-user-select: none;
    -moz-user-select: none;
    /*火狐 firefox*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -ms-user-select: none;
    /*IE10+*/
    -khtml-user-select: none;
    /*早期的浏览器*/
    user-select: none;
    text-transform: uppercase;
    color: rgba(25, 25, 25, .1) !important;
    font-size: 100px !important;
    font-weight: 550 !important;
    letter-spacing: -1px;
}

.person-box .person-note {
    font-size: 20px;
    font-weight: 550;
    margin: 4px 0;
    color: #009944 !important;
}

.person-box .person-content {
    font-size: 14px !important;
    color: #191919 !important;
    font-weight: normal !important;
    line-height: 25px !important;

}

/* 发展历程 */
.course-bg {
    width: 554px;
    background: url(../images/licheng-bg-tou.png) center 8px no-repeat;
    overflow: hidden;
    margin: 0 auto;
}

.course-box {
    margin-top: 45px;
}

.sourse-item {
    display: flex;
    justify-content: space-between;
    background: url(../images/licheng-line.png) center top repeat-y;
    position: relative;
    padding-top: 30px;
}

.item-bg-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-10px);
    top: 36px;
}

.item-bg-bg2 {
    position: absolute;
    right: 50%;
    transform: translateX(10px) rotate(180deg);
    top: 33px;
}

.sourse-left-one {
    width: 50%;
    padding-right: 24px;
}

.course-bg .sourse-left-title h3 {
    font-size: 25px;
    color: #009944;
    font-weight: 400;
}

.course-bg .sourse-left-one-title h3 {
    text-align: right;
}

.course-bg .sourse-left-content {
    color: #191919;
    font-size: 16px;
    font-weight: normal !important;
    letter-spacing: 1px;
    line-height: 24px;
}

.course-bg .sourse-left-one-content {
    position: relative;
    padding-right: 15px;
    text-align: right;
}

.course-bg .sourse-left-one-content::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #009944;
    position: absolute;
    right: 5px;
    top: 9px;
    border-radius: 50%;
}

.sourse-right {
    width: 50%;
}

.sourse-right-one {
    text-align: right;
}


.sourse-left-tow-content {
    text-align: left;
    position: relative;
    padding-left: 15px;
}

.sourse-left-tow-content::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #009944;
    position: absolute;
    left: 5px;
    top: 9px;
    border-radius: 50%;
}

.sourse-left-tow {
    width: 50%;
    padding-left: 24px;
}

.sourse-right-tow {
    margin-top: -78px;
}

/* 历年获奖 */
.prize-box .news-list-ul-li2 {
    width: 31.3%;
    margin-right: 3%;
    margin-bottom: 28px;
}

.prize-box .news-list-ul-li2:nth-child(3n) {
    margin-right: 0;
}


.prize-box .news-box {
    position: relative;
}

.prize-box .news-list {
    margin-top: 26px;
}


.prize-box .news-list-ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.prize-box .news-list-ul-li {
    width: 264px;
    margin-right: 30px;
    margin-bottom: 48px;
}

.prize-box .news-list-ul-li:nth-child(3n) {
    margin-right: 0;
}

.prize-box .news-list-item {
    border-radius: 30px;
}

.prize-box .news-list-item-img>a {
    display: block;
}

.prize-box .news-list-item-img,
.prize-box .news-list-item-text {
    overflow: hidden;
}

.prize-box .news-list-item-img {
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 5px #ccc;
    height: 184px;
}

.prize-box .news-list-item-img:hover img {
    transform: scale(1.2);
}

.prize-box .news-list-item-img a {
    height: 100%;
}

.prize-box .news-list-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .4s;
}

.prize-box .news-list-item-text {
    padding: 18px 25px 30px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 0 5px #ccc;
}

.prize-box .news-list-item-text>.news-list-item-time {
    font-size: 27px;
    padding-bottom: 20px;
    position: relative;
    font-weight: 550;
}

.prize-box .news-list-item-text>.news-list-item-time a {
    color: #009944;
}

.prize-box .news-list-item-text>.news-list-item-time a:hover {
    text-decoration: underline;
}

.prize-box .news-list-item-text>.news-list-item-time::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    background-color: #009944;
    position: absolute;
    bottom: 0;
    left: 0;
}

.prize-box .news-list-item-text>p>a {
    color: #3f3f3f;
    padding-top: 20px;
    font-size: 16px;
    display: block;
    text-align: justify;
}

.prize-box .news-list-item-text>p>a:hover {
    text-decoration: underline;
}

.prize-box .banner-ctrl {
    margin-top: 34px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    align-items: center;

}

.prize-box .banner-pagination {
    margin-top: -2px;
}

.prize-box .banner-pagination>.swiper-pagination-bullet {
    margin: 0 10px;
    display: inline-block;
    background-color: #838383;
    opacity: 1;
    outline: none;
}

.prize-box .banner-pagination>.swiper-pagination-bullet-active {
    background-color: #009944;
}

.prize-box .banner-prev,
.prize-box .banner-next {
    outline: none;
    cursor: pointer;
    width: 10px;
    /* background-image: url(../images/banner-ctrl.png);
    background-size: 100% 100%;
    background-repeat: no-repeat; */
}

.prize-box .banner-prev img {
    transform: rotate(-180deg);
}

.prize-box .banner-prev img,
.prize-box .banner-next img {
    width: 100%;
}

.prize-box .banner-prev {
    margin-right: 10px;
}

.prize-box .banner-next {
    margin-left: 10px;
}

/* 关于我们模块 结束 */
/* 蜗蜗集团品牌 */
.ww-brand-box {
    width: 100%;
    margin-top: 64px;
}

.ww-brand-box .ww-brand-content {
    margin-top: 28px;
}

.ww-brand-box .ww-brand-content-ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ww-brand-box .ww-brand-content-ul li {
    width: 49%;
    margin-bottom: 14px;
    overflow: hidden;
}

.ww-brand-box .ww-brand-content-ul li a {
    display: block;
}

.ww-brand-box .ww-brand-content-ul li img {
    width: 100%;
    transition: all .4s;
    display: block;
}

.ww-brand-box .ww-brand-content-ul li:hover img {
    transform: scale(1.2);
}

/* 蜗蜗集团品牌 结束*/
/* 工厂视频 */
.video-content {
    width: 100%;
    height: 440px;
    background: #000;
}

/* 工厂视频 结束*/

/* 公益 */
.welfare-thumb img {
    width: 100%;
    margin: 30px 0 0;
    border-radius: 30px;
}

.welfare-list-box {
    width: 100%;
}

.welfare-list-box .welfare-list {
    margin-top: -30px;
    padding-top: 60px;
    background: url(../images/welfare-line-bg.jpg) left 20px repeat-y;
}

.welfare-list-box .welfare-year {
    font-size: 64px;
    color: #009944;
    margin-left: -10px;
    padding-left: 50px;
    background: url(../images/licheng-item-bg.png) left center no-repeat;
}

.welfare-list-box .welfare-list-item-item {
    padding-left: 40px;
    padding-top: 34px;
}

.welfare-list-box .welfare-list-item-ul {
    display: flex;
    flex-wrap: wrap;

}

.welfare-list-box .welfare-list-item-ul .welfare-list-item-li {
    height: 410px;
    width: 46%;
    background: white;
    margin-right: 8%;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    margin-bottom: 46px;
}

.welfare-list-box .welfare-list-item-ul .welfare-list-item-li:nth-child(2n) {
    margin-right: 0;
}

.welfare-list-box .welfare-list-item-div {
    width: 100%;
    height: 100%;
    padding: 30px 24px;
    background: linear-gradient(to bottom, transparent, transparent, rgba(0, 0, 0, .8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.welfare-list-box .welfare-item-time {
    color: #fff;
    font-size: 22px;
    font-weight: 550;
    margin-bottom: 10px;
}

.welfare-list-box .welfare-item-text {
    font-size: 16px;
    color: #fff;
    font-weight: 200;
    line-height: 24px;
}

/* 公益结束 */
/* 资讯 */
.news-banner-page a{
    color: #666;
    font-size: 14px;
    display: inline-block;
    margin: 0 10px;
}
a.news-banner-page-active{
    color: #009944;
}
.ww-news-container {
    width: 100%;
}

.ww-news-container .swiper-slide {
    padding: 4px;
}

.ww-news-box {
    position: relative;
}

.ww-news-box .news-list {
    margin-top: 60px;
    padding-bottom: 30px;
}


.ww-news-box .news-list-ul {
    /* display: flex;
    flex-wrap: wrap;
    padding: 0 4px; */
}

.ww-news-box .news-list-ul-li {
    /* width: 100%; */
    /* margin-right: 30px; */
    margin-bottom: 48px;
}

.ww-news-box .news-list-ul-li:nth-child(3n) {
    margin-right: 0;
}

.ww-news-box .news-list-item {
    border-radius: 30px;
}

.ww-news-box .news-list-item-img>a {
    display: block;
}

.ww-news-box .news-list-item-img,
.ww-news-box .news-list-item-text {
    overflow: hidden;
}

.ww-news-box .news-list-item-img {
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 5px #ccc;
    height: 184px;
}

.ww-news-box .news-list-item-img:hover img {
    transform: scale(1.2);
}

.ww-news-box .news-list-item-img a {
    height: 100%;
}

.ww-news-box .news-list-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .4s;
}

.ww-news-box .news-list-item-text {
    padding: 18px 25px 30px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 0 5px #ccc;
}

.ww-news-box .news-list-item-text>.news-list-item-time {
    font-size: 27px;
    padding-bottom: 20px;
    position: relative;
    font-weight: 550;
}

.ww-news-box .news-list-item-text>.news-list-item-time a {
    color: #009944;
}

.ww-news-box .news-list-item-text>.news-list-item-time a:hover {
    text-decoration: underline;
}

.ww-news-box .news-list-item-text>.news-list-item-time::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    background-color: #009944;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ww-news-box .news-list-item-text>p>a {
    color: #3f3f3f;
    padding-top: 20px;
    font-size: 16px;
    display: block;
    text-align: justify;
}

.ww-news-box .news-list-item-text>p>a:hover {
    text-decoration: underline;
}

.ww-news-box .banner-ctrl {
    margin-top: 34px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    align-items: center;

}
.ww-news-box .banner-ctrl .banner-page a{
    color: #888 !important;
}
.ww-news-box .banner-ctrl .banner-page a.news-banner-page-active {
    color: #009944 !important;
}

.ww-news-box .banner-pagination {
    margin-top: -2px;
}

.ww-news-box .banner-pagination>.swiper-pagination-bullet {
    margin: 0 10px;
    display: inline-block;
    background-color: #838383;
    opacity: 1;
    outline: none;
}

.ww-news-box .banner-pagination>.swiper-pagination-bullet-active {
    background-color: #009944;
}

.ww-news-box .banner-prev,
.ww-news-box .banner-next {
    outline: none;
    cursor: pointer;
    width: 10px;
    /* background-image: url(../images/banner-ctrl.png);
    background-size: 100% 100%;
    background-repeat: no-repeat; */
}

.ww-news-box .banner-prev img {
    transform: rotate(-180deg);
}

.ww-news-box .banner-prev img,
.ww-news-box .banner-next img {
    width: 100%;
}

.ww-news-box .banner-prev {
    margin-right: 10px;
}

.ww-news-box .banner-next {
    margin-left: 10px;
}

/* 资讯结束 */
/* 联系我们 */
.contact-container {
    width: 100%;
    max-width: 830px;
    margin: 66px auto 0;
    display: flex;
    justify-content: space-between;
}

.contact-container .contact-box {
    /* display: flex; */
}

.contact-container .contact-container-left,
.contact-container .contact-container-right {
    width: 100%;
}

.contact-container .contact-container-right {
    position: relative;
}

.contact-container .contact-line {
    height: 1px;
    width: 100%;
    margin: 0 auto 22px;
    background: #e7e7e7;

}

.contact-container .contact-container-right {
    /* padding-left: 54px; */
}

.contact-container .contact-container-h4 {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-box p {
    margin-bottom: 22px;
    font-size: 16px;
}

/* 联系我们 结束 */

/* 底部 */
/* .foot-box {
    padding: 50px 0;
    border-top: 1px solid #efefef;
    margin-top: 75px;
    width: 100%;
}

.foot {
    padding-top: 0;
}

.foot a {
    color: #505050;
    font-size: 15px;
}

.foot a:hover {
    color: #009944;
}

.foot>div {
    padding-bottom: 20px;
}

.foot .foot-link-ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.foot .foot-link-ul>li {
    padding: 0 8px;
}

.foot .foot-link-ul>li:first-child {
    padding: 0;
}

.foot .foot-content {
    display: flex;
    justify-content: space-between;
}

.foot .foot-content-copyright {
    color: #505050;
    font-size: 15px;
}

.foot .foot-content-copyright a {
    text-decoration: underline;
}

.foot .foot-content-link a {
    display: inline-block;
    padding-right: 12px;
    font-size: 15px;
}

.foot .foot-text {
    text-align: center;
    font-size: 15px;
    color: #505050;
}

 */
.foot {
    padding-top: 0;
}

.foot-top-erweima p {
    color: #505050;
}

.foot-box {
    padding: 50px 0;
    border-top: 1px solid #efefef;
    margin-top: 75px;
    width: 100%;
}

.foot a {
    color: #505055;
}

.foot a:hover {
    color: #009944;
}

.foot-top {
    display: flex;
    justify-content: space-between;
}

.foot-top-erweima {
    display: flex;
}

.foot-top-erweima>div:first-child {
    margin-right: 12px;
}

.foot-top-erweima img {
    width: 108px;
    display: block;
}

.foot-top-erweima p {
    font-size: 12px;
    text-align: center;
}

.foot-top-contact {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.foot-top-contact-c p {
    line-height: 32px;
    font-size: 14px;
    color: #505050;
}

.foot-top-contact-c h4 {
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 16px;
    color: #505050
}

.foot-top-right {
    width: 68%;
}

.foot-copyright {
    color: #505050;
    font-size: 14px;
}

.foot-copyright a,
.foot-jishuzhichi a {
    text-decoration: underline;
}

.foot-top-contact-c-link {
    font-size: 14px;
}

.foot-top-contact-c-link a {
    margin: 0 6px;
}

.foot .foot-jishuzhichi {
    font-size: 14px;
    color: #777777;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 0;
}

.foot .foot-jishuzhichi a {
    color: #777777;
    font-size: 14px;
}

.foot .foot-jishuzhichi a:hover {
    text-decoration: underline;
}

.yqlj-box {
    margin-bottom: 50px;
    font-size: 14px;
}

.yqlj-box a {
    margin-right: 10px;

}

/* 底部结束 */

/* 菜单遮罩层 */
.ww-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9;
    opacity: .3;
    display: none;
}

/* 菜单遮罩层结束 */

/* 内页菜单 */
.mobileNav-box {
    padding: 0 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.mobileNav-box .mobileNav-li {
    border-bottom: 1px solid #e0e0e0;
}

.mobileNav-box .mobileNav-li a {
    color: #191919;
    display: block;
    font-size: 16px;
}

.mobileNav-box .mobileNav-link-box {
    padding: 0.5rem 0;
    position: relative;
}

.mobileNav-box .mobileNav-link-box i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .4s;
    width: 30px;
    height: 30px;
    background-image: url(../images/navMenu-icon-add.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 9;
}

.mobileNav-box .mobileNav-ul-2 {
    display: none;
}


.mobileNav-box .mobileNav-ul-2>li {
    position: relative;
}

.mobileNav-box .mobileNav-ul-2>li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url(../images/navMenu-icon.png);
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.mobileNav-box .mobileNav-ul-2>li>a {
    padding: 0.4rem 0;
    padding-left: 30px;
    color: #6b6b6b;
    font-size: 15px;

}

.mobileNav-box .mobileNav-active>a,
.mobileNav-box .mobileNav-ul-2 .mobileNav-active>a {
    color: #009944;
}

.mobileNav-box .mobileNav-active>i {
    background-image: url(../images/navMenu-add-icon.png);
}

/* 内页菜单 结束*/

/* 网站地图 */
.site-map-box .site-map-h3 a {
    color: #191919;
    font-size: 18px;
}

.site-map-box a:hover {
    color: #009944;
}

.site-map-box .site-map-ul {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
}

.site-map-li {
    padding: 0 38px;
    border-right: 1px solid #f4f4f4;
    margin-bottom: 20px;
}

.site-map-li:last-child {
    border-right: 0;
}

.site-map-ul2 {
    margin-top: 10px;
}

.site-map-ul2>li>h3>a {
    color: #191919;
    font-size: 16px;
}

.site-map-ul2>li {
    padding: 6px 0;
}

.site-map-ul2>li>a {
    color: #191919;
    font-size: 16px;

}

/* 网站地图地图 */
/* 新闻内容 */
.content-time-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #191919;
}

.content-time-box>div {
    margin-left: 40px;
    font-size: 15px;
}

.time-1,
.time-2 {
    position: relative;
}

.content-time-box i {
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: -22px;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.time-2 i {
    background-image: url(../images/chakan.png);

}

.time-1 span {
    padding-right: 2px;
}

.time-1 i {
    background-image: url(../images/rili.png);
    width: 14px;
    height: 14px;
    top: 3px;
    left: -21px;
}

/* 新闻内容结束 */
/* 地图 */
.anchorTL {
    display: none !important;
}

/* 地图结束 */

/* 首页顶部动画 */
@keyframes mymove {
    from {
        margin-top: -190px;
    }

    to {
        margin-top: 0px;
    }
}

.mymove {
    animation: mymove .8s;
}

/* 首页顶部动画 结束*/