@charset "utf-8";
header {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 999;
  background: transparent;
  position: relative;
  top: 0px;
  transition: all 0.3s ease-in-out;
}
.header {
  width: 100%;
  max-width: 1920px;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0px;
}
.header .header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav .hvr {
  display: flex;
  align-items: center;
}
.header .logo {
  display: flex;
  align-items: center;
}
@media (max-width:992px) {  
  .header-nav .hvr {
    margin-right: 30px;
  }
}
@media (max-width:768px) {
  .header-nav .hvr {
    margin-right: 0px;
  }
}
.header .logo img {
  height: 54px;
  padding: 0px 0px;
  width: auto;
  transition: all 0.5s;
}

header .nav {
  padding: 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .nav>ul {
  transition: all 0.5s;
  display: flex;
  flex-wrap: nowrap;
}

header .nav>ul>li {
  display: inline-block;
  padding: 0;
}
header .nav>ul>li.active a.cnav-a {
  color: #01b753;
}
header .on .nav>ul>li.active a.cnav-a,header .nav>ul>li:last-child a {
  color: #01b753;
}
header .nav>ul>li:last-child a{
  color: #999;
  background: url(../img/cont.png) no-repeat center center;
  background-size: 100%;
}
header .header.on .nav>ul>li:last-child a{
  color: #fff;
  background: url(../img/cont1.png) no-repeat center center;
  background-size: 100%;
}

header .nav>ul>li>a {
  display: block;
  font-size: 18px;
  color: #fff;
  padding: 0px 40px;
  line-height: 80px;
  transition: all 0.3s;
}

header .nav>ul>li:hover a,
header .nav>ul>li.active a{
  font-weight: 600;
}

header .language ul {
  display: flex;
  justify-content: flex-end;
}

header .language ul li:last-child {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
header .language ul li a {
  color: #fff;
  font-weight: 800;
  line-height: 80px;
  margin-left: 20px;
}
header .language ul li:first-child a {
  padding: 5px 0 5px 35px;
  background: url(../img/lg1.png) no-repeat 0 center;
  background-size: 24px 24px;
}
header .l-btn{
  border: none;
  width: 25px;
  height: 25px;
  background:transparent url(../img/search1.png) no-repeat 0 0;
}
header .on .language ul li:first-child a {
  background: url(../img/lg.png) no-repeat 0 center;
}
header .on .l-btn{
  border: none;
  width: 25px;
  height: 25px;
  background:transparent url(../img/search.png) no-repeat 0 0;
}
@media (max-width:992px) {
  header .header.on .nav>ul>li:last-child,
  header .nav>ul>li:last-child a,
  header .header.on .nav>ul>li:last-child a{
    color: #181818;
    background: none;
  }
  header .nav>ul>li:last-child a:hover,
  header .header.on .nav>ul>li:last-child a:hover{
    color: #01b753;
  }
  header .nav>ul>li:hover a,
  header .nav>ul>li.active a{
    font-weight: 400;
  }
  header .nav>ul>li:hover .li-a,
    header .nav>ul>li.active .li-a{
    font-weight: 500;
  }
  header .nav>ul>li .cnav-a{
    font-weight: 600;
    font-size: 16px;
  }
  header .nav>ul>li:hover .cnav-a,header .nav>ul>li.active a.cnav-a{
    font-weight: 600;
  }
  header .language ul li:first-child a{
    color: #181818;
    background: url(../img/lg.png) no-repeat 0 center;
  }
  header .l-btn{
    background:transparent url(../img/search.png) no-repeat 0 0;
  }
}
.header .nav>ul>li:hover .submenu {
  opacity: 1;
  visibility: visible
}

.header .nav>ul>li .submenu li:hover a,
header .header.on .nav>ul>li .submenu li:hover a {
  color: #01b753;
}

.submenu {
  width: 100%;
  left: 50%;
  margin-left: -50%;
  position: absolute;
  border-radius: 10px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #ccc;
  top: 100%;
  z-index: 0;
  -webkit-perspective: 400px;
  -moz-perspective: 400px;
  -ms-perspective: 400px;
  -o-perspective: 400px;
  perspective: 400px;
  opacity: 0;
  visibility: hidden;
}

.submenu li {
  display: block;
  width: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all .5s;
  text-align: center;
}

.header .nav .submenu li a {
  font-size: 14px;
  padding: 5px 0;
  width: 100%;
  color: #181818;
  background: #fff;
  border-bottom: 1px solid #fff;
  display: block;
  transition: .6s;
}

.header .nav>ul>li:hover .submenu,
.header .nav>ul>li:focus .submenu {
  max-height: 2000px;
  z-index: 10;
}

.header .nav>ul>li:hover .submenu li,
.header .nav>ul>li:focus .submenu li {
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.header .nav>ul>li:hover .submenu li:nth-child(1) {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.header .nav>ul>li:hover .submenu li:nth-child(2) {
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -ms-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}

.header .nav>ul>li:hover .submenu li:nth-child(3) {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.header .nav>ul>li:hover .submenu li:nth-child(4) {
  -webkit-transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  -ms-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}

.header .nav>ul>li:hover .submenu li:nth-child(5) {
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}

.header .nav>ul>li:hover .submenu li:nth-child(6) {
  -webkit-transition-delay: 250ms;
  -moz-transition-delay: 250ms;
  -ms-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms;
}

.header .nav>ul>li:hover .submenu li:nth-child(7) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.header .nav>ul>li:hover .submenu li:nth-child(8) {
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms;
}

.submenu li:nth-child(1) {
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms;
}

.submenu li:nth-child(2) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.submenu li:nth-child(3) {
  -webkit-transition-delay: 250ms;
  -moz-transition-delay: 250ms;
  -ms-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms;
}

.submenu li:nth-child(4) {
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}

.submenu li:nth-child(5) {
  -webkit-transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  -ms-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}

.submenu li:nth-child(6) {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.submenu li:nth-child(7) {
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -ms-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}

.submenu li:nth-child(8) {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

/* 下拉 */
.cnav-under{
  width: 100%;
  position: absolute;
  left: 0;top: 120px;
}
.cnav-under .cnav-under1{
  background: #2a2a2a;
  height: 600px;
  opacity: 0;
  transition: all 0.5s;
  padding: 40px 0;
  display: none;
}
.cnav-under a{
  display: block;
}
.cnav-under .cnav-under1 .cnav-l{
  width: 400px;
  height: 520px;
  overflow-y: auto;
}
.cnav-under .cnav-under1 .cnav-r{
  width: auto;
}
.cnav-under .cnav-under1 .cnav-l h3 a{
  color: #fff;
  line-height: 1.25rem;
  line-height: 2;
}
.cnav-under .cnav-under1 .cnav-l p a{
  padding-left: 15px;
  color: #c9c9c9;
  line-height: 1rem;
  line-height: 2;
}
.cnav-under .cnav-under1 .cnav-l h3 a:hover,.cnav-under .cnav-under1 .cnav-l p a:hover
{
  color: #01b753;
}
.cnav li:hover .cnav-under .cnav-under1{
  opacity: 1;
  display: block;
}
@media (max-width:1500px) {

}

.header.on {
  position: fixed;
  top: 0px;
  margin-top: 0px;
  background: #fff;
}
.header.on .nav>ul>li>a,.header.on .language ul>li a{
  color: #181818;
}
.header .nav .pnav{
  display: none;
}

@media (max-width: 1500px) {
  header .language ul>li a {
    color: #fff;
    font-weight: 800;
    padding-left: 12px;
  }
  header .nav>ul>li>a {
    padding: 0px 28px;
  }
  .header .nav .submenu li a {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .header .logo img {
    height: 40px;
  }
  header .nav>ul>li>a {
    padding: 0px 23px;
  }
  header .language ul>li a {
    padding-left: 5px;
  }
}

@media (max-width: 992px) {
  .header {
    position: relative;
    margin-top: 0;
  }

  header .nav>ul {
    display: block;
  }

  header .nav {
    position: absolute;
    left: -100vw;
    top: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 1);
    z-index: 999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    padding-top: 20px;
    overflow-y: auto;
  }

  header .nav.show {
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
  }

  header .nav ul li {
    display: block !important;
    padding: 0 20px;
    border-bottom: 1px solid #f7f7f7;
  }

  header.on .nav>ul>li>a,
  header .nav ul li a {
    color: #424242;
    line-height: 40px;
    font-size: 14px;
    padding: 0px 20px;
  }
  header .nav ul li .li-a{
    font-weight: 500;
  }
  header .nav ul li p{
    padding-left: 15px;
  }
  .pnav a:hover{
    color: #01b753;
  }

  header .nav>ul>li::before,
  header .nav>ul>li:last-child::after {
    border-left: 0px dotted #c1c1c1;
  }

  .header .nav .cnav{
    display: none;
  }
  .header .nav .pnav{
    display: block;
  }
}

@media (max-width: 768px) {
  header .language ul {
    padding-right: 35px;
  }
}

@media (max-width: 1200px) {
  .header .nav .submenu li {
    display: none !important;
  }
}


/* banner */
.banner {
  position: relative;
  overflow: hidden;
}
.banner img {
  width: 100%;
}
.banner .banner-con {
  width: 80%;
  color: #fff;
  position: absolute;
  z-index: 9;
  top: 30%;
  left: 10%;  
  text-align: center;
}
.banner h3 {
  font-size: 3.5rem;
  font-weight: 700;
}
.banner-con h3 {
  margin-bottom: 15px;
}
.link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.link .mr{
  margin-right: 3rem;
  text-align: left;
}
.banner .banner-con .link p{
  margin-bottom: 30px;
}
.banner .banner-con .link a{
  margin-top: 0;
}
.banner .banner-con .link p a{
  color: #fff;
  display: inline-block;
  font-size: 1.375rem;
}
.banner .banner-con .link p a:hover{
  color: #01b753;
}
.banner .banner-con p a::after{
  content: '|';
  color: #fff;
  margin: 0 15px;
}
.banner .banner-con p a:last-child:after{
  opacity: 0;
  margin: 0;
}
.ban-pagination{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.ban-pagination span{
  margin-right: 10px;
}
@media (max-width: 991px) {
  .banner h3 {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  .link .more{
    margin-right: 15px;
  }
  .link .more,.link .msg-btn{
    width: 140px;
    font-size: 10px;
    padding: 5px 0 5px 10px;
  }
  .link .more::after,
  .link .msg-btn::after {
    right: 7px;
    top: 4px;
    width: 22px;
    height: 20px;
  }
  .banner .banner-text .link p {
    margin-bottom: 10px;
  }
  .banner .banner-text .link p a{
    font-size: 14px;
  }
  .banner .banner-text p a::after{
    margin: 0 10px;
  }
}
.common {
  padding-top: 7.0rem;
  padding-bottom: 7.0rem;
}
.commonT {
  padding-top: 7.0rem;
}
.commonB {
  padding-bottom: 7.0rem;
}
.more{
  color: #181818;
  width: 280px;
  text-align: left;
  display: inline-block;
  padding: 12px 0 12px 30px;
  background: url(../img/more.png) no-repeat left center;
  background-size: 100% 100%;
  font-size: 1.25rem;
  transition: all 0.6s;
  position: relative;
}
.more::after{
  position: absolute;
  right: 15px;
  top: 0;
  content: '';
  width: 45px;
  height: 100%;
  display: inline-block;
  background: url(../img/right.png) no-repeat center;
  background-size: 100%;
}
.con-title{
  display: flex;
  flex-direction: column;
}
.title {
  font-size: 2.825rem; 
  line-height: 1;
  font-weight: 600;
  margin-bottom: 2.0rem;
}
.tit-con {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.tit-con a{
  color: #fff;
  font-size: 1.125rem;
}
.tit-con a:first-child::after {
  content: '|';
  color: #fff;
  margin: 0 15px;
}
.nr{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.nr .con-title{
  width: 35%;
}
.nr .nr-img{
  width: 65%;
  display: flex;
  align-items: center;
}
@media (max-width:992px) {
  .more{
  padding: 10px 0px 10px 20px;
  width: 200px;
  font-size: 1.4rem;
}
.more::after {
  right: 10px;
  top: 5px;
  width: 39px;
  height: 36px;
}
.tit-con {
  margin-bottom: 20px;
}
.tit-con a{
  font-size: 14px;
}
.nr .con-title{
  width: 100%;
  margin-bottom: 4rem;
}
.nr .nr-img{
  width: 100%;
}
}

/* 关于我们 */
.product-cont .cont-txt{
  margin-bottom: 2.0rem;
}
.product-about .product-img{
  text-align: right;
}
.product-cont .more{
  color: #fff;
  background: url(../img/more2.png) no-repeat left center;
}
.product-cont .more::after{
  background: url(../img/right2.png) no-repeat center;
}
.product-sign {
  padding: 3.5rem 0 0;
  text-align: center;
}
.glo-box {
  position: relative;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 0px 2rem;
}
.glo-box:after {
  content: "";
  position: absolute;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  width: 3px;
  height: 70%;
  top: 15%;
  right: 0;
  background-color: #000;
  border-radius: 100%;
}
.product-sign .col-md-3:last-child .glo-box:after{
  width: 0px;
}
.glo-title {
  width: 100%;
  margin: 20px auto;
}
.glo-img img {
  max-width: 60px;
}
.glo-title h5 {
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  -ms-word-wrap: break-word;
  word-wrap: break-word; 
  font-size: 2.85rem;
  padding: 0 1.25rem;
}

/* 解决方案 */
.solution{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  background-color: #fff;
}
.solution .nr{
  flex-direction: row;
  padding: 10rem 0;
}
.solution .nr .title{
  color: #fff;
}
.solution:nth-child(2n) .nr{
  flex-direction: row-reverse;
}
.solution:nth-child(2n) .nr .title,.solution:nth-child(2n) .nr .tit-con a,.solution:nth-child(2n) .nr .tit-con a:first-child::after{
  color: #181818;
}
.solution:nth-child(2n) .more,.aboutus-btn .more{
  background: url(../img/more3.png) no-repeat left center;
  background-size: 100% 100%;
  color: #fff;
}
/* 多图 */
.pic-s ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pic-s ul li{
  margin-bottom: 1.5rem;
}
.pic-s ul li:nth-child(1),.pic-s ul li:nth-child(4),.pic-s ul li:nth-child(5){
  width: 62%;
}
.pic-s ul li:nth-child(2),.pic-s ul li:nth-child(3),.pic-s ul li:nth-child(6){
  width: 37%;
}
/* 新闻 */
.news{
  background: #fff;
  background-size: 100% 100%;
}
.news .title{
  color: #181818;
  display: flex;
  justify-content: space-between;
}
.news .title .more{
  width: 200px;
}
.news .con-title {
  margin-bottom: 3rem;
  position: relative;
}
.news .inws img{
  border-radius: 2.0rem;
}
.inws .inws-1{
  font-size: 1.125rem;
  color: #999;
  margin-top: 1.5rem;
}
.inws .inws-2{
  font-size: 1.5rem;
  color: #181818;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-desc {
  font-size: 0.875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
   margin-bottom: 15px;
}
.news-btn {      
  color: #01b753; 
  border-bottom: 1px solid #01b753;
}
@media (max-width:992px) {
  .inws {
    padding-left: 30px;
  }
  .inws .inws-1 {
    font-size: 1.4rem;
  }
  .inws .inws-2 {
    font-size: 1.8rem;
  }
}

.ncommon {
  padding-top: 60px;
  padding-bottom: 60px; 
  min-height: 400px;
}

@media (max-width: 767px) {
  .common,
  .ncommon {
    padding-top: 45px;
    padding-bottom: 45px;
    padding-left: 0;
    padding-right: 0;
  }

  .title {
    font-size: 26px;
    margin-bottom: 15px;
  }

}

/* 首页关于我们 */
/* .about {
  background: url(../img/about.jpg) no-repeat center bottom #fafafa;
  background-size: 100% auto;
  background-position: bottom center;
}

.about .title {
  color: #fff;
}

.about ul.about-box,
.materials ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.about ul.about-box li {
  width: 49%;
  position: relative;
}

.about .about-txt {
  font-size: 22px;
  font-weight: 600;
  color: #2dbecd;
}

.about .about-box .more {
  display: inline-block;
  background: #ffe100;
  padding: 8px 25px;
  color: #cc9000;
  font-size: 20px;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.about .about-box .more i {
  font-size: 28px;
  font-weight: 100;
}

.about .about-box .more:hover {
  padding: 8px 35px;
} */

/*关于我们栏目列表*/
/* .about .about-nav {
  width: 100%;
  display: block;
  margin-top: 70px;
  margin-bottom: 35px;
}

.about-nav h5 {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  transition: all 0.5s;
}

.about .about-nav a {
  display: block;
  width: 100%;
  padding: 5px 15px;
  margin-top: 15px;
  text-align: center;
  color: #fff;
  background: #fff;
  border-radius: 35px;
  transition: all 0.5s;
}

.about .about-nav a:hover {
  background: #cb1a75;
  color: #fff;
}

.about ul.about-nav a:hover h5 {
  color: #fff;
}

.about ul.about-nav a:hover h5:after {
  background: #fff;
}

@media (max-width: 991px) {
  .about .about-txt {
    width: 100%;
    font-size: 14px;
  }

  .about ul.about-box li {
    width: 100%;
  }

  .about .about-nav {
    position: relative;
    width: auto;
    margin-top: 30px;
  }

  .about .about-nav a {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .about-nav h5 {
    font-size: 14px;
  }
} */

/*京森材料*/
/* .materials {
  background: url(../img/material.jpg) no-repeat bottom center #f5f5f5;
  background-size: 100% auto;
  background-position: bottom center;
}

.materials .atitle,
.food .atitle,
.beauty .atitle {
  font-size: 40px;
  color: #fff;
  font-weight: 900;
}

.materials .material-img {
  padding-bottom: 20px;
}

.materials .material-img img {
  width: 95%;
  max-width: 100%;
  border-radius: 10px;
}

.materials .nav-desc,
.food .nav-desc,
.beauty .nav-desc {
  line-height: 1.4;
  margin-bottom: 15px;
  color: #4e2f91;
  font-size: 22px;
  font-weight: 500;
  max-width: 95%;
}

.materials .more i {
  font-weight: 100;
}

.materials .more:hover {
  padding: 10px 15px;
}

.material-nav li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 15px 0px;
}

.material-nav li img {
  max-width: 100%;
  margin-right: 20px;
  border-radius: 5px;
}

.material-nav li div:last-child {
  width: 70%;
}

.material-nav h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.atitle-span {
  font-size: 24px !important;
  margin-left: 1%;
}

@media (max-width: 991px) {
  .material-nav {
    padding-left: 0px;
  }

  .material-nav li {
    margin: 15px 0px;
  }

  .materials .atitle,
  .food .atitle,
  .beauty .atitle {
    font-size: 22px;
  }

  .materials .nav-desc,
  .food .nav-desc,
  .beauty .nav-desc {
    font-size: 14px;
  }

  .materials .more,
  .food .more,
  .beauty .more {
    font-size: 13px;
  }

  .materials .more i,
  .food .more i,
  .beauty .more i {
    font-size: 16px;
  }

  .atitle-span {
    font-size: 14px !important;
  }
} */

/*医美*/
/* .beauty {
  background: url(../img/beauty.jpg) no-repeat top center #f8f8f8;
  background-size: 100% auto;
  background-position: bottom center;
}

.beauty h5 {
  font-size: 18px;
  color: #fff;
}

.beauty .food-img img {
  width: auto;
  border-radius: 10px;
  max-width: 100%;
  margin: 0px 0px 0px;
}

.beauty-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.beauty-nav li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  font-size: 16px;
  margin: 28px 0px;
}

.beauty-nav li:nth-child(1) {
  width: 100%;
}

.beauty-nav li:nth-child(1) div:first-child {
  width: 68%;
}

.beauty-nav li:nth-child(1) div:first-child img {
  width: calc(100% - 20px);
}

.beauty-nav li img {
  max-width: 100%;
  margin-right: 20px;
  border-radius: 5px;
}

.beauty .atitle {
  color: #ea3a96;
}

.line-bg {
  background: url(../img/food.jpg) no-repeat top center #fff;
  height: 83px;
} */

/*京森食疗*/
/* .food {
  background: url(../img/food.jpg) no-repeat top center #f1f1f1;
  background-size: 100% auto;
  background-position: bottom center;
}

.food .food-img img {
  width: 95%;
  max-width: 100%;
  margin: 0px 0px 0px;
  border-radius: 10px;
}

.food-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.food-nav li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  font-size: 16px;
  margin: 28px 0px;
}

.food-nav li:nth-child(1) {
  width: 100%;
}

.food-nav li:nth-child(1) div:first-child {
  width: 63%;
}

.food-nav li:nth-child(1) div:last-child {
  margin-right: 35px;
}

.materials .food-nav li:nth-child(1) div:first-child {
  width: 66%;
}

.materials .food-nav li:nth-child(1) div:last-child {
  margin-right: 0px;
}

.food-nav li:nth-child(1) div:first-child img {
  width: calc(100% - 20px);
}

.food-nav li img {
  max-width: none;
  margin-right: 20px;
  border-radius: 5px;
}

.food-nav h5 {
  font-size: 18px;
}

@media (max-width: 991px) {
  .food-nav {
    padding-left: 0px;
  }

  .food-nav h5,
  .material-nav h5,
  .beauty h5 {
    font-size: 12px;
    color: #fff;
  }

  .food-nav li img,
  .beauty-nav li img {
    max-height: 75px;
  }
} */

/* @media (max-width: 768px) {

  .food-nav li,
  .beauty-nav li {
    justify-content: flex-start;
    margin: 15px 0px;
  }

  .food-nav li:nth-child(1) div:last-child {
    margin-right: 0px;
  }

  .beauty-nav li:nth-child(1) div:first-child img,
  .food-nav li:nth-child(1) div:first-child img {
    width: calc(100% - 6px);
  }

  .food-nav li img,
  .beauty-nav li img {
    max-height: 50px;
    margin-right: 10px;
  }
} */

/*产品栏目列表*/
/* .pro-nav {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 50px;
  background: #fdfdfd;
}

.pro-nav ul li h5 {
  font-size: 22px;
  line-height: 2.2;
  color: #fff;
}

.pro-nav ul li .more {
  padding: 10px;
  color: #fff;
  background: #4e2f91;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.pro-nav ul li {
  transition: all 0.4s;
}

.pro-nav ul li:hover {
  margin-top: -10px;
}

@media (max-width: 991px) {
  .pro-nav ul li h5 {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .pro-nav ul li .more {
    font-size: 12px;
    padding: 6px 5px;
  }
}

@media (max-width: 768px) {
  .pro-nav {
    padding-top: 20px;
  }
} */

/* 新闻 */
/* .news-box li {
  width: 100%;
  font-size: 14px;
  position: relative;
  padding-bottom: 3px;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
  margin-top: 10px;
  font-weight: 400;
}

.news-box li span {
  display: block;
}

.about-box li p {
  color: #fff;
}

.hidden-xs li a h5 {
  font-size: 18px;
  color: #fff;
}

.beauty .container-fluid ul li .atitle {
  color: #fff;
}

@media (max-width:992px) {
  .hidden-xs li a h5 {
    font-size: 16px;
  }
} */