@import url("./aos.css");
@import url("./base.css");
@import url("./layout.css");
@import url("./module.css");
@import url("./state.css");
@import url("./themes.css");
@import url("./public.css");

footer{
  margin-top: 0;
}
.header000{
  background-color: rgba(0, 0, 0, .8) !important;
}
.banner-app{
  display: none;
}
.banner{
  position: relative;
  height: 100vh;
  width: 100%;
}
.banner video{
  height: 100vh;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  z-index: 99;
}
.banner-mask{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}
.banner .swiper-button-prev, .banner .swiper-button-next{
  background: transparent;
  width: 60px;
  background: rgba(0, 0, 0, .5) url('../images/bannerright.png') no-repeat;
  background-size: contain;
  background-position: center;
  height: 80px;
}
.banner .swiper-button-prev{
  transform: rotate(180deg);
  left: 40px;
}
.banner .swiper-button-next{
  right: 40px;
}
.banner .swiper-pagination{
  bottom: 136px;
}
.banner .swiper-pagination .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  background-color: #fff;
  opacity: .5;
}
.banner .swiper-pagination .swiper-pagination-bullet-active{
  background-color: var(--secondary-color);
  opacity: 1;
}
.down{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 1;
}
.down img{
  width: 80px;
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
}
.down img:hover{
  animation-play-state: paused;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.5;
  }
}

/* 公司简介 */
.company-profile{
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}
.profile-title .en{
  font-size: 24px;
  font-weight: bold;
  font-size: 40px;
  font-family: Arial;
}
.profile-title .cn{
  /* margin-top: 5px; */
  /* font-size: 28px; */
  font-size: 32px;
  line-height: 1;
  font-weight: bolder;
  color: var(--secondary-color);
}
.company-profile .kele-grid{
  margin-top: 0px;
}
.company-profile p{
  margin-top: 45px;
  font-size: 14px;
  text-indent: 2em;
  line-height: 2;
}

.statistics{
  position: absolute;
  bottom: 20px;
  padding: 10px;
  width: 65%;
  z-index: 999;
  background-color: #FFF;
  box-shadow: 0 0 10px #ccc;
}
.statistics-item{
  width: 33%;
  border-left: 1px solid #ececec;
  text-align: center;
}
.statistics .statistics-item:first-child{
  border-left: none;
}
.statistics-item dt{
  font-size: 38px;
  font-weight: bold;
  color: var(--primary-color);
}
.statistics-item dt sub{
  padding-left: 5px;
  font-size: 16px;
}
.statistics-item dd{
  margin-top: 5px;
  margin-left: 0;
  font-size: 16px;
}

/* 业务战略方向 */
.accordion{
  position: relative;
  width:100%;
  height:600px;
  background-image: url('../images/accordionbg.jpg');
  background-size: cover;
  background-position: right;
}
.accordion ul{
  display: flex;
  height: 100%;
  width: 100%;
}
.accordion ul li{
  position: relative;
  list-style: none;	
  width:14.28%;
  height: 100%;
  /* border-left: 1px solid #fff; */
  transition: .6s;
  overflow: hidden;
  box-sizing: border-box;
}
.accordion ul:hover li{
  width: 10.5%;
}
.accordion ul li:hover{
  width: 37%;
}
.content{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.accordion-con-mask{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, .3);
  transition: opacity .5s, background-color .5s;
  border-radius: 6px;
}
.accordion-info{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 16px 16px 24px;
  font-size: 14px;
  color: #333;
  background-color: rgba(255, 255, 255, .8);
  min-width: 80%;
  border-radius: 16px;
}
.accordion-info h3{
  margin-top: 10px;
  margin-bottom: 10px;
}
.accordion ul li:hover .accordion-con-mask{
  opacity: 1;
  transition-delay: 0.5s;
}

.accordion img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion ul li p{
  opacity: 0;
  position: absolute;
  left:0;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,.3);
  line-height: 600px;
  color: #fff;
  text-align: center;
  transition: .7s;
  margin: 0;
  box-sizing: border-box;
}
.p1{
  top: 0;
}
.p2{
  bottom: 0;
}
.accordion-mask{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0,0,0,.6);
  overflow: hidden;
}
.accordion-mask h1{
  color: #fff;
  font-size: 60px;
  margin-bottom: 12px;
}
.accordion-mask p{
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
}
.accordion ul li:hover p{
  height: 32px;
  line-height: 32px;
}
.accordion:hover .accordion-mask{
  display: none;
}
.accordion:hover p{
  opacity: 1;
}
.accordion-app{
  display: none;
}

