@charset "utf-8";

/*========== goods ===========*/
.goods_area {
  padding: 30px 0 90px;
  overflow: hidden;
  background:#fff;
}

.goods_area ul {
  padding-top:30px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin:0 -20px;
}

.goods_area ul li {
  padding-left:20px;
  padding-right:20px;
  overflow:hidden;
  float:left;
  text-align:center;
  height:450px;
  width:25%;
}

.goods_area .Img {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 300px;
}

.goods_area .Img img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all .5s;
  max-height: 300px;
}

.goods_area .item:hover .Img img {
  opacity: 0.9;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.goods_area .txt {  
  margin-top:20px;
  text-align:center;
}

.goods_area ul li div.txt h3 {
  margin:10px 0;
}

.goods_area ul li div.txt h3 a {
  word-wrap:break-word;
  font-size: 22px;
  line-height:1.5;
  color:#000;
}

.goods_area ul li div.txt a:hover {
  color:#259f92;
}

.goods_area ul li div.txt p {
  font-size:16px;
  line-height:1.6;
    font-weight: normal;
  color:#666;
}

.goods_area .price_s {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.goods_area .price_s .s1 {
  font-size: 13px;
  font-weight: normal;
  color: #5A5A5A;
}

.goods_area .price_s .s2 {
  color: #F00;
  font-size: 13px;
}

.goods_area .price_s .s3 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #F00;
}

.goods_area .btn {
  margin:30px 0 0 0;
  text-align:center;
}

.goods_area .btn a {
  display:inline-block;
}


@media (max-width: 800px) {
  .goods_area ul li {
    height:550px;
    width:50%;
  }
}

@media (max-width: 480px) {
  .goods_area ul li {
    height:550px;
    width:100%;
  }
}



/*========== Article ===========*/
.article_area {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.image_area {
  width: 50%;
  overflow: hidden;
}

.image_area .Img {
  min-height: 480px;
}

.image_area .Img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 25s;
}

.image_area .item {
  position: relative;
}

.article_txt {
  width: 50%;
  padding: 10px 6%;
  box-sizing: border-box;
  background: #f3f2f1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article_txt .topic {
  width: 100%;
  margin-bottom: 5px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}

.article_txt .topic a {
  color: #333;
}

.article_txt .topic a:hover {
  text-decoration:underline;
  opacity: 0.6;
}

.article_txt .txt {
  color: #474747;
  font-size:16px;
  line-height: 1.6;
  font-weight: normal;
}

.article_txt .btn {
  margin:30px 0 40px 0;
}

@media (max-width: 960px) {
  .article_area {
    display: block;
  }

  .image_area, .article_txt {
    width: 100%;
  }
}



/*========== News ===========*/
.news_area {
  padding: 30px 0 90px;
  overflow: hidden;
}

.title_box {
  text-align:center;
}

.news_area ul {
  padding-top:30px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin:0 -20px;
}

.news_area ul li {
  padding-left:20px;
  padding-right:20px;
  overflow:hidden;
  float:left;
  height:150px;
  width:40%;
}

.news_area ul li div.Img {
  width:25%;
  margin-right:3%;
  float:left;
  overflow:hidden;
  border:1px solid #c4c4c4;
  padding:3px;
}

.news_area ul li div.Img img {  
  width:100%;
  display:block;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.news_area ul li div.Img img:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.news_area .txt {
  width:70%;
  float:left;
}

.news_area .txt h3 a {
  word-wrap:break-word;
  padding-bottom:10px;
  color:#000;
  font-size: 22px;
  line-height:1.5;
}

.news_area .txt h3 a:hover {
  color:#543933;
}

.news_area .txt p {
  color:#666;
  font-size:16px;
  line-height:1.6;
    font-weight: normal;
}

.news_area .btn {
  margin:30px 0 0 0;
  text-align:center;
}

.news_area .btn a {
  display:inline-block;
}

@media (max-width: 860px) {
  .news_area ul {
    margin-left:0px;
  }

  .news_area ul li {
    padding:0;
    margin: 0 2% 40px 2%;
    width: 100%;
      height:auto;
  }

  .news_area ul li div.txt {
    width: 65%;
    float: left;
  }
}



@media (max-width:720px) {
  .news_area ul li {
    padding:0;
    margin: 0 2% 40px 2%;
    width: 96%;
  } 
}
