@charset "utf-8";

@import url(./fonts/iconfont.css);

body {
  font-family: "Poppins";
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
  max-width: 1920px;
  margin: auto;
  background: #fff;
}

a:hover,
a:focus {
  text-decoration: none;
}

a {
  color: #656565;
  text-decoration: none;
  outline: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
select,
th,
td {
  padding: 0;
  margin: 0;
  color: #333;
  font-size: 16px;
}

form {
  margin: 0;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.container {
  padding: 0 5px;
  padding-left: 0;
  padding-right: 0;
}

header {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99999;
  background-color: #fff;
  /* box-shadow: 0 2px 2px rgb(0 0 0 / 6%); */
  box-shadow: 0px 0px 39px 4px rgba(11, 0, 2, 0.13);
}

header .head-top {
  padding-top: 12px;
}

header .header-top-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .head-top .row {
  display: flex;
  justify-content: flex-end;
}

header .head-top a {
  font-size: 16px;
  margin-left: 6px;
  color: #333333;
}

header .head-top .iconfont {
  font-size: 16px;
  color: #333333;
  margin-right: 16px;
  transition: all 0.3s;
}

header .head-top .item {
  margin-left: 46px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

header .head-top .item.follow {
  margin-left: 30px;
}

header .head-bottom {
  position: relative;
}

header .head-bottom .logo {
  display: inline-block;
  padding: 3px 0;
}

header .head-bottom .nav-list {
  float: right;
  display: flex;
  align-items: center;
}

ul:before,
ul:after {
  content: "";
  display: table;
  clear: both;
}

button,
input {
  outline: none;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #f5f5f5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background: #1657a5;
}

.isFixed {
  position: sticky !important;
  transition: all 0.3s;
}

.tofixed {
  position: fixed !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #fff;
  transition: all 0.3s;
}

.tofixed a {
  color: #fff;
}

.tofixed .nav-list .dropdown_menu li a,
.tofixed .head-bottom .nav-list > li .nav-more-list a {
  color: #656565;
}

header.tofixed .head-top a,
header.tofixed .head-top .iconfont,
header.tofixed .head-bottom .nav-list > li > a,
header.tofixed .head-bottom .head-share a i,
footer .footer-share a i,
header.tofixed .head-langBox,
header.tofixed .head-search .iconfont,
header.tofixed .head-langBox .iconfont {
  color: #fff;
}

.tofixed {
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 0 5px #1657a5;
}

header .head-bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

header .head-bottom .nav-list > li {
  float: left;
  padding: 0 20px;
  position: relative;
}

header .head-bottom .nav-list > li > a {
  display: inline-block;
  font-size: 18px;
  position: relative;
  padding: 31px 0;
  border-radius: 20px;
  line-height: 1;
  font-weight: 500;
  color: #333;
}

header .head-bottom .nav-list > li > a:hover,
header .head-bottom .nav-list > .active > a {
  color: #1657a5 !important;
}

header .head-bottom .nav-list > li.contact > a:hover {
  color: #fff !important;
}

header .head-bottom .nav-list > li > a:hover:after,
header .head-bottom .nav-list > .active > a:after {
  width: 100%;
}

header .head-bottom .nav-list > li.contact > a:hover:after {
  width: 0;
}

header .head-bottom .nav-list > li > a:after {
  display: table;
  content: "";
  width: 0;
  height: 3px;
  background: #1657a5;
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%);
  transition: all 0.5s;
}

header .head-bottom li.head-share,
footer .footer-share .icon {
  display: flex;
  align-items: center;
  padding: 0;
}

header .head-bottom li.head-share {
  margin-left: 6px;
}

header .head-bottom .nav-list > li.head-share > a:hover:after {
  display: none;
}

footer .footer-share a {
  border: 1px solid #666;
  border-radius: 100%;
  margin-left: 10px;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

header .head-bottom .head-share a i,
footer .footer-share a i {
  font-size: 18px;
  color: #666;
  transition: all 0.3s;
}

header .head-bottom .head-share a i {
  margin-left: 0;
}

header .head-bottom .nav-list > li.head-share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid #333;
  border-radius: 50%;
  margin-left: 10px;
}

header.tofixed .head-bottom .nav-list > li.head-share a {
  border-color: #666;
}

footer .footer-share a:hover i {
  color: #fff;
}

footer .footer-share a:nth-child(1):hover {
  border-color: #0e76a8;
  background: #0e76a8;
  opacity: 1;
}

footer .footer-share a:nth-child(2):hover {
  border-color: #e60023;
  background: #e60023;
  opacity: 1;
}

footer .footer-share a:nth-child(3):hover {
  border-color: #4267b2;
  background: #4267b2;
  opacity: 1;
}

/* header .head-bottom .head-share a:nth-child(3):hover i,
footer .footer-share a:nth-child(1):hover i
 {
  color: #0e76a8;

}

header .head-bottom .head-share a:nth-child(3):hover {
  border-color: #0e76a8!important;
}

header .head-bottom .head-share a:nth-child(2):hover i,
footer .footer-share a:nth-child(2):hover i
{
  color: #E60023;
}

header .head-bottom .head-share a:nth-child(2):hover {
  border-color: #E60023!important;
}

header .head-bottom .head-share a:nth-child(1):hover i,
footer .footer-share a:nth-child(3):hover i
{
  color: #4267B2;
  border-color: #4267B2;
}

header .head-bottom .head-share a:nth-child(1):hover {
  border-color: #4267B2!important;
}

header .head-bottom .head-share a:nth-child(4):hover i,
footer .footer-share a:nth-child(4):hover i
{
  color: #1DA1F2;
  border-color: #1DA1F2;
} */

header .head-bottom .nav-list > .head-langBox {
  padding: 26px 0;
  cursor: pointer;
  padding-right: 0;
}

/* header .head-bottom .nav-list>.head-search {
  margin-left: 20px;
} */

header.tofixed .head-langBox a {
  color: #333;
}

.head-search .iconfont,
.head-langBox .iconfont,
.head-langBoxs .iconfont {
  display: block;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  transition: all 0.5s;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.head-langBox .iconfont,
.head-langBoxs .iconfont {
  font-size: 20px;
}

header .head-bottom .nav-list > .head-search i:hover {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

header .head-bottom .nav-list > li.contact a {
  position: relative;
  padding: 10px 13px;
  color: #ffffff !important;
  background: #1657a5;
  transition: all 0.3s;
  border-radius: 17px;
}

header .head-bottom .nav-list > li.contact a::after {
  display: none;
}

header .head-bottom .nav-list > li:last-child a:hover::after {
  display: none;
}

.nav_normal .dropdown i {
  display: inline-block;
  transition: all 0.5s ease 0s;
  font-weight: 600;
}

.nav_normal .dropdown:hover i {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.head-langBox,
.head-langBoxs {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-weight: 400;
}

.head-langBox span,
.head-langBoxs span {
  font-size: 16px;
  font-weight: 400;
  margin-left: 5px;
}

header .search-wrap {
  position: relative;
}

header .search-wrap .search-all {
  display: none;
  position: absolute;
  background: #1657a5;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  box-shadow: 0 0 10px #fff;
}

header .search-wrap .search-all .search-box {
  padding: 30px 0 30px 100px;
  position: relative;
}

header .search-wrap .closed {
  position: absolute;
  right: 0;
  color: #fff;
  top: 0;
  font-size: 30px;
}

header .search-wrap .search-all .search-box input {
  background: none;
  font-size: 18px;
  border: none;
  border-bottom: 1px solid #fff;
  width: 80%;
  color: #fff;
  padding: 10px;
}

header .search-wrap input[placeholder],
header .search-wrap [placeholder] {
  color: #fff !important;
}

header .search-wrap input::-webkit-input-placeholder,
header .search-wrap textarea::-webkit-input-placeholder {
  color: #fff !important;
}

header .search-wrap input::-moz-input-placeholder,
header .search-wrap textarea::-moz-input-placeholder {
  color: #fff !important;
}

header .search-wrap input::-o-input-placeholder,
header .search-wrap textarea::-o-input-placeholder {
  color: #fff !important;
}

header .search-wrap input::-ms-input-placeholder,
header .search-wrap textarea::-ms-input-placeholder {
  color: #fff !important;
}

header .search-wrap .search-all .search-box button {
  background: #fff;
  border: 1px solid #1657a5;
  color: #1657a5;
  padding: 5px 20px;
  position: absolute;
  top: 52px;
  right: 0;
}

header .search-wrap .closed i {
  display: block;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
}

header .search-wrap .closed:hover i {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}

header .search-wrap .search-all .search-box button:hover {
  background: #1657a5;
  color: #fff;
  border-color: #fff;
}

header .head-bottom .head-langBox ul {
  position: absolute;
  top: 100%;
  /* left: 0; */
  background: #fff;
  z-index: 999;
  box-shadow: 0 0 4px #ddd;
  min-width: 100px;
  display: none;
}

.head-langBox ul a,
.head-langBoxs ul a  {
  white-space: nowrap;
  display: block;
  padding: 10px;
}

.head-langBox ul a:hover,
.head-langBoxs ul a:hover {
  background: #1657a5;
  color: #fff;
}

header .head-bottom .nav-list > li .nav-more-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 0 4px #ddd;
  min-width: 230px;
  visibility: hidden;
}

header .head-bottom .nav-list > li .nav-more-list a {
  white-space: nowrap;
  display: block;
  padding: 10px 20px;
  transition: none;
}

header .head-bottom .nav-list > li .nav-more-list a:hover {
  background: #1657a5;
  color: #fff;
}

header .head-bottom .nav-list .nav-two-div {
  position: absolute;
  top: 100%;
  display: flex;
  width: 1360px;
  max-width: 1360px;
  background-color: #fff;
  box-shadow: 0 0 2px 1px rgb(0 0 0 / 10%);
  z-index: 9993;
  left: 50%;
  transform: translateX(-50%);
}

header .head-bottom .nav-list .nav-two-div {
  display: none;
}

header .head-bottom .nav-list .nav-two-div .nav-two-div-left {
  padding: 20px 0;
  background: #f9f9f9;
  min-height: 480px;
}

header .head-bottom .nav-list .nav-two-div .nav-twoa {
  display: block;
  width: 100%;
  padding-right: 40px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  padding: 15px 30px;
  position: relative;
}

header .head-bottom .nav-list .nav-two-div .nav-two-div-left .nav-left-a {
  font-size: 20px;
  padding: 15px 40px 15px 60px;
  font-weight: bold;
}
.pr_left_pr{
  margin-top: 30px;
}
.pr_left_pr a{
  padding-left: 0 !important;
}
.pr_left_pr .text a{
  padding-left: 10px !important;
}
.news_contennt_from{
  width: 160px;
  height: 48px;
  background: #2F2F2F;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #f5f5f5;
}
header .head-bottom .nav-list .nav-two-div .nav-twoa i {
  color: #1657a5;
  line-height: inherit;
  position: absolute;
  right: 20px;
  top: 16px;
  font-weight: bold;
  font-size: 22px;
}

header .head-bottom .nav-list .nav-two-div .nav-two-div-left .nav-left-a i {
  opacity: 0;
  transition: all 0.3s;
}

header .head-bottom .nav-list .nav-two-div .nav-two-div-center {
  border-right: 1px solid #ddd;
  padding: 30px;
  min-height: 480px;
}

header .head-bottom .nav-list .nav-two-div .nav-lists,
header .head-bottom .nav-list .nav-two-div .nav-in-lists {
  width: 100%;
  display: none;
}

header .head-bottom .nav-list .nav-two-div .nav-two-div-right {
  max-height: 480px;
  overflow: auto;
  padding: 30px;
}

header .head-bottom .nav-list .nav-two-div .nav-lists.active {
  display: block;
}

header .head-bottom .nav-list .nav-two-div .nav-two-div-right a {
  color: #333;
  padding: 10px 0;
}

header .head-bottom .nav-list > .prod {
  position: static;
}

header .head-bottom .nav-list > .prod .nav-two-div .nav-two-div-left .active,
header .head-bottom .nav-list > .prod .nav-two-div .nav-two-div-center .active,
header .head-bottom .nav-list > .prod .nav-two-div .nav-twoa.active,
header .head-bottom .nav-list > .prod .nav-two-div .nav-twoa:hover {
  color: #1657a5;
  background: #fff;
}

header .head-bottom .nav-list > .prod .nav-two-div .nav-two-div-left .active > i {
  opacity: 1;
}

header .head-bottom .nav-list > .prod .nav-two-div .nav-lists.active,
header .head-bottom .nav-list > .prod .nav-two-div .nav-in-lists.active {
  display: block;
}

header .head-bottom .nav-list > .prod .nav-two-div .nav-two-div-center .nav-center-a i {
  transition: all 0.3s;
  opacity: 0;
}

header .head-bottom .nav-list > .prod .nav-two-div .nav-two-div-center .active > i {
  opacity: 1;
}

header .head-bottom .nav-list > .prod .nav-two-div .nav-two-div-center .nav-center-a {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 30px;
}

.mb-header,
.m_header {
  display: none;
}

.mb-header .wrap {
  box-shadow: none !important;
  position: relative;
  z-index: 1000;
  align-items: center;
}

.mb-header .logo {
  display: inline-block;
  width: 160px;
  margin: 6px 19px;
}

.mb-header .wrap > ul {
  position: relative;
  top: 0;
  align-items: center;
  flex-direction: row-reverse;
  display: flex;
  float: right;
}

.contactBox202006131030 {
  padding: 50px 0;
  overflow: hidden;
}

.contactBox202006131030 .contactInfo {
  overflow: hidden;
  width: 50%;
  float: left;
}

.contactBox202006131030 .textBox {
  margin-bottom: 30px;
}

.contactBox202006131030 .textBox h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  margin-bottom: 15px;
  color: #333;
}

.contactBox202006131030 .textBox p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.contactBox202006131030 .contactInfo ul li {
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  background-repeat: no-repeat;
  background-position: left 7px;
}

.contactBox202006131030 .contactInfo ul li.contactTel {
  background-image: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/contactTel.png");
}

.contactBox202006131030 .contactInfo ul li.contactWhatsapp {
  background-image: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/contactWhatsapp.png");
}

.contactBox202006131030 .contactInfo ul li.contactEmail {
  background-image: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/contactEmail.png");
}

.contactBox202006131030 .contactInfo ul li.contactAddress {
  background-image: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/contactAddress.png");
}

.contactBox202006131030 .contactInfo ul li a {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.contactBox202006131030 .contactInfo ul li a:hover {
  color: #1657a5;
}

.contactBox202006131030 .contactForm {
  width: 50%;
  float: left;
  padding-left: 40px;
  overflow: hidden;
}

.contactBox202006131030 .title h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  margin-bottom: 15px;
}

.contactBox202006131030 .contactForm .info {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 10px;
}

.contactBox202006131030 .contactForm .info .label_control {
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 36px;
  font-size: 16px;
  color: #2c2c2c;
}

.contactBox202006131030 .contactForm .info .tips {
  position: absolute;
  top: 0;
  right: 10px;
  line-height: 36px;
  color: #ff0000;
}

.contactBox202006131030 .contactForm .info input[type="text"] {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #dcdcdc;
  font-size: 16px;
  color: #2c2c2c;
}

.contactBox202006131030 .contactForm .info textarea {
  width: 100%;
  height: 100px;
  padding: 5px 10px;
  resize: none;
  border: 1px solid #dcdcdc;
  font-size: 16px;
  color: #2c2c2c;
}

.contactBox202006131030 .contactForm .info input[type="submit"] {
  display: inline-block;
  width: 200px;
  height: 44px;
  line-height: 42px;
  border: 0;
  font-size: 16px;
  color: #ffffff;
  margin-top: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: #000000;
  cursor: pointer;
  transition: all 0.3s;
}

.contactBox202006131030 .contactForm .info input[type="submit"]:hover {
  background: #1657a5;
  transition: all 0.3s;
}

.product-thumbs .swiper-button-next,
.product-thumbs .swiper-button-prev {
  background: none;
  position: absolute;
  margin: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.product-thumbs .swiper-button-next {
  right: 0;
  left: auto;
}

.product-thumbs .swiper-button-prev:after,
.product-thumbs .swiper-button-next:after {
  content: "\e653";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #999999;
  font-size: 34px;
}

.product-thumbs .swiper-button-next:after {
  content: "\e775";
}

.product-thumbs .swiper-button-prev:hover:after,
.product-thumbs .swiper-button-next:hover:after {
  color: #1657a5;
}

.nav-list > li .dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  display: none;
  z-index: 1;
  background: #ffffff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

.nav-list .dropdown_menu li {
  width: 100%;
  position: relative;
}

.nav-list .dropdown_menu li a {
  display: block;
  letter-spacing: 0;
  font-size: 16px;
  text-align: left;
  padding: 10px 20px;
  white-space: nowrap;
}

.nav-list .dropdown_menu li a:hover {
  background: #1657a5;
  color: #ffffff;
}

.nav-list .dropdown_menu li.Three_menu > ul {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  min-width: 160px;
  z-index: 3;
  display: none;
  -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
}

.index-banner .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 6%;
}

.index-banner .swiper-pagination-bullet,
.index6 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ffffff;
  opacity: 1;
  margin: 0 10px !important;
}

.index-banner .swiper-pagination-bullet-active,
.index6 .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  position: relative;
}

.index-banner .swiper-pagination-bullet-active::before {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #1657a5;
  content: "";
}

.img {
  overflow: hidden;
}

.img img {
  transition: all 1s ease 0s;
}

footer .footer-wrap h3 {
  height: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  line-height: 1;
  margin-bottom: 22px;
}

footer .footer-wrap ul a,
footer .footer-wrap ul li {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 24px;
  /* text-transform: uppercase; */
}

.one-wrap ul a,
.two-wrap ul a {
  text-transform: uppercase;
}

footer .footer-wrap ul li + li {
  margin-top: 10px;
}

footer .footer-wrap ul a:hover {
  text-decoration: underline;
  color: #1657a5;
}

footer .footer-wrap i {
  color: #666;
  margin-right: 19px;
}

/* .one-wrap,
.two-wrap {
  width: 16%;
}

.four-wrap {
  width: 42%;
} */

footer .five-wrap ul li {
  text-transform: unset;
}

.one-wrap li + li {
  margin-top: 20px;
}

.one-wrap .text .content:nth-child(2) {
  margin-top: 26px;
}

.one-wrap .text p {
  font-size: 14px;
}

.footer-wrap li {
  display: flex;
  font-size: 14px;
}

.four-wrap li:last-child {
  align-items: flex-start;
}

.footer-wrap li .text {
  flex: 1;
}

.footer-wrap .img img {
  vertical-align: text-top;
}

.one-wrap li {
  display: flex;
  align-items: flex-start;
}

.one-wrap li .img {
  margin-right: 4px;
}

.footer-share ul {
  display: flex;
  justify-content: center;
}

.footer-wrap .label {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  margin-right: 4px;
}

footer .footer-share ul img {
  height: 31px;
  width: 31px;
  margin-right: 0;
}

.footer-share ul li {
  margin-right: 6px;
}

.footer-share a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

footer .footer-wrap .footer-share a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.footer-copyright .wrap {
  display: flex;
  justify-content: center;
  font-size: 16px;
}

.footer-box {
  background-color: #fff;
  padding: 50px 0 67px;
}

.footer-box .row {
  position: relative;
}

.footer-box .footer-share {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
}

.footer-copyright {
  background-color: #fff;
  border-top: 1px solid rgba(196, 196, 196, 0.53);
}

footer .footerForm .info {
  position: relative;
  margin-bottom: 14px;
  width: 100%;
}

footer .footerForm .info input {
  height: 40px;
  width: 100%;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 9px;
  outline: none;
  font-size: 16px;
}

footer .footerForm .tips {
  display: block;
  color: #ff000f;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
}

footer .footerForm .info textarea {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  width: 100%;
  padding: 9px;
  font-size: 16px;
  outline: none;
}

footer .footerForm .text p,
footer .footerForm .text p a {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 22px;
  margin-bottom: 23px;
}

footer .footerForm .text p a {
  color: #1657a5;
  font-weight: 500;
}

footer .footerForm .text p a:hover {
  text-decoration: underline;
}

footer .Verify_img {
  position: absolute;
  right: 2px;
  top: 2px;
  height: 26px;
  width: 80px;
  cursor: pointer;
}

footer .info input[type="submit"] {
  width: 174px;
  /* height: 31px; */
  background: #1657a5;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 3px;
  padding: 16px 0;
  border: none;
}

.footer-copyright {
  padding: 20px 0;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 14px;
  text-align: center;
}

.footer-copyright .sitemap:hover {
  text-decoration: underline;
  color: #1657a5;
}

footer .footer-other {
  background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/contactBg.jpg") no-repeat;
  height: 425px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .footer-other p {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  line-height: 43px;
  width: 67%;
}

footer .footer-other a {
  display: inline-block;
  width: 271px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  background: #9bdb32;
  border-radius: 4px;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 56px;
}

footer .footer-other i {
  font-size: 26px;
}

.imgBanner {
  position: relative;
}

.imgBanner .content {
  color: #ffffff;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.imgBanner h1 {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  line-height: 35px;
  text-align: center;
}

.prod h1 {
  font-size: 66px;
  color: #1657a5;
}

.imgBanner p {
  font-size: 24px;
  font-family: Arial;
  font-weight: 400;
  color: #ffffff;
  line-height: 30px;
  margin-top: 37px;
  width: 46%;
}

.Crumbs_nav {
  padding: 20px 0;
}

.Crumbs ul li a span,
.Crumbs ul li a,
.Crumbs ul i {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: #333;
}

/* .Crumbs ul li:last-child span {
  color: #1657A5;
} */

.indexBanner .icon span {
  position: relative;
  z-index: 1;
  font-size: 48px;
  color: #fff;
}

.indexBanner .icon:before {
  position: absolute;
  content: "";
  width: 53px;
  height: 53px;
  background: rgba(90, 187, 189, 1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.indexBanner .icon:after {
  position: absolute;
  content: "";
  width: 75px;
  height: 75px;
  background: rgba(90, 187, 189, 0.6);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  animation: example 1.6s linear infinite;
}

.page li {
  border: none;
}

.page {
  border: none;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  font-size: 14px;
  border: none;
  color: #666666;
}

.pagination > li > a,
.pagination > li > span {
  border: none;
  color: #666666;
  font-size: 14px;
}

.page li.active,
.page li.active a,
.page li:hover a,
.page li.active span {
  background: #1657a5;
  color: #fff;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background: #1657a5;
  color: #fff;
  border-color: #1657a5;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: #1657a5;
  background-color: #fffdfd;
  border-color: #fff;
}

.page li {
  height: 28px;
  width: auto;
  margin-left: 12px;
}

.pro_S_img .img {
  width: 130px;
}

.product_box .submenu_wrap h2,
.parameter_btn a.inquire,
.parameter_btn a.inquire,
.contactBox202006131030 .contactForm .info input[type="submit"] {
  background: #1657a5;
}

.parameter_btn a:hover {
  background: #1657a5;
}

.productDetailContentBox .title {
  text-align: left;
}

.productDetailContentBox .title h2,
.faq_bt {
  color: #333;
  line-height: 1;
  font-size: 24px;
}

.contactBox202006131030 .title h2 {
  color: #333;
}

section .title h2 {
  position: relative;
  font-size: 42px;
  font-weight: bold;
  color: #333333;
  line-height: 42px;
  text-align: center;
}

section .title h2 span {
  color: #2751a5;
}

section p {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 30px;
}

.tabs-list {
  margin-bottom: 36px;
}

.tabs-list li {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
}

.tabs-list li + li {
  margin-top: 30px;
}

.tabs-list .tabs-head {
  height: 38px;
  background: #f2f3f3;
  border-radius: 0px 38px 0px 0px;
  font-size: 18px;
  font-weight: bold;
  color: #013286;
  line-height: 38px;
  padding: 0 36px;
  background: #f2f2f2;
  cursor: pointer;
  background-image: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/add.png");
  background-position: 98%;
  background-repeat: no-repeat;
}

.tabs-list .tabs-head.active {
  border-radius: 0px 38px 0px 0px;
  background-image: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/reduce.png");
}

.tabs-list .text {
  display: none;
  overflow: hidden;
  padding: 26px 32px;
  background: #ffffff;
  box-shadow: 0px 3px 8px 0px rgba(207, 207, 207, 0.36);
  color: #999999;
}

.tabs-list .text h3 {
  color: #3b7fba;
  font-weight: Bold;
  margin-bottom: 16px;
}

.tabs-list .text p {
  color: #999999;
}

.tabs-list .text .content {
  margin-bottom: 40px;
}

.tabs-list .text .content p + p {
  margin-top: 12px;
}

.tabs-list .text .content:last-child {
  margin-bottom: 0;
}

.footer-contact {
  height: 422px;
  background: #1657a5;
  border-radius: 400px 0px 0px 0px;
}

.footer-contact .container,
.footer-contact .row,
.footer-contact .wrap {
  height: 100%;
}

.footer-contact .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-contact .wrap p {
  font-size: 30px;
  font-weight: 500;
  color: #fafafa;
  line-height: 30px;
  margin-bottom: 40px;
}

.footer-contact .wrap p img {
  margin-right: 25px;
}

.footer-contact a.more {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  width: 192px;
  height: 43px;
  text-align: center;
  line-height: 43px;
  font-size: 18px;
  font-weight: 400;
  color: #1657a5;

  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contact i {
  font-size: 30px;
  margin-left: 20px;
}

.footer-contact a.more:hover {
  opacity: 0.6;
}

.footer-share .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 46px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}

.footer-share .wrap .icon i {
  color: #fff;
}
span.more,
a.more {
  box-sizing: border-box;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 46px;
  width: 176px;
  height: 46px;
  background: #1657a5;
  border-radius: 23px;
  text-align: center;
  border: 1px solid #1657a5;
}

a.more:hover {
  background: #fff;
  color: #1657a5;
  box-shadow: 12px 8px 0px 0px #5fa8ff;
}

.footer-contact a.more:hover {
  background: #fff;
  border-color: #1657a5;
  color: #1657a5;
  box-shadow: none;
}

section p {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

.index1 {
  padding-top: 70px;
}

.index1 .title {
  margin-bottom: 38px;
}

.index1 .tabs {
  display: flex;
  justify-content: space-between;
  gap: 23px;
  margin-bottom: 38px;
}

.index1 .tabs .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding-bottom: 23px;
  cursor: pointer;
}

.index1 .tabs .tab .img {
  min-height: 45px;
  margin-bottom: 15px;
}

.index1 .tabs .tab .img img:nth-child(2) {
  display: none;
}

.index1 .tabs .tab p {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  line-height: 16px;
}

.index1 .tabs .tab.on,
.index1 .tabs .tab:hover {
  border-bottom: 3px solid #1657a5;
}

.index1 .tabs .tab.on p,
.index1 .tabs .tab:hover p {
  color: #1657a5;
}

.index1 .tabs .tab.on .img img:nth-child(1),
.index1 .tabs .tab:hover .img img:nth-child(1) {
  display: none;
}

.index1 .tabs .tab.on .img img:nth-child(2),
.index1 .tabs .tab:hover .img img:nth-child(2) {
  display: block;
}

.index1 .box {
  display: none;
}

.index1 .box.on {
  display: block;
}

.index1 .box .wrap {
  display: flex;
}

.index1 .box .wrap > .img {
  width: 56%;
}

.index1 .box .wrap .content {
  flex: 1;
  background: #f4f4f4;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3.6% 2% 2%;
}

.index1 .box .wrap .content h3 {
  font-size: 30px;
  font-weight: 600;
  color: #333333;
  line-height: 16px;
  margin-bottom: 30px;
}

.index1 .box .wrap a.more1 {
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  color: #1657a5;
  line-height: 16px;
}

.index1 .box .wrap .text {
  width: 100%;
}

.index2 {
  padding: 90px 0 76px;
}

.index2 .title {
  margin-bottom: 30px;
}

.index2 .items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 17px;
}

.index2 .item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.index2 .item:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
}

.index2 .item:nth-child(3) {
  grid-column-start: 5;
  grid-column-end: 7;
}

.index2 .item:nth-child(4) {
  grid-column-start: 1;
  grid-column-end: 4;
}

.index2 .item:nth-child(5) {
  grid-column-start: 4;
  grid-column-end: 7;
}

.index2 .item {
  position: relative;
}

.index2 .item .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 87, 165, 0.8);
  padding: 8px;
  opacity: 0;

  transition: all 0.5s ease 0s;
}