/* 近期展会 */
.recent-exhibitions{
  overflow: hidden;
  padding-bottom: 80px;
}
.recent-exhibitions-info{
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
.recent-exhibitions-info a{
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100px;
  color: #fff;
  background-color: var(--secondary-color);
  border-radius: 20px;
  height: 32px;
  line-height: 32px;
  border: 1px solid var(--secondary-color);
}
.recent-exhibitions-info a:hover{
  text-decoration: none;
  color: #fff;
  background-color: var(--primary-color);
  transition: all .5s;
  border-color: var(--primary-color);
}
.recent-exhibitions-info a::after{
  background-image: url('../images/more1.png');
}
/* .recent-exhibitions-swiper{
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.recent-exhibitions-swiper .swiper-slide img{
  width: 100%;
} */
.recent-exhibitions-box{
  margin-top: 30px;
  height: 584px;
  overflow: hidden;
}
.recent-exhibitions-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}
.recent-exhibitions-list .slide-item{
  padding: 15px;
  overflow: hidden;
  width: 100%;
}
.recent-exhibitions-list .slide-item a{
  /* border: 1px solid #ccc; */
  display: block;
  background-color: #f8f8f8;
  /* box-shadow: 0 0 5px #efefef; */
  border-top: 4px solid var(--secondary-color);
  transition: all .5s;
}
.exh-logo{
  padding: 20px 20px 10px;
  width: 100%;
  height: 120px;
}
.exh-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.exh-name{
  padding: 10px 10px 5px;
  font-size: 16px;
  text-align: center;
  min-height: 63px;
}
.exh-address{
  margin: 10px 10px;
  font-size: 12px;
  text-align: center;
  color: var(--primary-color);
}
.exh-address::before{
  content: '';
  display: inline-block;
  margin-right: 4px;
  height: 16px;
  width: 16px;
  vertical-align: sub;
  background-image: url('../images/address.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.exh-time{
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 12px 10px;
  color: #fff;
  background-color: var(--secondary-color);
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-exhibitions-list .slide-item:hover a{
  box-shadow: 0px 0px 10px #ccc;
  text-decoration: none;
}


/* 新闻中心 */
.news{
  margin-bottom: 80px;
}
.news a:hover{
  text-decoration: none;
}
.hot-item{
  background-color: #fff;
  border: 1px solid #e7e7e7;
}

.hot-item a{
  display: block;
  padding: 16px;
}
.hot-item .img{
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  height: 133px;
}
.hot-item .hot-name{
  padding-top: 10px;
  font-size: 16px;
  font-weight: bold;
}
.hot-item .news-abstract{
  padding-top: 12px;
  color: #666;
  font-size: 14px;
}
.news-time{
  padding-top: 10px;
  color: #999;
  font-size: 14px;
  text-align: end;
}
.hot-item:hover{
  box-shadow: 0 0 10px #ccc;
  transition: all .5s;
}
.hot-item:hover img{
  transform: scale(1.3);
}

.news-list{
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
}
.news-item{
  padding: 20px 10px;
  border-top: 1px solid #f0f0f0;
  align-items: center;
}
.news-list .news-item:first-child{
  border-top: none;
}
.news-item dl{
  margin: 0;
  border-right: 1px solid #f0f0f0;
  text-align: center;
  /* transition: all .5s; */
}
.news-item dt{
  color: #666;
  font-size: 24px;
}
.news-item dd{
  margin-left: 0;
  color: #666;
  font-size: 14px;
}
.news-item-box h1{
  font-size: 16px;
  font-weight: inherit;
}
.news-item-box p{
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}
.news-item:hover .time{
  background-color: var(--primary-color);
}
.news-item:hover .time dt,
.news-item:hover .time dd{
  /* color: var(--secondary-color); */
  color: #fff;
}
.news-item:hover .news-item-box h1{
  /* font-size: 17px; */
  font-weight: bold;
}

/* 桌面端适配 */
@media (min-width: 1024px) and (max-width: 1334px){
  /* 介绍 */
  .profile-title .cn{
    font-size: 28px;
  }
  .company-profile p{
    margin-top: 20px;
  }
  .statistics{
    bottom: -20px;
    padding: 20px 0;
  }
  .statistics-item{
    margin: 0;
  }
}

/* 平板端适配 */
@media (min-width: 768px) and (max-width: 1023px){
  /* 介绍 */
  .company-profile{
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .company-profile .kele-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .company-profile .kele-grid > div:first-child{
    max-width: 50%;
    padding-right: 10px;
  }
  .company-profile p{
    margin-top: 30px;
  }
  .company-profile .img{
    width: 50%;
  }
  .statistics{
    margin: 40px auto 0;
    position: relative;
    bottom: auto;
    max-width: 100%;
    width: 100%;
  }

  /* 近期展会 */
  .recent-exhibitions{
    padding-bottom: 60px;
  }
  .recent-exhibitions-box{
    height: 438px;
  }
  .recent-exhibitions-list .slide-item{
    padding: 5px;
    
  }
  .exh-logo{
    padding: 10px;
    height: 74px;
  }
  .exh-name{
    font-size: 14px;
    min-height: 57px;
  }
  .exh-address{
    text-align: left;
  }
  .exh-time{
    font-size: 12px;
    
  }

  /* 新闻资讯 */
  .news > .kele-grid{
    grid-template-columns: 1fr;
  }
}

/* 移动端适配 */
@media (min-width: 320px) and (max-width: 767px){
  .container{
    margin: 0;
    border: 6px solid #eeeff2;
  }
  /* .banner-pc{
    display: none;
  }
  .banner-app{
    display: block;
  } */
  .banner{
    height: auto;
  }
  .banner video{
    height: auto;
    vertical-align: middle;
  }
  .banner .swiper-button-prev, .banner .swiper-button-next{
    width: 30px;
    height: 40px;
  }

  .banner .swiper-button-prev{
    left: 0;
  }
  .banner .swiper-button-next{
    right: 0;
  }
  .banner .swiper-pagination{
    bottom: 20px;
  }
  .down{
    display: none;
  }

  /* 介绍 */
  .company-profile{
    padding-top: 30px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .profile-title .cn{
    text-align: center;
    font-size: 24px;
  }
  .company-profile p{
    margin-top: 15px;
  }
  .company-profile .img{
    /* display: none; */
  }
  .statistics{
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: none;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
  }
  .statistics-item{
    margin: 0;
    padding: 10px;
    width: 50%;
    border: none;
  }
  .statistics .statistics-item:nth-child(1){
    border-bottom: 1px solid #ececec;
    border-right: 1px solid #ececec;
  }
  .statistics .statistics-item:nth-child(2){
    border-bottom: 1px solid #ececec;
  }
  .statistics .statistics-item:nth-child(3){
    border-right: 1px solid #ececec;
  }
  .statistics-item dt{
    font-size: 24px;
  }
  .statistics-item dd{
    font-size: 12px;
  }

  /* 手风琴 */
  .accordion{
    display: none;
  }
  .accordion-app{
    display: block;
    padding-bottom: 10px;
  }

  /* 近期展会 */
  .recent-exhibitions-info{
    width: 100%;
  }
  .recent-exhibitions{
    padding-bottom: 30px;
  }
  .recent-exhibitions-box{
    /* display: none; */
    /* height: auto; */
    height: 442px;
  }
  .recent-exhibitions-list{
    grid-template-columns: 1fr 1fr;
    /* gap: 10px; */
  }
  .recent-exhibitions-list .slide-item{
    padding: 5px;
  }
  .exh-logo{
    padding: 10px 10px 5px;
    height: 70px;
  }
  .exh-name{
    font-size: 14px;
  }
  .exh-time{
    font-size: 12px;
  }


  /* 新闻资讯 */
  .news{
    padding-bottom: 10px;
    /* margin-bottom: 20px; */
    background-color: #fff;
  }
  .news-list{
    padding: 0px;
    background-color: transparent;
    border: none;
  }
  .news-item{
    padding: 10px 0px;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
    border-color: #ccc;
  }
  .news-item dl{
    border-color: #ccc;
  }
  .news-item dt{
    font-size: 18px;
  }
  .news-item dd{
    font-size: 12px;
  }
  .news-item-box h1{
    font-size: 14px;
  }
  .news-item-box p{
    margin-top: 4px;
    font-size: 12px;
  }
}