/* 
* @作者: 庄晓辉  
* @制作日期: 2021-03-16 22:38:05  
* @上次修改者: 庄晓辉  
* @上次修改时间: 2021-03-16 22:38:05  
*/

/* Animate.css动画演示 */
@import "../css/animate.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/iconfont.css";

/* 公共样式 */
@import "../css/public.css";
.text_btn{
  position: relative;
}
.text_btn::after{
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left:0;
  top:0;
  background-color: #fea100;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.text_btn:hover:after{
  width: 100%;
}
.text_span{
  position: relative;
  z-index: 1000;
}

/* 顶部 */
.topbox {
  width: 100%;
  border-bottom: 1px solid #eee;
  line-height: 44px;
  font-size: 14px;
  color: #333333;
}
.top_dianhua{
  background: url(../images/top_dianhua.png) no-repeat left center;
  padding-left: 28px;
}

/* 头部 */
.header {
  width: 100%;
  padding: 22px 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  position: relative;
  left: 0;
  top: 0;
  z-index: 999999;
}
.header > .container{
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.logo > a{
  width: 244px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}

/* 导航 */
nav {
  width: auto;
  height: 100%;
}
.layui-nav{
    background-color: initial;
    padding: 0;
    border-radius: initial;
    -webkit-border-radius: initial;
    -moz-border-radius: initial;
    -ms-border-radius: initial;
    -o-border-radius: initial;
}
.layui-nav .layui-nav-item{
    width: auto;
    height: 100%;
    padding-right: 7px;
    background: url(../images/shutiao.jpg) no-repeat right center;
}
.layui-nav .layui-nav-item > a{
    padding: 0;
    margin: 0 28px;
    text-align: center;
    font-size: 16px;
    color: #141414;
    position: relative;
    z-index: 1001;
}
.layui-nav .layui-nav-item:nth-child(7){
  padding-right: 0;
  background: none;
}
.layui-nav .layui-nav-item:nth-child(7) > a{
  margin: 0 0 0 28px;
}
.layui-nav .layui-nav-more{
    display: none;
}
.layui-nav .layui-this:after,
.layui-nav-bar,
.layui-nav-tree .layui-nav-itemed:after {
  height: 100%;
  background-color: transparent;
}
.layui-nav .layui-nav-item a:hover,
.layui-nav .layui-this a{
  color: #fea100;
}
.layui-nav .layui-nav-item:hover > a{
  color: #fea100;
}

/* 导航下拉 */
.layui-nav-child{
  top: 51px;
  padding: 2px 0;
  border: none;
  line-height: 34px;
  background-color: #fea100;
  border-radius: initial;
  -webkit-border-radius: initial;
  -moz-border-radius: initial;
  -ms-border-radius: initial;
  -o-border-radius: initial;
}
.layui-nav .layui-nav-child dd a{
  font-size: 14px;
  color: #fff;
  padding: 0;
  text-align: center;
}
.layui-nav .layui-nav-child dd a:hover{
  background-color: #fff;
  color: #fea100;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox .swiper-slide img {
  width: 100%;
}
/*圆点*/
.banner .swiper-pagination {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 15px;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fea100;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fea100;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/*箭头*/
.banner .banner-next {
  right: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/next.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner .banner-prev {
  left: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/prev.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner:hover .banner-next {
  opacity: 1;
}
.banner:hover .banner-prev {
  opacity: 1;
}
/* END */

/* 首页内容 */
/* 了解鸿影贸易 */
.gsjj{
  width: 100%;
  overflow: hidden;
  background: url(../images/gsjj_bj.jpg) no-repeat center center;
  background-size: cover; 
  padding: 50px 0 60px 0;
}
.gsjj_left{
  width: 50%;
  float: left;
}
.gsjj_title{
  display: block;
  overflow: hidden;
}
.gsjj_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
}
.gsjj_p > span{
  float: left;
  position: relative;
  font-size: 20px;
  color: #141414;
  padding-right: 8px;
}
.gsjj_p > span::before{
  content: "";
  width: 75px;
  float: left;
  height: 3px;
  background-color: #fea100;
  position: absolute;
  left: 100%;
  bottom: 5px;
}
.gsjj_sp{
  display: block;
  overflow: hidden;
  margin-top: 5px;
  line-height: 28px;
  font-size: 24px;
  color: #adadad;
  text-transform: uppercase;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  margin-top: 25px;
  line-height: 36px;
  font-size: 14px;
  color: #141414;
  height: 144px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient: vertical;  
}
.gsjj_more{
  display: block;
  overflow: hidden;
  padding-top: 30px;
}
.gsjj_more a{
  float: left;
  width: 130px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background-color: #fff;
  font-size: 12px;
  color: #999;
}
.gsjj_more a:hover{
  color: #fff;
}
.gsjj_right{
  width: 44.5%;
  float: right;
  padding-top: 35px;
}
.gsjj_ul{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gsjj_ul li{
  width: calc(50% - 19px);
  float: left;
  margin-top: -1px;
  border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
}
.gsjj_ul li a{
  display: block;
  overflow: hidden;
  padding: 20px 0;
}
.gsjj_ul li a .gsjj_icon{
  width: 44px;
  float: right;
  height: 34px;
  background-image: url(../images/gsjj_icon.png);
  background-repeat: no-repeat;
  background-size: 176px 68px;
  margin-top: 20px;
}
.gsjj_ul li a .gsjj_pp{
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 16px;
  color: #333;
}
.gsjj_ul li a .gsjj_spp{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 22px;
  font-size: 18px;
  color: #333;
  text-transform: uppercase;
}
.gsjj_ul li a .gsjj_pps{
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 14px;
  color: #a1a1a1;
}
.gsjj_ul li:nth-child(1) a .gsjj_icon{
  background-position: left top;
}
.gsjj_ul li:nth-child(2) a .gsjj_icon{
  background-position: -44px top;
}
.gsjj_ul li:nth-child(3) a .gsjj_icon{
  background-position: -88px top;
}
.gsjj_ul li:nth-child(4) a .gsjj_icon{
  background-position: right top;
}
.gsjj_ul li a:hover .gsjj_pp{
  color: #ff0000;
}
.gsjj_ul li:nth-child(1) a:hover .gsjj_icon{
  background-position: left bottom;
}
.gsjj_ul li:nth-child(2) a:hover .gsjj_icon{
  background-position: -44px bottom;
}
.gsjj_ul li:nth-child(3) a:hover .gsjj_icon{
  background-position: -88px bottom;
}
.gsjj_ul li:nth-child(4) a:hover .gsjj_icon{
  background-position: right bottom;
}

/* 产品中心 */
.cpzx{
  width: 100%;
  overflow: hidden;
  padding: 45px 0;
}
.cpzx_title{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 34px;
}
.cpzx_p{
  font-size: 20px;
  color: #141414;
}
.cpzx_sp{
  font-size: 24px;
  color: #adadad;
  text-transform: uppercase;
}
.cpzx_heng{
  display: block;
  overflow: hidden;
  width: 75px;
  height: 3px;
  background-color: #fea100;
  margin: 10px auto 0 auto;
}
.cpzx_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  padding-top: 25px;
}
.cpzx_nav li{
  width: 130px;
  float: left;
  margin: 0 8px 10px 8px;
}
.cpzx_nav li a{
  display: block;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
  background-color: #ff0000;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.cpzx_nav li a:hover{
  background-color: #fea100;
}
.cpzx_nav li.cpzx_actived a{
  background-color: #fea100;
}
.cpzx_contect{
  display: block;
  overflow: hidden;
  padding-top: 16px;
}
.cpzx_ul{
  display: none;
  overflow: hidden;
  width: 1220px;
}
.cpzx_ul:first-child{
  display: block;
}
.cpzx_ul li{
  width: 285px;
  float: left;
  margin: 0 20px 25px 0;
}
.cpzx_ul li .cpzx_B{
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #d7d7d7;
}
.cpzx_ul li .cpzx_B .cpzx_img{
  width: 100%;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cpzx_ul li .cpzx_B .cpzx_img::before{
  content: "";
  display: block;
  padding-top: 80.5654%;
}
.cpzx_ul li .cpzx_txt{
  display: block;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: #e9e9e9;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}
.cpzx_ul li:hover .cpzx_B .cpzx_img{
  transform: scale(1.1,1.1);
}
.cpzx_ul li:hover  .cpzx_txt{
  background-color: #fea100;
  color: #fff;
}

/* 活动资讯 */
.news{
  width: 100%;
  overflow: hidden;
  background: url(../images/news_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 55px 0;
}
.news_contect{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
}
.news_ul{
  width: calc(50% - 20px);
  float: left;
}
.news_ul li{
  display: block;
  overflow: hidden;
  margin-bottom: 17px;
}
.news_ul li:last-child{
  margin: 0;
}
.news_ul li a{
  display: block;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  padding: 13px 0;
}
.news_ul li a .news_sub{
  width: 115px;
  float: left;
  border-right: 1px solid #eaeaea;
  line-height: 40px;
  text-align: center;
  font-size: 30px;
  font-family: Calibri;
  color: #000;
  margin-right: 15px;
}
.news_ul li a .news_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}
.news_ul li a .news_txt{
  display: block;
  overflow: hidden;
  line-height: 18px;
  height: 36px;
  font-size: 14px;
  color: #000;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
  padding-right: 20px;
  margin-top: 10px;
}
.news_ul li a:hover{
  background-color: #fea100;
}
.news_ul li a:hover .news_sub{
  color: #fff;
}
.news_ul li a:hover .news_p{
  color: #fff;
}
.news_ul li a:hover .news_txt{
  color: #fff;
}
.news_img{
  width: 50%;
  float: right;
}

/* 合作伙伴 */
.coop{
  width: 100%;
  overflow: hidden;
  padding: 55px 0;
}
.coop-imgbox{
  margin-top: 25px;
}
.coop-imgbox .swiper-slide a{
  width: 100%;
  float: left;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  position: relative;
}
.coop-imgbox .swiper-slide a::before{
  content: "";
  display: block;
  padding-top: 42.5532%;
}
.coop-imgbox .swiper-slide a:hover{
  border-color: #ffe0aa;
}
.coop-imgbox .swiper-slide a:hover img{
  transform: scale(1.1,1.1);
}
/* END-首页内容 */

/* 底部 */
footer {
  background: #282828;
}
.link{
  width: 100%;
  overflow: hidden;
  background-color: #fea100;
  padding: 20px 0;
}
.link > .container{
  display: flex;
  align-items: center;
}
.link_title{
  float: left;
  border-right: 1px solid rgba(255,255,255,0.5);
  padding-right: 20px;
  margin-right: 20px;
  color: #fff;
}
.link_p{
  line-height: 32px;
  font-family: Impact;
  font-size: 36px;
  text-transform: uppercase;
}
.link_sp{
  line-height: 26px;
  font-size: 15px;
}
.link_txt{
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.link_txt a{
  color: #fff !important;
}
.link_txt span[lay-separator] {
  color: #fff;
}
.link_txt a:hover{
  color: #fff !important;
  text-decoration: underline;
}
.footer{
  width: 100%;
  overflow: hidden;
  padding: 35px 0;
  border-bottom: 1px solid #2f2f2f;
}
.footer > .container{
  display: flex;
  flex-wrap: wrap;
}
.footer > .container > div{
  float: left;
  border-right: 1px solid #3a3a3a;
  padding: 15px 0;
}
.footer_p{
  float: left;
  line-height: 26px;
  padding-bottom: 5px;
  border-bottom: 3px solid #fff;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}
.footer_ul{
  width: 100%;
  float: left;
}
.footer_ul li{
  display: block;
  overflow: hidden;
  line-height: 30px;
}
.footer_ul li a{
  color: #fff;
  font-size: 14px;
}
.footer_ul li a:hover{
  color: #fff;
  text-decoration: underline;
}
.footer_brand{
  width: 12.5%;
  padding-right: 20px;
}
.footer_cp{
  width: 15%;
  padding: 15px 20px 15px 40px  !important;
}
.footer_news{
  width: 14.25%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_lxwm{
  width: 39%;
  padding: 15px 20px 15px 40px  !important;
}
.footer_txt{
  width: 100%;
  float: left;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}
.footer_txt > p{
  display: block;
  overflow: hidden;
  position: relative;
  padding-left: 30px;
}
.footer_txt > p > img{
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
}
.footer_wx{
  width: 19.25%;
  border: none !important;
  padding: 15px 0 15px 40px !important;
}
.footer_wx img{
  width: 100%;
  display: block;
  height: auto;
  margin-top: 7px;
}

.copyright{
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 20px;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}
.copyright a{
  color: #fff;
  margin: 0 5px;
}
.copyright a:hover{
  color: #fff;
  text-decoration: underline;
}
/* END-底部 */

/* 品牌故事 */
.main{
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.main_left{
  width: 285px;
  float: left;
}
.about{
  width: 100%;
  float: left;
}
.about_title{
  display: block;
  overflow: hidden;
  height: 60px;
  line-height: 60px;
  background-color: #fea100;
  background-image: url(../images/about_title.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.about_ul{
  display: block;
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid #e6e6e6;
}
.about_ul > li{
  display: block;
  overflow: hidden;
  padding-bottom: 1px;
  background: url(../images/about_heng.jpg) no-repeat center bottom;
  background-size: 100% 1px;
}
.about_ul > li > a{
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.about_ul > li:hover > a{
  background-color: #fea100;
  color: #fff;
}
.about_ul > li.about_on >a{
  background-color: #fea100;
  color: #fff;
}
.about_dl{
    display: none;
    padding: 1px;
}
.about_dl > dd{
  display: block;
  overflow: hidden;
  padding-bottom: 1px;
  background: url(../images/about_heng.jpg) no-repeat center bottom;
  background-size: 100% 1px;
}
.about_dl > dd:last-child{
    padding: 0;
    background: none;
}
.about_dl > dd > a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.about_dl > dd > a:hover{
  background-color: #fea100;
  color: #fff;
}


.about_B{
  display: block;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}
.about_B img{
  width: 100%;
  display: block;
  height: auto;
  border-bottom: 1px solid #e6e6e6;
}
.about_txt{
  display: block;
  overflow: hidden;
  padding: 15px;
  font-size: 14px;
  color: #333;
  line-height: 30px;
}
.about_txt .about_txt_p{
  display: block;
  font-size: 24px;
  color: #140f16;
  line-height: 40px;
  font-weight: bold;
}
.about_txt .about_txt_sp{
  display: block;
  font-size: 30px;
  color: #fea100;
  line-height: 40px;
  font-weight: bold;
}
.main_right{
  width: 895px;
  float: right;
}
.dqwz_title{
  width: 100%;
  float: left;
}
.dqwz_p{
  line-height: 20px;
  font-size: 24px;
  color: #b0b0b0;
  text-transform: uppercase;
}
.dqwz_sp{
  position: relative;
  margin-top: 10px;
  line-height: 32px;
  height: 32px;
  font-size: 30px;
  color: #000;
}
.dqwz_sp > span{
  float: left;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-right: 15px;
}
.dqwz_sp::before{
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 2px;
}
.dqwz_contect{
  width: 100%;
  float: left;
  padding-top: 30px;
}
.company{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #141414;
}

/* 产品中心 */
.cpzx_ul1{
  display: block;
  overflow: hidden;
  width: 915px;
}
.cpzx_ul1 li{
  width: 285px;
  float: left;
  margin: 0 20px 25px 0;
}
.cpzx_ul1 li .cpzx_B{
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #d7d7d7;
}
.cpzx_ul1 li .cpzx_B .cpzx_img{
  width: 100%;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cpzx_ul1 li .cpzx_B .cpzx_img::before{
  content: "";
  display: block;
  padding-top: 80.5654%;
}
.cpzx_ul1 li .cpzx_txt{
  display: block;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: #e9e9e9;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}
.cpzx_ul1 li:hover .cpzx_B .cpzx_img{
  transform: scale(1.1,1.1);
}
.cpzx_ul1 li:hover  .cpzx_txt{
  background-color: #fea100;
  color: #fff;
}

.cpxq{
  display: block;
  overflow: hidden;
}
.cpxq_p{
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}
.cpxq_sp{
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  padding: 5px 0;
  border-bottom: 1px dashed #ccc;
}
.cpxq_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #141414;
}
.cpxq_txt img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

/* 活动资讯 */
.news_ul1{
  display: block;
  overflow: hidden;
}
.news_ul1 li{
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
.news_ul1 li a{
  display: block;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  padding: 13px 0;
}
.news_ul1 li a .news_sub{
  width: 115px;
  float: left;
  border-right: 1px solid #eaeaea;
  line-height: 40px;
  text-align: center;
  font-size: 30px;
  font-family: Calibri;
  color: #000;
  margin-right: 15px;
}
.news_ul1 li a .news_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}
.news_ul1 li a .news_txt{
  display: block;
  overflow: hidden;
  line-height: 18px;
  height: 36px;
  font-size: 14px;
  color: #000;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
  padding-right: 20px;
  margin-top: 10px;
}
.news_ul1 li a:hover{
  background-color: #fea100;
}
.news_ul1 li a:hover .news_sub{
  color: #fff;
}
.news_ul1 li a:hover .news_p{
  color: #fff;
}
.news_ul1 li a:hover .news_txt{
  color: #fff;
}

/* 合作伙伴 */
.coop_ul{
  display: block;
  overflow: hidden;
  width: 102%;
  margin-left: -1%;
}
.coop_ul li{
  width: 23%;
  float: left;
  margin: 0 1% 2% 1%;
}
.coop_ul li a{
  width: 100%;
  float: left;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  position: relative;
}
.coop_ul li a::before{
  content: "";
  display: block;
  padding-top: 42.5532%;
}
.coop_ul li a:hover{
  border-color: #ffe0aa;
}
.coop_ul li a:hover img{
  transform: scale(1.1,1.1);
}

/*联系我们*/
.contact_txt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #000;
  line-height: 30px;
}
.contact_map {
  width: 100%;
  overflow: hidden;
  height: 350px;
  border: none;
  margin-top: 20px;
}
/*END-联系我们*/

.jlfanye{ /*float:right;*/ width:100%;}
.jlfanye a{ padding:5px;  border: solid 1px #dedede; /*float:left;*/ min-width:8px; margin:8px 2px; color:#999;}
.jlfanye a:hover{ color:#f00;}

@media (max-width: 1220px) {
/* 导航 */
.layui-nav .layui-nav-item > a{
  margin: 0 20px;
}
.layui-nav .layui-nav-item:nth-child(7) > a{
  margin: 0 0 0 20px;
}

/*首页内容*/
/* 了解鸿影贸易 */
.gsjj{
  padding: 40px 0;
}
.gsjj_right{
  width: 48%;
}

/* 产品中心 */
.cpzx{
  padding: 35px 0;
}
.cpzx_nav{
  width: 102%;
  margin-left: -1%;
}
.cpzx_nav li{
  width: 11.5%;
  margin: 0 0.5% 10px 0.5%;
}
.cpzx_ul{
  width: 102%;
  margin-left: -1%;
}
.cpzx_ul li{
  width: 23%;
  margin: 0 1% 25px 1%;
}

/* 活动资讯 */
.news{
  padding: 40px 0;
}

/* 合作伙伴 */
.coop{
  padding: 40px 0;
}
/*END-首页内容*/

/* 底部 */
.footer {
  padding: 25px 0;
}
.footer_cp {
  padding: 15px 20px !important;
}
.footer_lxwm {
  padding: 15px 20px !important;
}
.footer_wx {
  padding: 15px 0 15px 20px !important;
}
/* END-底部 */

/* 品牌故事 */
.main{
  padding: 40px 0;
}
.main_left{
  width: 24%;
}
.main_right{
  width: 74%;
}

/* 产品中心 */
.cpzx_ul1{
  width: 102%;
  margin-left: -1%;
}
.cpzx_ul1 li{
  width: 31.3333%;
  margin: 0 1% 25px 1%;
}

}

@media (max-width: 991px) {
/* 导航按钮 */
.icon-menu {
  float: right;
  cursor: pointer;
  width: 40px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999999;
  background-size: 100% 100%;
}
.icon-menu span {
  width: 100%;
  height: 6px;
  float: left;
  background: #fea100;
}

/* 头部 */
.header {
  padding: 15px 0;
}

/* 导航 */
nav {
  padding:0;
  background: none;
  height: auto;
}
.layui-nav{
  display: none;
  width: 150px;
  padding: 1px 0;
  background-color: rgba(255,0,0,0.95);
  position: absolute;
  right: 10px;
  top:100%;
}
.layui-nav .layui-nav-item{
  width: 100%;
  height: auto;
  line-height: 40px;
  padding: 0;
  background: none;
}
.layui-nav .layui-nav-item > a{
  height: auto;
  color: #fff;
}
.layui-nav .layui-nav-item:nth-child(7) > a{
  margin: 0;
}
.layui-nav .layui-this:after, .layui-nav-bar, .layui-nav-tree .layui-nav-itemed:after {
  display: none;
}
.layui-nav .layui-nav-item:hover{
  background-color: #fea100;
}
.layui-nav .layui-nav-item:hover a{
  color: #fff;
}
.layui-nav .layui-this{
  background-color: #fea100;
}
.layui-nav .layui-this a{
  color: #fff;
}
/* END */

/*首页内容*/
/* 了解鸿影贸易 */
.gsjj{
  padding: 20px 0;
}
.gsjj_left{
  width: 46%;
}
.gsjj_txt{
  margin-top: 15px;
  line-height: 30px;
  height: 120px;
  -webkit-line-clamp: 4;
}
.gsjj_more {
  padding-top: 10px;
}
.gsjj_right {
  width: 52%;
  padding-top: 15px;
}
.gsjj_ul li {
  width: calc(50% - 10px);
}
.gsjj_ul li a {
  padding: 10px 0;
}

/* 产品中心 */
.cpzx{
  padding: 20px 0;
}
.cpzx_nav li{
  width: 15.6666%;
}
.cpzx_ul li{
  width: 31.33%;
  margin: 0 1% 20px 1%;
}

/* 活动资讯 */
.news{
  padding: 20px 0;
}
.news_contect{
  padding-top: 20px;
}

/* 合作伙伴 */
.coop{
  padding: 20px 0;
}
.coop-imgbox{
  margin-top: 15px;
}
/*END-首页内容*/

/* 底部 */
.link {
  padding: 10px 0;
}
.footer {
  padding: 15px 0;
}
.footer > .container > div {
  padding: 10px 0;
}
.footer_cp {
  padding: 10px !important;
}
.footer_lxwm {
  padding: 10px !important;
}
.footer_wx {
  padding: 10px 0 10px 10px !important;
}
/* END-底部 */

/* 品牌故事 */
.main{
  padding: 20px 0;
}
.main_left{
  width: 34%;
}
.main_right{
  width: 64%;
}

}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  right: 10px;
  width: 30px;
  height: 18px;
}
.icon-menu span {
  height: 3px;
}

/* 头部 */
.header{
  padding: 10px 0;
}
.logo{
  width: 60%;
}
.logo a {
  width: 100%;
}
/* END */

/*首页内容*/
/* 了解鸿影贸易 */
.gsjj{
  padding: 10px 0;
}
.gsjj_left{
  width: 100%;
}
.gsjj_txt{
  margin-top: 5px;
  line-height: 24px;
  height: 96px;
  -webkit-line-clamp: 4;
}
.gsjj_more a{
  width: 100px;
  height: 30px;
  line-height: 30px;
  background-color: #fea100;
  color: #fff;
}
.gsjj_more a::after{
  background-color: #ff0000;
}
.gsjj_right {
  width: 100%;
  padding-top: 10px;
}
.gsjj_ul li {
  width: calc(50% - 5px);
}
.gsjj_ul li a {
  padding: 10px 0;
}
.gsjj_ul li a .gsjj_spp {
  margin-top: 5px;
  font-size: 16px;
}
.gsjj_ul li a .gsjj_pps {
  line-height: 16px;
  font-size: 12px;
}

/* 产品中心 */
.cpzx{
  padding: 10px 0;
}
.cpzx_title {
  line-height: 24px;
}
.cpzx_p {
  font-size: 16px;
}
.cpzx_sp {
  font-size: 18px;
}
.cpzx_heng {
  margin: 5px auto 0 auto;
}
.cpzx_nav {
  padding-top: 10px;
}
.cpzx_nav li{
  width: 32.3333%;
  margin: 0 0.5% 1% 0.5%;
}
.cpzx_contect {
  padding-top: 0;
}
.cpzx_ul{
  padding-top: 10px;
}
.cpzx_ul li{
  width: 48%;
  margin: 0 1% 10px 1%;
}

/* 活动资讯 */
.news{
  padding: 10px 0;
}
.news_contect{
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.news_ul{
  width: 100%;
  margin-top: 10px;
}
.news_ul li{
  margin-bottom: 10px;
}
.news_ul li a{
  padding: 5px 0;
}
.news_ul li a .news_sub{
  width: 85px;
  line-height: 33px;
  font-size: 20px;
  margin-right: 10px;
}
.news_ul li a .news_txt{
  padding-right: 10px;
  margin-top: 0;
}
.news_img{
  width: 100%;
}
.news_img::before{
  content: "";
  display: block;
  padding-top: 60.6667%;
}

/* 合作伙伴 */
.coop{
  padding: 10px 0;
}
.coop-imgbox{
  margin-top: 10px;
}
/*END-首页内容*/

/* 底部 */
.link > .container {
  flex-wrap: wrap;
  justify-content: center;
}
.link_title {
  border: none;
  padding: 0;
  margin-right: 0;
  text-align: center;
}
.link_title>div{
  float: left;
  padding: 0 5px;
}
.link_p {
  line-height: 30px;
  font-size: 20px;
}
.link_sp {
  line-height: 30px;
  font-size: 14px;
}
.link_txt {
  font-size: 12px;
  line-height: 20px;
  padding-top: 5px;
}
.link_txt span[lay-separator] {
  margin: 0 3px;
}
/* END-底部 */

/* 品牌故事 */
.main{
  padding: 0;
}
.main_left{
  width: 100%;
}
.about_title {
  width: calc(100% + 20px);
  margin-left: -10px;
  height: 50px;
  line-height: 50px;
  background-image: url(../images/imgs/sj_jiantou.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
  font-size: 18px;
  text-align: left;
  padding-left: 20px;
}
.about_ul{
  display: none;
  margin-top: 2px;
}
.about_ul li a{
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.main_right{
  width: 100%;
}
.dqwz_contect{
  padding: 10px 0;
}

/* 产品中心 */
.cpzx_ul1 li{
  width: 48%;
  margin: 0 1% 10px 1%;
}

/* 活动资讯 */
.news_ul1 li{
  margin-bottom: 10px;
}
.news_ul1 li a{
  padding: 5px 0;
}
.news_ul1 li a .news_sub{
  width: 85px;
  line-height: 33px;
  font-size: 20px;
  margin-right: 10px;
}
.news_ul1 li a .news_txt{
  padding-right: 10px;
  margin-top: 0;
}

/* 合作伙伴 */
.coop_ul li{
  width: 31.33%;
}

/*联系我们*/
.contact_map {
  height: 250px;
  margin-top: 10px;
}
/*END-联系我们*/
}

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 62px;
  float: left;
  background: #fff;
}
.root {
  width: 100%;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999999999;
  background: #fff;
}
.root a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  background: #282828;
  text-align: center;
}
.root a > div {
  width: 100%;
  float: left;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #fff;
}
.root a > div:first-child {
  height: 30px;
  line-height: 30px;
  font-size: 24px;
}
.root a:hover {
  background: #fea100;
  color: #fff;
}
.dbbox {
  position: fixed;
  left: 0;
  bottom: 65px;
  z-index: 99999;
  width: 100%;
}
.dbbox .dbs {
  position: relative;
  padding: 0 15px;
  display: none;
  text-align: center;
  transition: initial;
}
.dbbox .dbs .neirong {
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #fea100;
}
.dbbox .dbs img {
  max-width: 140px;
}
/* END */

#online_service_bar{font-size:12px;color:#555;font-family:"Microsoft YaHei",Verdana,"BitStream vera Sans",Tahoma,Helvetica,Sans-serif;}
#online_service_bar a{color:#555;text-decoration: none;}
#online_service_bar a:hover{color:#E21F2B;text-decoration: none;}
#online_service_bar img{border:none;vertical-align: middle;}
#online_service_bar dl,#online_service_bar dd,#online_service_bar ul,#online_service_bar li{margin:0;padding:0;list-style:none;}


/*在线客服边栏*/
#online_service_bar{position:absolute; top:-150px; right:0;overflow:hidden;z-index:1001;}
#online_service_fullbar{display:none;width:138px;padding-bottom:10px;background:url(../images/imgs/footer.gif) no-repeat left bottom;}
.service_bar_head{text-indent: -9999px;width:138px;height:58px;position:relative;background:url(../images/imgs/header.gif) no-repeat left top;}
.service_bar_main{width:130px;padding:5px 12px;background:url(../images/imgs/main.gif) repeat-y left top;}
#service_bar_close{position:absolute;width:35px;height:35px;top:0;right:0;cursor:pointer;display:block;text-indent: -9999px;}

/*在线客服边栏收缩状态*/
#online_service_minibar{margin-top:150px;width:23px;height:80px;background:url(../images/imgs/mini.gif) no-repeat right top;display:none;cursor: pointer;}

/*客服菜单列表*/
.service_menu{font-size:12px;width:106px;overflow:hidden;}
.service_menu li{width:106px;display:inline;overflow:hidden;}
.service_menu li dt{text-align:left;margin-bottom:5px;padding:8px 10px 6px 10px;*padding:9px 10px 5px 10px;background:url(../images/imgs/menu.gif) no-repeat top center;cursor: pointer;}
.service_menu li dd{display:none;text-align:center;}
.service_menu li dd a img{margin-bottom:5px;}
.service_menu li.hover dt{color:#E21F2B;}
.service_menu li.hover dd{padding:5px 0;line-height:20px;}
.qq_btn{display:block;padding:4px;}
.service_tel{ font-size:12px; font-family:"Microsoft YaHei",Verdana,"BitStream vera Sans",Tahoma,Helvetica,Sans-serif; padding-left:22px; height:28px; line-height:28px; background:url(../images/imgs/tel.png) no-repeat 5px center; }

/* 网站整体布局 End */