.index2 .item .content .text {
  border: 1px solid #f4f4f4;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: scale(0);

  transition: all 0.5s ease 0s;
}

.index2 .item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 16px;
  margin-bottom: 40px;
}

.index2 .item i.iconfont {
  color: #fff;
  font-size: 40px;
}

.index2 .item:hover .content {
  opacity: 1;
}

.index2 .item:hover img {
  transform: scale(1.05);
}

.index2 .item:hover .content .text {
  transform: scale(1);
}

.index2 a.more {
  margin: 0 auto;
  margin-top: 38px;
}

.index3 {
  position: relative;
  background: #f7f7f7;
}

.index3 .wrap {
  display: flex;
  justify-content: flex-end;
  min-height: 38.5vw;
}

.index3 .wrap .img {
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
}

.index3 .wrap .img img {
  height: 100%;
}

.index3 .wrap .content {
  width: 47.57%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index3 .wrap .content .title h2 {
  text-align: left;
  margin-bottom: 42px;
}

.index3 .wrap .content p {
  color: #2f2f2f;
  line-height: 26px;
  font-weight: 500;
}

.index3 .wrap .content p + p {
  margin-top: 30px;
}

.index3 .wrap .content a.more {
  margin-top: 32px;
}

.index3-nums {
  background: #1657a5;
}

.index3-nums .items {
  display: flex;
  height: 100%;
}

.index3-nums .item {
  position: relative;
  flex: 1;
  height: 196px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.index3-nums .item::after {
  content: "";
  background: rgba(255, 255, 255, 0.35);
  height: 86px;
  width: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.index3-nums .item:last-child::after {
  display: none;
}

.index3-nums .item .num {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 32px;
}

.index3-nums .item .num sub {
  font-size: 18px;
}

.index3-nums .item p {
  color: #fff;
}

.index4 {
  padding: 73px 0 80px;
  background: #f7f7f7;
}

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

.index4 .wrap .items {
  width: 45.71%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 21px;
}

.index4 .wrap .item {
  background: #ffffff;
  height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease 0;
}

.index4 .wrap .item .img img:nth-child(2) {
  display: none;
}

.index4 .wrap .item .box {
  width: 68.75%;
}

.index4 .wrap .item p {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 26px;
  margin-top: 30px;
}

.index4 .wrap .item:hover {
  background: #1657a5;
}

.index4 .wrap .item:hover p {
  color: #fff;
}

.index4 .wrap .item:hover .img img:nth-child(1) {
  display: none;
}

.index4 .wrap .item:hover .img img:nth-child(2) {
  display: block;
}

.index4 .wrap .content {
  width: 49.57%;
  padding-top: 10%;
}

.index4 .wrap .content .title {
  margin-bottom: 100px;
}

.index4 .wrap .content .title h2 {
  text-align: left;
}

.index4 .wrap .content h3 {
  font-size: 30px;
  font-weight: bold;
  color: #1657a5;
  line-height: 26px;
  margin-bottom: 36px;
}

.index4 .wrap .content p {
  line-height: 26px;
  font-weight: 600;
}

.index5 .box {
  padding: 86px 0 60px;
  border-bottom: 3px solid #d5d5d5;
}

.index5 .imgs {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.index5 .imgs .img:nth-child(2n) {
  margin: 108px -54px;
  margin-bottom: 0px;
}

.index5 .imgs .img {
  transition: all 0.5s ease 0s;
  overflow: inherit;
}

.index5 .imgs .img:hover img {
  transform: rotate(360deg);
}

.index6 {
  padding: 75px 0 94px;
}

.index6 .title {
  margin-bottom: 28px;
}

.index6 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.index6 .item {
  display: flex;
  flex-direction: column;
  border-bottom: 10px solid #1657a5;
  transition: all 0.5s ease 0s;
}

.index6 .item .content {
  padding: 50px;
  background: #f4f4f4;
}

.index6 .item .img img {
  width: 100%;
}

.index6 .content h3 {
  font-size: 24px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 24px;
}

.index6 .content .time {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  line-height: 13px;
  margin-bottom: 20px;
}

.index6 .content p {
  color: #999999;
  line-height: 21px;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: break-all;
  overflow: hidden;
}

.index6 .content .more {
  font-size: 16px;
  font-weight: 400;
  color: #1657a5;
  line-height: 15px;
  margin-top: 16px;
}

.index6 .item:hover {
  transform: translateY(-2px);
}

.index6 .item:hover .content {
  background: #3076c9;
}

.index6 .item:hover .content h3,
.index6 .item:hover .content p,
.index6 .item:hover .content .time,
.index6 .item:hover .content .more {
  color: #fff;
}

.quality1 {
  padding: 30px 0 80px;
}

.quality1 .title {
  margin-bottom: 20px;
}

.quality1 p {
  line-height: 24px;
  width: 71%;
  margin: 0 auto;
}

.quality1 .img {
  text-align: center;
  margin-top: 36px;
}

.quality2 {
  position: relative;
}

.quality2 .box {
  display: none;
}

.quality2 .box.on {
  display: block;
}

.quality2 .wrap {
  display: flex;
}

.quality2 .wrap .left {
  width: 43.36%;
  padding: 90px 0;
}

.quality2 .wrap .left h2 {
  text-align: left;
}

.quality2 .wrap .left .title {
  margin-bottom: 26px;
}

.quality2 .wrap .tabs {
  display: flex;
  flex-direction: column;
  height: 28vw;
  overflow-y: scroll;
}

.quality2 .wrap .tab {
  display: flex;
  cursor: pointer;
}

.quality2 .wrap .tab.on {
  background: #eeeeee;
}

.quality2 .wrap .tab + .tab {
  margin-top: 30px;
}

.quality2 .wrap .tab .img {
  width: 200px;
}

.quality2 .wrap .tab .text {
  flex: 1;
  padding: 34px 36px 0 22px;
}

.quality2 .wrap .text p {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
}

.quality2 .wrap .right {
  position: absolute;
  right: 0;
  width: 52%;
}

.quality3 {
  padding-bottom: 110px;
}

.quality3 .title {
  margin-bottom: 30px;
}

.quality3 .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.quality3 .tab {
  position: relative;
  width: 15.71%;
  height: 62px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 20px;
  cursor: pointer;
  text-align: center;
  padding: 0 20px;

  background: #dcdcdc;
}

.quality3 .tab.on {
  background: #2873ca;
  color: #fff;
}

.quality3 .tab.on::after {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  content: "";
  border-top: 10px #2873ca solid;
  border-left: 9px transparent solid;
  border-right: 9px transparent solid;
}

.quality3 .swiper-slide {
  position: relative;
  width: 60%;
}

.quality3 .swiper-slide .text {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 20%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  opacity: 0;

  padding: 5% 4% 0 4%;
}

.quality3 .swiper-slide h3 {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 34px;
}

.quality3 .swiper-slide p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 24px;
}

.quality3 .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}

.who1 {
  position: relative;
  padding: 3.5vw 0 9.4vw;
}

.who1 .wrap {
  display: flex;
}

.who1 .wrap .content {
  width: 50%;
}

.who1 .wrap .content h2 {
  text-align: left;
  margin-bottom: 40px;
}

.who1 .wrap .content p {
  font-weight: 400;
  color: #333333;
  line-height: 24px;
}

.who1 .wrap .content p + p {
  margin-top: 20px;
}

.who1 .wrap .img {
  position: absolute;
  right: 0;
  top: -65px;
  bottom: 77px;
  width: 49%;
}

.who1 .wrap .img img {
  height: 100%;
}

.who2 {
  padding: 70px 0 85px;
  background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/who2Bg.png") no-repeat center;
  background-size: cover;
}

.who2 .title {
  margin-bottom: 66px;
}

.who2-swiper {
  position: relative;
  padding-bottom: 86px;
}

.who2-swiper .swiper-slide {
  position: relative;
  /* height: 76px; */
  /* border-right: 1px solid #E3E3E3; */
}



.who2-swiper .swiper-slide.swiper-slide-active::after,
.who2-swiper .swiper-slide.swiper-slide-next::after {
  content: "";
  position: absolute;
  right: 68px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #E3E3E3;
}

.who2 .swiper-slide h3 {
  font-size: 36px;
  font-weight: 600;
  color: #1657A5;
  line-height: 32px;
  margin-bottom: 30px;
}

.who2 .swiper-slide h3 span {
  font-size: 24px;
  margin-right: 10px;
}

.who2-swiper .swiper-button-next, 
.who2-swiper .swiper-button-prev {
  background: none;
  position: absolute;
  margin: 0;
  bottom: 0;
  left: 0;
  top: auto;
  z-index: 999;
}

.who2-swiper .swiper-button-next {
  left: 113px;
}

.who2-swiper .swiper-button-prev::after, 
.who2-swiper .swiper-button-next::after {
  content: "\e627";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #999999;
  font-size: 24px;
}

.who2-swiper .swiper-button-next::after {
  content: "\e628";
}

.who2-swiper .swiper-pagination {
  display: inline-block;
  width: auto;
  left: 55px;
}

.who2-swiper .swiper-button-prev:hover:after, 
.who2-swiper .swiper-button-next:hover:after {
  color: #1657A5;
}

.who3 {
  padding: 79px 0 98px;
  background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/who3Bg.png") no-repeat center;
  background-size: cover;
}

.who3 .title {
  margin-bottom: 30px;
}

.who3 .content {
  position: relative;
  display: flex;
  justify-content: center;
}

.who3 .items .item {
  position: absolute;
  top: 56px;
  /* left: 0; */
  width: 33%;
}

.who3 .items .item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1657a5;
  line-height: 24px;
  text-align: right;
}

.who3 .items .item p {
  line-height: 27px;
  text-align: right;
}

.who3 .items .item:nth-child(1),
.who3 .items .item:nth-child(4) {
  left: 0;
}

.who3 .items .item:nth-child(2),
.who3 .items .item:nth-child(5) {
  left: 0;
  top: 172px;
}

.who3 .items .item:nth-child(3),
.who3 .items .item:nth-child(6) {
  left: 0;
  top: auto;
  bottom: 30px;
}

.who3 .items .item:nth-child(4),
.who3 .items .item:nth-child(5),
.who3 .items .item:nth-child(6) {
  left: auto;
  right: 0;
}

.who3 .items .item:nth-child(5) {
  top: 222px;
}

.who3 .items .item:nth-child(6) {
  bottom: 10px;
}

.who3 .items .item:nth-child(n + 4) h3,
.who3 .items .item:nth-child(n + 4) p {
  text-align: left;
}

.who4 {
  padding: 60px 0 74px;
}

.who4 .title {
  margin-bottom: 28px;
}

.who4 .tabs {
  display: flex;
  margin-bottom: 27px;
}

.who4 .tab {
  position: relative;
  flex: 1;
  text-align: center;

  font-size: 20px;
  font-weight: bold;
  color: #666666;
  line-height: 21px;
  cursor: pointer;
}

.who4 .tab.on,
.who4 .tab:hover {
  color: #1657a5;
  font-weight: bold;
}

.who4 .tab.on::after {
  transition: all 0.5s ease 0s;
}

.who4 .tab.on::after,
.who4 .tab:hover::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 50%);
  border-top: 14px solid #1657a5;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.who4 .box {
  display: none;
}

.who4 .box .text {
  background: #1657a5;
  height: 157px;
  padding: 38px 0 0 54px;
}

.who4 .box.on {
  display: block;
}

.who4 .box .img:hover img {
  transform: scale(1.05);
}

.who4 .box h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 20px;
  margin-bottom: 10px;
}

.who4 .box p {
  color: #fff;
}

.who5 {
  padding-bottom: 110px;
}

.who5 .title {
  margin-bottom: 20px;
}

.who5 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px 30px;
}

.who5 .item:hover img {
  transform: scale(1.05);
}

.why1 {
  padding: 30px 0 60px;
}

.why1 p {
  width: 66.43%;
  margin: 0 auto;

  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 30px;
}

.why2 {
  padding: 70px 0 96px;
  background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/why2Bg.png") no-repeat center;
  background-size: cover;
}

.why2 .title h2 {
  color: #fff;
}

.why2 .title {
  margin-bottom: 30px;
}

.why2 .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 24px;
}

.why2 .item {
  display: flex;
  background: rgba(255, 255, 255, 0.92);
  height: 240px;
  align-items: center;
  justify-content: center;
}

.why2 .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 118px;
  height: 118px;
  background: #1657a5;
  border-radius: 50%;
  margin-right: 36px;
}

.why2 .item .img img:nth-child(2) {
  display: none;
}

.why2 .item .content {
  width: 66%;
  height: 100%;
  padding-top: 44px;
}

.why2 .item .content h3 {
  font-size: 24px;
  font-family: Poppins;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
}

.why2 .item .content p {
  line-height: 20px;
}

.why2 .item:hover {
  background: rgba(22, 87, 165, 0.92);
}

.why2 .item:hover .img {
  background: #fff;
}

.why2 .item:hover .img img:nth-child(1) {
  display: none;
}

.why2 .item:hover .img img:nth-child(2) {
  display: block;
}

.why2 .item:hover h3,
.why2 .item:hover p {
  color: #fff;
}

.why3 {
  padding: 77px 0 87px;
}

.why3 .title h2 {
  margin-bottom: 28px;
}

.why3 .title p {
  width: 62%;
  line-height: 30px;
  margin: 0 auto;
}

.why3 .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.why3 .item p {
  line-height: 24px;
  text-align: center;
  margin: 30px 0 10px;
  min-height: 48px;
}

.why3 .item a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 26px;
  opacity: 0.4;
  text-align: center;
}

.why3 .item a:hover {
  opacity: 1;
  text-decoration: underline;
  color: #1657a5;
}

.why4 {
  padding: 70px 0 90px;
  margin-bottom: 80px;
  background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/why4Bg.png") no-repeat center;
  background-size: cover;
}

.why4 .wrap {
  display: flex;
  justify-content: flex-end;
}

.why4 .wrap .box {
  width: 43%;
}

.why4 .wrap .title {
  margin-bottom: 40px;
}

.why4 .wrap .imgs {
  position: relative;
  height: 313px;
}

.why4 .wrap .img {
  position: absolute;
}

.why4 .wrap .img:nth-child(1) {
  top: 80px;
  left: 0;
}

.why4 .wrap .img:nth-child(2) {
  top: 0;
  left: 144px;
}

.why4 .wrap .img:nth-child(3) {
  top: 160px;
  left: 140px;
}

.why4 .wrap .img:nth-child(4) {
  top: 80px;
  right: 140px;
}

.why4 .wrap .img:nth-child(5) {
  top: 0px;
  right: 0px;
}

.why4 .wrap .img:nth-child(6) {
  top: 160px;
  right: 0px;
}

.why4 .wrap .img:hover img {
  transform: rotate(360deg);
}

.industry1 {
  padding: 43px 0 100px;
}

.industry1 .title h2 {
  margin-bottom: 26px;
}

.industry1 .title .content p {
  line-height: 30px;
}

.industry1 .title .content p + p {
  margin-top: 30px;
}

.industry1 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 30px;
}

.industry1 .item {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}

.industry1 .item .img {
  background: #f2f2f2;
  height: 315px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry1 .item .content {
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.industry1 .item h3 {
  font-size: 24px;
  font-weight: 500;
  color: #332c2b;
  line-height: 26px;
  margin-bottom: 24px;
}

.industry1 .item i.iconfont {
  font-size: 40px;
}

.industry1 .item:hover img {
  transform: scale(1.05);
}

.industry1 .item:hover i.iconfont {
  color: #1657a5;
}

.food1 {
  padding: 44px 0 64px;
}

.food1 p {
  line-height: 30px;
}

.food1 .title h2 {
  margin-bottom: 16px;
}

.food1 .wrap {
  margin: 66px 0 36px;
  box-shadow: 2px 7px 6px 3px rgba(31, 31, 31, 0.13);
  display: flex;
}

.food1 .wrap .img {
  width: 50%;
}

.food1 .wrap .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 38px;
}

.food1 p + p {
  margin-top: 30px;
}

.food1 h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.prod {
  padding: 80px 0 106px;
  margin-bottom: 87px;
  background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/prodBg.png") no-repeat center;
  background-size: cover;
}

.prod .title {
  margin-bottom: 26px;
}

.prod .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prod .item {
  background: #ffffff;
}

.prod .item .img {
  height: 338px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #e1e1e1;
}

.prod .item .content {
  height: auto;
  color: #666666;
}
.prod .item .content p{
   display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; 
}
.prod .item .content a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.prod .item h3 {
  color: #666666;
  margin-bottom: 20px;
}

.prod .item:hover {
  background: #1657a5;
  color: #fff;
}

.prod .item:hover h3,
.prod .item:hover i {
  color: #fff;
}

.prod .item:hover img {
  transform: scale(1.05);
}

.equipment1 {
  padding: 40px 0 107px;
}

.equipment1 .title h2 {
  margin-bottom: 20px;
}

.equipment1 .title p {
  width: 60%;
  line-height: 30px;
  margin: 0 auto;
}

.equipment1 .title {
  margin-bottom: 30px;
}

.equipment1 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px 30px;
}

.equipment1 .item {
  position: relative;
}

.equipment1 .item .text {
  opacity: 0;
  position: absolute;
  top: 28%;
  right: 8%;
  bottom: 20%;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease 0s;
  transform: scale(0);
}

.equipment1 .item .text p {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  text-align: center;
}

.equipment1 .item:hover .text {
  opacity: 1;
  transform: scale(1);
}

.equipment1 .item:hover img {
  transform: scale(1.05);
}

.prods .imgBanner h1 {
  margin-bottom: 6%;
}

.prods .items {
  padding: 20px 0 109px;
}

.prods .item:nth-child(2n) {
  background: #f9f9f9;
}

.prods .item .wrap {
  
  padding: 100px 0 108px;
}
.prods .item .wrap a{
  display: flex;
  justify-content: space-between;
}
.prods .item .wrap .img {
  width: 44.29%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prods .item .wrap .content {
  width: 50%;
}

.prods .item .wrap .content h3 {
  font-weight: 600;
  color: #333333;
  line-height: 30px;
  font-size: 30px;
  margin-bottom: 30px;
}

.prods .item p {
  line-height: 30px;
  margin-bottom: 60px;
}

.prods .item .img:hover img {
  transform: scale(1.05);
}

.prodDetail .imgBanner h1 {
  text-align: left;
  text-shadow: 2px 7px 6px rgba(31, 31, 31, 0.25);
}

.prodDetail .imgBanner p {
  font-size: 36px;
  text-shadow: 2px 7px 6px rgba(31, 31, 31, 0.25);
}

.prod-detail1 {
  padding: 27px 0 90px;
}

.prod-detail1 .title {
  margin-bottom: 34px;
}

.prod-detail1 .tabs {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 34px;
}

.prod-detail1 .tab {
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  border: 4px solid transparent;
  transition: all .5s ease 0s;
}

.prod-detail1 .tab.on,
.prod-detail1 .tab:hover {
  border-color: #1657A5;
}

.prod-detail1 .tab.on::after,
.prod-detail1 .tab:hover::after {
  position: absolute;
  bottom: -3px;
  content: "";
  left: 50%;
  transform: translate(-50%, 100%);
  border-top: 16px solid #1657A5;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}

.prod-detail1 .box {
  display: none;
}

.prod-detail1 .box.on {
  display: block;
}

.prod-detail1 .box .wrap {
  display: flex;
  box-shadow: 2px 7px 6px 3px rgba(31,31,31,0.13);
}

.prod-detail1 .box .wrap .content {
  flex: 1;
  padding: 62px 44px 0 30px;
}

.prod-detail1 .box .wrap .img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9F9F9;
  height: 407px;
  width: 50%;
}

.prod-detail1 .box .img:hover img {
  transform: scale(1.05);
}

.prod-detail1 .box .wrap h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  line-height: 30px;
  margin-bottom: 40px;
}

.prod-detail1 .box .wrap p{
  line-height: 30px;
  font-weight: 500;
}

.prod-detail2 .title {
  margin-bottom: 23px;
}

.prod-detail2 .items .item {
  display: flex;
  min-height: 454px;
}

.prod-detail2 .items .item:nth-child(2n + 1) {
  background: #F9F9F9;
}

.prod-detail2 .items .item .content {
  width: 50%;
}

.prod-detail2 .item .img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.prod-detail2 .item .img:hover img {
  transform: scale(1.05);
}

.prod-detail2 .item .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 94px 0;
}

.prod-detail2 .item:nth-child(2n) .wrap {
  flex-direction: row-reverse;
}

.prod-detail2 .item h3 {
  font-size: 30px;
  font-weight: 600;
  color: #333333;
  line-height: 36px;
  margin-bottom: 50px;
}

.prod-detail2 .item p {
  line-height: 36px;
  margin-bottom: 30px;
}

.prod-detail2 .item h2 {
  font-size: 42px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 28px;
}

.prod-detail2 .item ul li {
  line-height: 30px;
}

@keyframes example {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@media (max-width: 1720px) {
}

@media (max-width: 1620px) {
}

@media (max-width: 1400px) {
  header .head-bottom .nav-list > .prod .nav-two-div {
    width: 100%;
  }

  .container {
    width: 100%;
    padding: 0 20px;
  }

  .container_1600,
  .container_1400 {
    width: 1400px;
  }

  .index2 .content .wrap {
    padding: 20px;
  }

  .index2-bottom .tab {
    height: 140px;
  }

  .index2-bottom .tab .img {
    margin-top: 4%;
  }

  .index3 .wrap .content {
    padding: 20px 0;
  }

  .index3 .wrap .content .title h2 {
    margin-bottom: 10px;
  }

  .index3 .wrap .content p + p {
    margin-top: 10px;
  }

  .index3 .wrap .content a.more {
    margin-top: 10px;
  }
}

@media (max-width: 1220px) {
  .container_1600,
  .container_1400 {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  header .head-bottom .nav-list > li a {
    font-size: 16px;
  }

  header .head-bottom .logo {
    padding: 6px 0;
  }

  header .head-bottom .nav-list > li > a {
    padding: 26px 0;
  }

  header .head-bottom .nav-list > li {
    padding: 0 15px;
  }

  .index1 .items {
    gap: 30px;
  }

  .index1 .content .text {
    padding: 20px;
  }

  .index4 .wrap {
    height: auto;
  }

  .index4 .text p {
    font-size: 16px;
  }

  .index4 .wrap .content .title h2 {
    margin-bottom: 20px;
  }

  .index4 .text p + p {
    margin-top: 20px;
  }

  .footer-contact {
    height: 400px;
  }
}

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

  .container_1600 {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .Three_menu_box {
    padding-left: 10px;
  }

  .Crumbs ul li a,
  .Crumbs ul li,
  .Crumbs ul li a span,
  .Crumbs ul i {
    font-size: 14px;
    line-height: 1.2;
  }

  .Crumbs span.youAreHere {
    display: none;
  }

  body {
    padding-top: 60px;
  }

  /*移动端隐藏模块*/
  .header {
    display: none;
  }

  /*移动端头部*/
  .m_header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 100002;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }

  .m_header {
    height: 60px;
  }

  .logo_box {
    width: 100%;
    height: 60px;
    text-align: center;
    padding: 5px 0;
    line-height: 0;
    font-size: 0;
    zoom: 1;
  }

  .logo_box img {
    height: 100%;
  }

  .nav_toggle {
    color: #fff;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    transform-origin: 50% 50%;
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -13px;
    z-index: 999;
  }

  .nav_toggle {
    cursor: pointer;
    padding: 10px 35px 16px 0;
  }

  .nav_toggle span,
  .nav_toggle span:before,
  .nav_toggle span:after {
    cursor: pointer;
    height: 3px;
    width: 40px;
    background: #000000;
    position: absolute;
    display: block;
    content: "";
  }

  .nav_toggle span:before {
    top: -10px;
  }

  .nav_toggle span:after {
    bottom: -10px;
  }

  .nav_toggle span,
  .nav_toggle span:before,
  .nav_toggle span:after {
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
  }

  .nav_toggle.active span {
    background-color: transparent;
  }

  .nav_toggle.active span:before,
  .nav_toggle.active span:after {
    top: 0;
  }

  .nav_toggle.active span:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }

  .nav_toggle.active span:after {
    transform: translateY(-10px) rotate(-45deg);
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    top: 10px;
  }

  /*移动端导航*/
  .m_header .m_nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    z-index: 2;
    overflow: auto;
    border-top: 1px solid #f0f0f0;
    margin-top: -1px;
  }
  .m_header .head-langBoxs{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
  }
 .m_header .head-langBoxs ul{
    position: absolute;
    right: 0;
    top: 44px;
    background: #fff;
    display: none;
  }
  .m_header .m_nav_list a {
    display: block;
    width: 100%;
    padding: 0 15px;
    line-height: 35px;
    text-align: left;
    font-size: 14px;
    color: #000000;
  }

  .m_header .m_nav_list > li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.5s ease;
    transform: matrix(1, -1, 0, 1, 200, 100);
  }

  .m_header .m_nav_list > li > i {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #000;
    top: 8px;
    right: 10px;
    cursor: pointer;
    z-index: 2;
    background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/reset/li_click.png") no-repeat top center;
  }

  .m_header .m_nav_list > li > a {
    opacity: 0;
  }

  .m_header .m_nav_list .dropdown .dropdown_menu {
    height: 0;
    overflow: hidden;
  }

  .m_header .m_nav_list .dropdown .dropdown_menu.on {
    height: auto;
  }

  .m_header .m_nav_list .dropdown_menu > li {
    border-top: 1px solid #f0f0f0;
    background: #f5f5f5;
  }

  .footer_box .fast_navigation .item {
    display: none;
  }

  .contactBox202006131030 .textBox h2,
  .contactBox202006131030 .title h2 {
    letter-spacing: 0;
  }

  .footer_box .footerForm {
    padding: 20px;
  }

  .content h2 {
    font-size: 26px;
    padding: 20px 0;
  }

  section .title h2 {
    margin-bottom: 20px !important;
    line-height: 1 !important;
  }

  section .contact .wrap h3 {
    font-size: 20px;
  }

  section .contact .wrap p {
    font-size: 16px;
  }

  section .contact {
    padding: 20px 0;
    background-size: cover;
  }

  section p {
    font-size: 16px;
  }

  .footer-share {
    display: none;
  }

  .copyright-left {
    line-height: 1.2;
    padding: 10px 0;
  }

  .imgBanner .content {
    align-items: center;
    justify-content: center;
  }

  .index1 {
    padding: 20px 0;
  }

  .index1 .context {
    flex-direction: column;
  }

  .index1 .context .wrap {
    position: unset;
  }

  .index1 .context .tabs {
    width: 100%;
  }

  .index1 .context .boxs {
    width: 100%;
  }

  .index1 .box .content {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .index1 .content .img {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .index1 .content .text {
    width: 100%;
  }

  .index1 .content .text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1;
  }

  .index1 .content .text .more {
    margin-top: 20px;
  }

  .index1 .box .content {
    position: unset;
  }

  .index1 .box > .img {
    display: none;
  }

  .index1 .box {
    padding: 20px;
    background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/index1Img1.png") no-repeat center;
  }

  .index1 .context .tab.on::after {
    left: 0;
    width: 100%;
  }

  .index2-bottom {
    position: unset;
  }

  .index2 .context {
    flex-direction: column;
  }

  .index2 .context > .img {
    position: unset;
    width: 100%;
    display: none;
  }

  .index2-bottom .tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .index2 .context .content {
    width: 100%;
    height: auto;
  }

  .index2-bottom .tab {
    height: auto;
    padding: 20px 0;
  }

  .index2 {
    display: flex;
    flex-direction: column-reverse;
    background: url("https://hepingyuanpacking.usa72.wondercdn.com/public/static/images/home/en-us/index2Img.png") no-repeat center;
    background-size: cover;
  }

  .index2 .content .title {
    padding: 20px 0;
    text-align: center;
  }

  .index2 .content .title h2 {
    text-align: center;
    margin-bottom: 0 !important;
  }

  .index2 .content .wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .index2 .content .wrap .icon-img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .index2 .content .text h3 {
    text-align: center;
    margin-bottom: 20px;
  }

  .index2 .content .boxs {
    margin-bottom: 20px;
  }

  .index2 .content .boxs::after {
    display: none;
  }

  .index2-bottom .tab p {
    width: 100%;
    font-size: 16px;
  }

  .index3 {
    padding: 20px 0;
  }

  .index3 .title {
    margin-bottom: 0;
  }

  .index3 .items {
    grid-template-columns: 100%;
  }

  .index3 .item {
    grid-column: auto !important;
  }

  .index3 .item:first-child img {
    height: 460px;
  }

  .index4 .wrap {
    flex-direction: column-reverse;
    width: 100%;
    padding: 20px 0;
  }

  .index4 .wrap .content,
  .index4 .img {
    width: 100%;
  }

  .index4 .img {
    position: unset;
  }

  .index4 .img::after {
    display: none;
  }

  .index4 {
    margin-bottom: 20px;
  }

  .index5 {
    padding: 20px 0;
    background-size: cover;
    margin-bottom: 20px;
  }

  .index5 .items {
    grid-template-columns: 100%;
    gap: 20px;
  }

  .index5 .item {
    height: auto;
    padding: 20px;
  }

  .index5 .item h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-contact {
    height: auto;
    padding: 20px 0;
  }

  .footer-contact .wrap p {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .footer-copyright .wrap {
    padding: 20px 0;
    line-height: 20px;
  }

  .logo_box img {
    height: auto;
  }

  .logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prods1 {
    padding: 20px 0;
  }

  .prods2 {
    margin-bottom: 20px;
  }

  .prods2 .items {
    grid-template-columns: 100%;
    gap: 20px;
  }

  .prods1 .text {
    display: none;
  }

  .prods2 .item .img {
    min-height: 200px;
    margin-bottom: 20px;
  }

  .prods2 .item {
    height: auto;
    padding: 20px 0;
  }

  .index1 .tabs {
    flex-wrap: wrap;
  }

  .index1 .tabs .tab {
    flex: 30%;
  }

  .index1 .tabs .tab {
    padding-bottom: 0;
  }

  .index1 .tabs .tab p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .index1 .box .wrap {
    flex-direction: column;
  }

  .index1 .box .wrap > .img {
    width: 100%;
    margin-bottom: 20px;
  }

  .index2 {
    padding: 20px 0;
  }

  .index2 .item h3 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .index2 .item i.iconfont {
    font-size: 24px;
  }

  a.more {
    line-height: 40px;
    width: 130px;
    height: 40px;
    font-size: 14px;
  }

  .index3 .wrap {
    flex-direction: column;
    min-height: auto;
  }

  .index3 .wrap .img,
  .index3 .wrap .content {
    width: 100%;
  }

  .index3 .wrap .img {
    position: unset;
  }

  .index3 .wrap .content a.more {
    margin-top: 20px;
  }

  .index3-nums .items {
    flex-wrap: wrap;
  }

  .index3-nums .item {
    width: 50%;
    height: 120px;
    flex: auto;
  }

  .index3-nums .item .num {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .index3-nums .item .num sub {
    font-size: 14px;
  }

  .index3-nums .item:nth-child(2n)::after {
    display: none;
  }

  .index3-nums .item p {
    text-align: center;
  }

  .index4 {
    padding: 20px 0;
  }

  .index4 .wrap .content .title {
    margin-bottom: 20px;
  }

  .index4 .wrap .items {
    width: 100%;
    margin-top: 20px;
  }

  .index4 .wrap .item {
    padding: 20px 0;
    height: auto;
  }

  .index4 .wrap .item p {
    font-size: 16px;
    margin-top: 20px;
  }

  .index4 .wrap .item .box {
    width: 80%;
    text-align: center;
  }

  .index4 .wrap .content {
    padding-top: 0;
    border: none;
  }

  .index5 .box {
    padding: 0;
    border: none;
  }

  .index5 .imgs {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .index5 .img {
    width: 46%;
    margin: 0!important;
  }

  .index6 {
    padding: 20px 0;
  }

  .index6 .items {
    grid-template-columns: 100%;
  }

  .index6 .item .content {
    padding: 10px;
  }

  .index6 .content h3 {
    font-size: 18px;
  }

  .footer-contact {
    border-radius: unset;
  }

  .footer-contact .wrap p {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact .wrap p img {
    margin-right: 0;
    width: 60px;
    margin-bottom: 20px;
  }

  .imgBanner h1 {
    font-size: 26px;
  }

  .prods .imgBanner h1 {
    margin-bottom: 0;
  }

  .prods .item .wrap {
    flex-direction: column;
    padding: 20px 0;
  }

  .prods .item .wrap .img,
  .prods .item .wrap .content {
    width: 100%;
  }

  .prods .item .wrap .content h3 {
    font-size: 24px;
    margin: 20px 0;
  }

  .prods .item p {
    margin-bottom: 20px;
  }

  .prods .items {
    padding: 20px 0;
  }

  .imgBanner p{
    width: 100%;
    margin-top: 10px;
  }

  .prodDetail .imgBanner p {
    font-size: 20px;
  }

  .prod {
    padding: 20px 0 ;
  }

  .prod .items {
    grid-template-columns: 100%;
  }

  .prod .item h3 {
    text-align: center;
  }

  .prod {
    margin-bottom: 0;
  }

  .prod-detail1 .box .wrap {
    flex-direction: column;
  }

  .prod-detail1 .box .wrap .img {
    width: 100%;
    height: auto;
  }

  .prod-detail1 .box .wrap .content {
    padding: 20px;
    flex: auto;
  }

  .prod-detail1 .box .wrap h3 {
    font-style: 24px;
    margin-bottom: 20px;
  }

  .prod-detail1 {
    padding: 20px 0;
  }

  .prod-detail2 .item .wrap {
    padding: 20px 0;
    flex-direction: column!important;
  }

  .prod-detail2 .item .img,
  .prod-detail2 .items .item .content {
    width: 100%;
  }

  .prod-detail2 .item .img {
    margin-bottom: 20px;
  }

  .prod-detail2 .item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
  }

  .prod-detail2 .item p {
    line-height: 24px;
    margin-bottom: 0;
  }

  .prod-detail2 .item h2 {
    font-size: 28px;
    margin-bottom: 0;
  }

  .industry1 {
    padding: 20px 0;
  }

  .industry1 .items {
    grid-template-columns: 100%;
    gap: 20px;
    margin-top: 20px;
  }

  .industry1 .item .content {
    padding: 20px 0;
    height: auto;
  }

  .industry1 .item h3 {
    margin-bottom: 10px;
  }

  .food1 {
    padding: 20px 0;
  }

  .food1 .wrap {
    flex-direction: column;
    margin: 0;
    margin-bottom: 20px;
  }

  .food1 .wrap .img,
  .food1 .wrap .content {
    width: 100%;
  } 

  .food1 .wrap .content {
    padding: 10px;
  }

  .quality1 p {
    width: 100%;
  }

  .quality1 {
    padding: 20px 0;
  }

  .quality2 .wrap {
    flex-direction: column;
  }

  .quality2 .wrap .left {
    width: 100%;
    padding: 0;
  }

  .quality2 .wrap .right {
    position: unset;
    width: 100%;
    margin-top: 20px;
  }

  .quality2 .wrap .tabs {
    height: auto;
    overflow-y:auto;
  }

  .quality2 .wrap .tab .text {
    flex: 50%;
    padding: 10px;
  }

  .quality2 .wrap .text p {
    font-size: 18px;
    line-height: 27px;
  }

  .quality3 .tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .quality3 .tab {
    width: 48%;
    padding: 20px 0;
    font-size: 16px;
  }

  .quality3 .swiper-slide h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .quality3 .swiper-slide p {
    font-size: 14px;
  }

  .quality3 .swiper-slide .text {
    bottom: 4%;
    top: 4%;
    padding: 4%;
  }

  .quality3 {
    padding: 20px 0;
  }

  .who1 .wrap {
    flex-direction: column-reverse;
  }

  .who1 .wrap .img {
    position: unset;
    width: 100%;
    margin-bottom: 20px;
  }

  .who1 .wrap .content {
    width: 100%;
  }

  .who2 {
    padding: 20px 0;
  }

  .who2-swiper .swiper-slide.swiper-slide-active::after {
    display: none;
  }

  .who3 .items .item {
    position: unset;
    width: 100%;
  }

  .who3 .content > .img {
    display: none;
  }

  .who3 .items .item h3,
  .who3 .items .item p {
    text-align: left;
  }

  .who3 .items .item + .item {
    margin-top: 20px;
  }

  .who3 {
    padding: 20px 0;
  }

  .who4 .tab {
    font-size: 16px;
    line-height: 18px;
  }

  .who4 .box .text {
    padding: 20px;
    height: auto;
  }

  .who4 .box p {
    line-height: 20px;
  }

  .who5 .items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .who5,
  .who4 {
    padding: 20px 0;
  }

  .why1 p {
    width: 100%;
  }

  .why2 .items {
    grid-template-columns: 100%;
    gap: 20px;
  }

  .why2 .item .content {
    padding-top: 0;
  }

  .why2 .item .content h3 {
    font-size: 18px;
  }

  .why2 .item {
    padding: 20px;
    height: auto;
    flex-direction: column;
  }

  .why2 .item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .why2 .item .img {
    width: 100px;
    height: 100px;
    margin-right: 0;
    flex-shrink: 0;
    margin-bottom: 10px;
  }

  .why2 .item .content {
    width: 100%;
  }

  .why2,
  .why3,
  .why4 {
    padding: 20px 0;
  }

  .why3 .title p {
    width: 100%;
  }

  .why3 .items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .why4 .wrap .box {
    width: 100%;
  }

  .why4 .wrap .imgs {
    zoom: 58%;
    height: 84vw;
  }

  .why4 {
    margin-bottom: 0;
  }

  .quality2 .wrap .tab + .tab {
    margin-top: 10px;
  }

  .prod .item .img {
    height: auto;
  }

  .pro_S_img .img {
    width: 84vw;
    min-height: 60vw;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
  }

}

@media (max-width: 768px) {
  #back_top {
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .contactBox202006131030 .contactInfo {
    width: 100%;
  }

  .contactBox202006131030 .contactForm {
    width: 100%;
    padding-left: 0;
    padding-top: 40px;
  }

  .mb-header {
    display: block !important;
  }

  .footer-wrap,
  .index6 .swiper-slide {
    width: 100%;
  }

  .footer-box {
    padding: 20px 0;
  }

  .footer-wrap {
    padding: 0;
  }

  .one-wrap,
  .four-wrap,
  .two-wrap {
    display: none;
  }

  .footer-share {
    margin-top: 20px;
  }

  footer {
    padding: 20px 0;
  }

  .footer-box {
    padding-bottom: 20px;
  }

  .footer-copyright {
    padding: 0;
    margin-bottom: 28px;
  }

  .footer-copyright .col-md-3 {
    text-align: center;
    margin-top: 10px;
  }

  section .title h2,
  section .title h3 {
    font-size: 28px;
    line-height: 40px;
    padding: 0;
  }

  .Crumbs_nav {
    padding: 20px 0;
  }
}

@media (max-width: 640px) {
}

@media (max-width: 540px) {
}

@media (max-width: 480px) {
}
