@import url('./public.css');
/* body{
  background-color: var(--bg-color);
} */
.level img{
  width: 100%;
  vertical-align: middle;
}
.height80{
  height: 80px;
}
.title{
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.title h2{
  position: relative;
  padding-left: 25px;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.title h2::before,
.title h2::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-left: 10px solid #cfd0d0;
  border-top: 7px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 7px solid transparent;
  animation: borderAnimation 2s linear infinite;
  animation-delay: 1s;
}
.title h2::after{
  left: 5px;
  border-left-width: 14px;
  border-top-width: 8px;
  border-right-width: 10px;
  border-bottom-width: 8px;
  border-left-color: var(--primary-color);
  animation: borderAnimation 2s linear infinite;
}
@keyframes borderAnimation {
  0% {
    border-left-color: var(--primary-color);
  }
  33.3% {
    border-left-color: #cfd0d0;
  }
  66.6% {
    border-left-color: var(--secondary-color);
  }
  100% {
    border-left-color: var(--primary-color);
  }
}
p{
  margin-bottom: 10px;
}
main{
  background: url('/public/images/mainbg.jpg') no-repeat center center/cover;
  overflow: hidden;
}

/* *{
  letter-spacing: 2px;
} */
/* 展会介绍 start */
.about-p{
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--bg-colorfff);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.about-content {
  flex: 1;
  min-width: 300px;
}
.about-image {
  border-radius: 8px;
  overflow: hidden;
  max-width: 770px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}
.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-item {
  margin-bottom: 1rem;
}
dt {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
dd {
  margin: 0;
  /* padding-left: 1.5rem; */
  color: #34495e;
  line-height: 1.6;
}
.organizer-list {
  margin: 0;
}
.organizer-list li {
  margin-bottom: 0.5rem;
}
/* 展会介绍 end */
/* 展会亮点 start */
.highlight-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
}
.highlight-item{
  position: relative;
  border-radius: 8px;
  height: 220px;
  cursor: pointer;
  perspective: 1000px;
}
.highlight-content{
  position: relative;
  height: 100%;
  background-color: var(--primary-color);
  backface-visibility: hidden;
  transform:rotateY(180deg);
  transition: transform 0.5s ease-in-out 0s;
}
.highlight-content p{
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  border-radius: 8px;
  padding: 1.5rem 1rem 1rem;
  font-size: 14px;
  background-color: var(--bg-colorfff);
  box-sizing: border-box;
}
.highlight-title{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: var(--bg-colorfff);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background-color: var(--primary-color);
  backface-visibility: hidden;
  transition: transform 0.5s ease-in-out 0s;
  background-image: linear-gradient(to bottom, var(--primary-color), #012154);
}
.highlight-title div{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-image: url(../images/highlight-item-bg.png);
}
.highlight-item:hover .highlight-content{
  transform:rotateY(360deg);
}
.highlight-item:hover .highlight-title{
  transform:rotateY(180deg);
}
/* 展会亮点 end */
/* 下载中心 start */
.download-header{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0;
  background-color: var(--primary-color);
}
.download-header span{
  font-size: 20px;
  color: var(--bg-colorfff);
}
.download-box{
  /* padding-top: 2rem; */
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.download-list{
  position: relative;
  width: 100%;
  max-width: 290px;
}
.download-list::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 10px);
  background-color: var(--border-color);
}
.download-list::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background-color: var(--primary-color);
  animation: Animation 3s linear infinite;
}
@keyframes Animation {
  0% {
    height: 0;
  }
  20% {
    height: 0;
  }
  100% {
    height: calc(100% - 10px);
  }
}
.download-title{
  display: none;
}
.download-item{
  margin-top: 2rem;
  position: relative;
  line-height: 1;
  z-index: 1;
}
.download-item a{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 60px;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image: url('/public/images/icon-download.png');
  background-size: 30px 30px;
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-color: #fff;
  transition: transform 0.3s ease-in-out 0s;
}
.download-item a::before{
  position: absolute;
  left: 50px;
  top: 10px;
  content: '';
  display: inline-block;
  width: 2px;
  height: calc(100% - 20px);
  background-color: #ccc;
  vertical-align: top;
}
.download-item a::after{
  content: '';
  position: absolute;
  top: 10px;
  left: 49px;
  display: inline-block;
  width: 4px;
  height: 14px;
  background-color: var(--primary-color);
  transition: top 0.3s ease-in-out 0s;
}
.download-item a:hover{
  transform: translateY(-5px);
  background-image: url('/public/images/icon-download-hover.png');
}
.download-item a:hover::after{
  top: calc(100% - 24px);
  /* background-image: url('/public/images/icon-download-hover.png'); */
}
/* 展位平面图 start */
.plan-img{
  width: 100%;
}
.plan-img img{
  width: 100%;
}
/* 展位平面图 end */
/* 展区分布 start */
.positionmap{
  margin: 2rem 0;
  text-align: center;
}
.positionmap img{
  width: 100%;
  vertical-align: middle;
}
/* 价格表格样式 */
.price-table {
  width: 100%;
  /* max-width: 800px; */
  border-collapse: collapse;
  margin: 30px auto;
  text-align: center;
}
.price-table th, .price-table td {
  padding: 15px 10px;
  border: 1px solid var(--border-color);
}
.price-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: bold;
}
.price-table tr{
  background-color: var(--bg-colorfff);
}
.price-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.price-table tr:hover {
  background-color: #f0f7ff;
}
.price-table th a{
  font-size: 18px;
  color: var(--bg-colorfff);
  line-height: 32px;
  font-weight: initial;
  letter-spacing: 2px;
}
.price-table th a:hover{
  font-size: 20px;
  font-weight: bold;
}
/* 展区分布 end */

/* 展区规划 start */
.plan-container{
  padding: 2rem;
  /* background-color: var(--primary-color); */
  border-radius: 8px;
  background-color: var(--bg-colorfff);
  box-shadow: var(--box-shadow);
}
.plan-list{
  /* max-width: 1000px; */
  /* margin: 0 auto; */
  width: 100%;
}
.plan-item{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 300px auto;
  cursor: pointer;
  background-image: linear-gradient(to right, #fff 30%, #b2b7ce);
}
.plan-list .plan-item:first-child{
  margin-top: 0;
}
.plan-item:nth-child(2n){
  grid-template-columns: auto 300px;
  background-image: linear-gradient(to left, #fff 30%, #b2b7ce);
}
.plan-item div{
  overflow: hidden;
}
.plan-item img{
  width: 100%;
  vertical-align: middle;
  transition: transform 0.5s ease-in-out 0s;
}
.plan-item:hover img{
  transform: scale(1.1);
}
.plan-content{
  position: relative;
  height: 100%;
  padding: 3rem 2rem 3rem;
}
.plan-content::before{
  content: '1';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  line-height: 1;
  font-size: 220px;
  font-weight: bold;
  font-family: sans-serif;
  color: #2c3e50;
  /* 创建渐变背景 */
  background: linear-gradient(to bottom, #fff, #cdcfdf);
  /* 关键属性：将背景裁剪到文字 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 关键属性：使文字颜色透明，显示背景渐变 */
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* text-shadow: 0 0 10px var(--primary-color); */
  /* text-shadow: 2px 2px 4px rgba(0 , 0, 0, 0.3); */
}
.plan-item:nth-child(2n) .plan-content::before{
  right: auto;
  left: 10%;
}
.plan-item:nth-child(2) .plan-content::before{
  content: '2';
}
.plan-item:nth-child(3) .plan-content::before{
  content: '3';
}
.plan-item:nth-child(4) .plan-content::before{
  content: '4';
}
.plan-content h3{
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}
.plan-content p{
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #666;
}
/* 参展细则 start */
.exh-times{
  margin-bottom: 5rem;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.exh-times-img{
  overflow: hidden;
}
.exh-times-img img{ 
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
  transition: transform 0.5s ease-in-out 0s;
}
.exh-times:hover img{
  transform: scale(1.1);
}
.exh-times-content{
  padding: 3rem 2rem;
}
.exh-times-content h3{
  padding-bottom: 10px;
  font-size: 24px;
  color: var(--bg-colorfff);
  text-align: center;
}
.exh-times-table{
  display: table;
  margin: 0 auto;
}
.exh-times-content p{
  display: table-row;
  color: var(--bg-colorfff);
  width: max-content;
  margin: 0 auto;
  text-indent: 0;
  letter-spacing: 2px;
}
.exh-times-content p span{
  padding: 2px 0px;
  display: table-cell;
}
.exh-times-content p span:first-child{
  text-align: right;
}
.exh-times-content p span:nth-child(2){
  text-align: left;
}
/* 参展细则 end */
/* 搭建服务商 start */
.builder{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.builder-item{
  padding: 2rem;
  background-color: var(--bg-colorfff);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
.builder-item h3{
  margin-bottom: .5em;
  font-weight: bold;
  color: var(--primary-color);
}

.builder-item p{
  margin-bottom: 10px;
  text-indent: 0;
  font-size: 14px;
  line-height: 1.5;
}

.builder-item p.contact-item{
  display: flex;
  flex-wrap: wrap;
}
.builder-item p.contact-item span{
  margin-left: 1em;
}
/* 搭建服务商 end */
/* 展商名录 start */
.exhibitor-list{
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--border-radius);
}
.exhibitor-item a{
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: 150px auto;
  gap: 2rem;
  background-color: var(--bg-colorfff);
  border-radius: 8px;
  box-shadow: var(--box-shadow);

}
.exhibitor-img{
  width: 100%;
  max-height: 130px;
}
.exhibitor-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.exhibitor-content{
  padding-left: 2rem;
  font-size: 16px;
  border-left: 2px solid #e9e7e7;
  overflow: hidden;
}
.exhibitor-content h3{
  font-size: 20px;
  margin-bottom: 10px;
}
.exhibitor-content p.exhibitor-desc{
  margin-bottom: 0;
  width: 100%;
  text-indent: 0;
  font-size: 14px;
  line-height: 1.6;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.exhibitor-content p.exhibitor-link{
  text-indent: 0;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--primary-color);
}
/* 展商名录 end */
/* 参观指南 start */
.guide{
  margin-bottom: 3rem;
  padding: 2rem 2rem;
  background-color: var(--bg-colorfff);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.guide h4{
  font-size: 18px;
}
.guide h4 a{
  display: inline-block;
  margin-left: 5px;
  padding: 0px 8px;
  background-color: var(--primary-color);
  color: var(--bg-colorfff);
  border-radius: 4px;
}
.guide h4 a:hover{
  background-color: var(--secondary-color);
}
.guide-line{
  margin: 1rem 0;
  height: 0px;
  border-top: 2px dashed var(--primary-color);
}
.guide p{
  text-indent: 0;
  font-size: 17px;
}
.guide p strong{
  color: var(--primary-color);
}
.visit{
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bg-colorfff);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
}
.visit .visit-content{
  padding: 2rem;
}
.visit-content h5{
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--primary-color);
}
.visit-content h6{
  margin-bottom: 5px;
  padding-left: 15px;
  font-size: 15px;
}
.visit-content p{
  margin-bottom: 5px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.6;
  text-indent: 0;
}
.visit-content p span{
  color: var(--primary-color);
}
.visit .visit-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 参观指南 end */
/* 交通地图 start */
.transport{
  position: relative;
  padding: 2rem;
  background-color: #fff;
}
.transport h5{
  margin-bottom: 1rem;
  font-size: 18px;
  color: var(--primary-color);
}
.transport h6{
  margin-bottom: 5px;
  padding-left: 15px;
  font-size: 16px;
}
.subway-link{
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 14px;
  vertical-align: middle;
}
.subway-link:hover{
  color: var(--secondary-color);
}
.transport p{
  margin-bottom: 5px;
  text-indent: 0;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.6;
}

.bus-subway{
  position: absolute;
  right: 2rem;
  top: 4rem;
  padding: 10px;
  /* background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.bus-subway div:first-child{
  display: flex;
  /* gap: 10px; */
}
.bus-subway-img{
  /* margin-top: 10px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.bus-subway-img img{
  width: 500px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.5s ease-in-out 0s;
}
.bus-subway-img img:hover{
  transform: scale(1.1);

}

/* 交通地图 end */
/* 新闻列表 start */
.news-list{
  margin: 0 auto;
  padding: 2rem;
  max-width: 1200px;
  background-color: var(--bg-colorfff);
}
.news-item{
  margin-bottom: 1rem;
}
.news-item a{
  display: flex;
  flex-wrap: wrap;
  color: var(--primary-color);
}
.news-item .news-left{
  margin: 30px 20px auto 10px;
  width: 3px;
  height: 100px;
  background-color: #eaeaea;
}
.news-item .news-left div{
  height: 30px;
  width: 5px;
  margin-left: -1px;
  background-color: var(--primary-color);
}
.news-img img{
  width: 240px;
  height: 150px;
  object-fit: cover;
  vertical-align: middle;
}
.news-content{
  flex: 1;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
  overflow: hidden;
}
.news-content h3{
  margin-bottom: 10px;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
}
.news-content h4{
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: inherit;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out 0s;
}
.news-content p{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out 0s;
  text-indent: 0;
}
.news-content .time{
  margin-top: 10px;
  text-align: end;
}
.news-item a:hover .news-left div{
  background-color: var(--secondary-color);
}
.news-item a:hover h3{
  color: var(--secondary-color);
}
.news-item a:hover h4{
  color: var(--secondary-color);
}
.news-item a:hover p{
  color: var(--secondary-color);
}
.news-content-events{
  padding-top: 10px;
}
.kele-pagination{
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 60px auto 0;
  padding-left: 0;
  color: var(--primary-color);
}
.kele-pagination li{
  border: 1px solid var(--primary-color);
  border-left: none;
  vertical-align: bottom;
}
.kele-pagination li span,
.kele-pagination li a{
  display: inline-block;
  padding: 4px 12px;
  color: var(--primary-color);
  font-weight: lighter;
}
.kele-pagination li:nth-child(1){
  border-left: 1px solid var(--primary-color);
}
/* .kele-pagination li:nth-last-child(3){
  margin-right: 10px;
} */
.kele-pagination strong{
  padding: 4px 12px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: lighter;
  vertical-align: bottom;
  border: 1px solid var(--primary-color);
}
.kele-pagination li.active{
  background-color: var(--primary-color);
}
.kele-pagination li.active a{
  color: #fff;
}
/* 新闻列表 end */
/* 新闻详情 start */
.news-detail.container{
  margin-top: 4rem;
  margin-bottom: 8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
  background-color: #fff;
}
.news-detail h1{
  /* margin-bottom: 2rem; */
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.news-detail-info{
  margin-bottom: 1rem;
  color: #666;
  text-align: center;
}
.news-line{
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}
.news-detail-content{
  margin-top: 2rem;
}
.news-detail-content div{
  margin-top: 1rem;
  text-align: center;
}
.news-detail-content div img{
  display: inline;
  max-width: 700px;
  /* width: 100% !important; */
  height: auto !important;
}
.news-detail-content p img{
  margin-left: -2rem;
  max-width: 700px;
  height: auto !important;
}
.news-detail-content figcaption{
  margin-bottom: 1rem;
  text-align: center;
  font-size: 16px;
  color: #666;
}
.news-detail-content figcaption a{
  color: #666;
}
.news-detail-content figcaption a:hover{
  color: var(--primary-color);
}
.news-detail p{
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.8;
}
/* 声明 */
.kele-statement{
  padding: 10px 10px 20px;
}
.kele-statement h6{
  font-size: 12px;
  font-weight: inherit;
  font-style: italic;
}
.kele-statement p{
  margin: 0;
  font-size: 12px;
  text-indent: 0 !important;
  font-style: italic;
}
.preinfo{
  margin-top: 5rem;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.preinfo a{
  display: grid;
  grid-template-columns: 5rem auto;
  padding: 10px 0px;
  color: #666;
  background-color: #f8f8f8;
  transition: all 0.3s ease-in-out 0s;
  overflow: hidden;
  border-radius: var(--border-radius);
  /* box-shadow: var(--box-shadow); */
}
.preinfo span,
.preinfo small{
  transition: all 0.3s ease-in-out 0s;
}
.preinfo a span:first-child{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.preinfo a > span:first-child::after{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
} 
.preinfo a > span:last-child{
  padding-left: 1rem;
  padding-right: 1rem;
  display: inline-flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
  width: 100%;
}
.preinfo a span:last-child span{
  display: block;
  width: 100%;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.preinfo a span:last-child small{
  display: block;
  width: 100%;
  font-size: 12px;
  color: #999;
}
.preinfo a:hover{
  /* color: var(--primary-color); */
  color: #fff;
  background-color: var(--primary-color);
}
.preinfo a:hover span:last-child span{
  color: #fff;
}
.preinfo a:hover span:last-child small{
  color: var(--bg-color);
}
/* 新闻详情 end */
/* 媒体专区 start */
.medium-box{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.medium-item{
  padding: 5px 11px 5px 12px;
  width: 100%;
  box-shadow: var(--box-shadow);
  transition: all 0.4s ease;
  filter: grayscale(0.3);
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #ffffff;
}
.medium-item:hover {
  transform: scale(1.05) rotate(1deg);
  filter: grayscale(0);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
/* 媒体专区 end */
/* 联系我们 start */
.contact-box{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}
.contact-icon {
  overflow: hidden;
}
.contact-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: all 0.3s ease-in-out 0s;
}
.contact-box:hover .contact-icon img{
  transform: scale(1.1);
}
.contact-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 2rem;
}
.contact-box h3{
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: bold;
}
.contact-box p{
  margin-bottom: 0.5rem;
  font-size: 16px;
  line-height: 1.8;
  text-indent: 0;
}
.contact-box:after{
  content: 'icse';
  position: absolute;
  right: 2rem;
  bottom: 0;
  font-size: 80px;
  font-family:monospace;
  font-style: oblique;
  color: rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
}
/* 联系我们 end */

/* 留言板 start */
/* .guestbook-form{
  margin: 30px auto;
  padding: 3rem;
  max-width: 900px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: var(--bg-colorfff);
  position: relative;
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.form-header h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.guestbook-form p{
  margin-bottom: 0;
  text-indent: 0;
}

.form-header p {
  color: #666;
  font-size: 14px;
}

.form-item{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.required {
  color: #ff4d4f;
  margin-right: 3px;
}

.eyou_form_title {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 300px;
  text-align: end;
}
.eyou_form_attr{
  flex: 1;
}
.eyou_form_text, .eyou_form_textarea {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.eyou_form_text:focus, .eyou_form_textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.15);
  outline: none;
  transform: translateY(-1px);
}

#eyou_form_div_8 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 8px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 6px;
}

.eyou_form_radio {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.eyou_form_btn {
  width: 200px;
  padding: 10px;
  background: linear-gradient(135deg, var(--primary-color), #0a66c2);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.2);
}
.form-footer p{
  margin-bottom: 0;
}


.eyou_form_btn:hover {
  background: linear-gradient(135deg, #0a66c2, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 144, 255, 0.25);
}

.eyou_form_btn:active {
  transform: translateY(0);
}

.form-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  font-size: 12px;
  color: #666;
} */
/* 留言板 end */
/* 留言板 start */
.guestbook-form{
  margin: 0 auto;
  padding: 3rem; /* 增加内边距 */
  max-width: 800px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: var(--bg-colorfff);
}

/* 添加表单标题样式 */
.form-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.form-header h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.guestbook-form p{
  margin-bottom: 0;
  text-indent: 0;
}

.form-header p {
  color: #666;
  font-size: 14px;
  text-align: center;
}

/* 修改表单项目为flex布局 - 核心修改 */
.form-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* 调整标题样式 - 核心修改 */
.eyou_form_title {
  width: 140px; /* 固定标题宽度 */
  flex-shrink: 0; /* 防止标题被压缩 */
  text-align: right; /* 右对齐标题 */
  padding-right: 15px;
  margin-bottom: 0; /* 移除原有底部间距 */
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.required {
  color: #ff4d4f;
  margin-right: 3px;
}

/* 输入区域容器 - 新增样式 */
.form-input-container {
  flex-grow: 1; /* 占据剩余空间 */
}

.eyou_form_attr {
  margin-bottom: 0; /* 移除原有底部间距 */
}

/* 输入框样式优化 */
.eyou_form_text, .eyou_form_textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 单选按钮组调整 */
#eyou_form_div_8 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 0; /* 移除顶部间距 */
}

/* 提交按钮样式优化 */
.eyou_form_btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.eyou_form_btn:hover {
  background-color: #0066cc;
}

/* 表单底部样式 */
.form-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  color: #666;
}
.form-footer p{
  font-size: 12px;
}
@media (min-width: 1200px) {
  .container{
    padding: 4rem 10px 8rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px){
  /* 展会亮点 start */
  .highlight-title{
    font-size: 18px;
  }
  .highlight-content p{
    padding: 1rem;
    line-height: 26px;
  }
  /* 展会亮点 end */
  /* 搭建服务商 start */
  .builder-item{
    padding: 1rem;
  }
  .builder-item p.contact-item span{
    margin-left: .5em;
  }
  /* 搭建服务商 end */

  /* 交通地图 start */
  .bus-subway-img img{
    width: 350px;
  }
  /* 交通地图 end */

}

@media (min-width: 768px) and (max-width: 991px) {
  /* 展会亮点 start */
  .highlight-title{
    font-size: 14px;
  }
  .highlight-content p{
    padding: 1rem;
    font-size: 12px;
    line-height: 24px;
  }
  /* 展会亮点 end */
  /* 展区规划 start */
  .plan-content{
    padding: 2rem;
  }
  .plan-content h3{
    font-size: 20px;
    
  }
  .plan-content p{
    font-size: 14px;
  }
  /* 展区规划 end */
  /* 下载中心 start */
  .download-list{
    max-width: 230px;
  }
  /* 下载中心 end */
  /* 搭建服务商 satrt */
  .builder{
    grid-template-columns: 1fr;
  }
  /* 搭建服务商 end */
  /* 参观指南 start */
  .visit .visit-content{
    padding: 1rem;
  }
  /* 参观指南 end */
  /* 展商名录 start */
  .exhibitor-item a{
    padding: 2rem;
    gap: 1rem;
  }
  .exhibitor-content{
    padding-left: 1.5rem;
  }
  /* 展商名录 end */

  /* 交通地图 start */
  .bus-subway{
    display: none;
  }
  /* 交通地图 end */
  /* 合作媒体 start */
  .medium-box{
    grid-template-columns: repeat(4, 1fr);
  }
  /* 合作媒体 end */
  /* 联系我们 start */
  .contact-info{
    padding: 1rem;
  }
  .contact-box h3{
    margin-bottom: .5rem;
    font-size: 17px;
  }
  .contact-box p{
    margin-bottom: 0;
    font-size: 14px;
  }

}



/* 响应式调整 */
@media (max-width: 767px) {
  .title{
    padding-top: 0;
  }
  .title h2{
    margin-bottom: 20px;
    font-size: 24px;
  }
  /* 展会介绍 start */
  .about {
    padding: 1.5rem;
  }
  .about-image {
    flex: 0 0 100%;
  }
  /* 展会介绍 end */

  /* 展会亮点 start */
  .highlight-list{
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .highlight-title{
    font-size: 15px;
  }
  .highlight-item:active .highlight-content{
    transform: rotateY(360deg);
  }
  .highlight-item:active .highlight-title{
    transform: rotateY(180deg);
  }
  .highlight-content p{
    padding: 10px;
    font-size: 12px;
  }
  /* 展会亮点 end */

  /* 展区规划 start */
  .positionmap{
    margin-top: 0;
  }
  .plan-container{
    padding: 10px;
  }
  .plan-list .plan-item{
    grid-template-columns: 1fr;
  }
  .plan-item:nth-child(2n) .plan-content{
    grid-row: 2;
  }
  .plan-item:nth-child(2n) div{
    grid-row: 1;
  }
  .plan-content{
    padding: 20px;
  }
  .plan-content h3{
    font-size: 18px;
  }
  .plan-content p{
    font-size: 14px;
    margin-bottom: 0;
  }
  /* 展区规划 end */
  /* 下载中心 start */
  .download-header{
    display: none;
  }
  .download-box{
    flex-direction: column;
  }
  .download-list{
    max-width: 100%;
  }
  .download-list::before,
  .download-list::after{
    display: none;
  }
  .download-title{
    display: block;
    margin-top: 30px;
    color: #fff;
    background-color: var(--primary-color);
    line-height: 50px;
    font-size: 16px;
    text-align: center;
  }
  .download-box .download-list:first-child .download-title{
    margin-top: 0;
  }
  .download-item{
    margin-top: 1rem;
  }
  /* 下载中心 end */
  /* 参展细则 start */
  .exh-times{
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
  .exh-times-content{
    padding: 2rem;
  }
  .price-table{
    margin: 0 auto;
  }
  /* 参展细则 end */
  /* 搭建服务商 satrt */
  .builder{
    grid-template-columns: 1fr;
  }
  .builder-item{
    padding: 1rem;
  }
  .builder-item p{
    margin-bottom: 5px;
  }
  /* 搭建服务商 end */
  /* 展商名录 start */
  .exhibitor-list{
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .exhibitor-item a{
    padding: 10px;
    gap: 10px;
    grid-template-columns: 90px auto;
  }
  .exhibitor-img{
    max-height: 100px;
  }
  .exhibitor-content{
    padding-left: 10px;
    border-left-width: 1px;
  }
  .exhibitor-content h3{
    margin-bottom: 5px;
    font-size: 17px;
  }
  .exhibitor-content p.exhibitor-desc{
    font-size: 12px;
  }
  .exhibitor-content p.exhibitor-link{
    margin-top: 5px;
    font-size: 12px;
    text-align: end;
  }
  /* 展商名录 end */
  /* 参观指南 start */
  .guide{
    margin-bottom: 2rem;
    padding: 1rem;
  }
  .guide h4{
    font-size: 17px;
  }
  .guide p{
    font-size: 14px;
    line-height: 1.5;
  }
  .visit{
    grid-template-columns: 1fr;
  }
  .visit .visit-content{
    padding: 1rem;
    grid-row: 2;
  }
  .visit .visit-img{
    grid-row: 1;
  }
  /* 参观指南 end */
  /* 交通地图 start */
  .bus-subway{
    display: none;
  }
  .transport{
    padding: 1rem;
  }
  /* 交通地图 end */
  /* 新闻列表 start */
  .news-list{
    padding: 10px;
  }
  .news-item .news-left{
    display: none;
  }
  .news-img img{
    width: 80px;
    height: 60px;
  }
  .news-content{
    padding: 0 0 0 10px;
  }
  .news-content h3{
    margin-bottom: 0;
    font-size: 15px;
  }
  .news-content p{
    font-size: 12px;
  }
  .news-content .time{
    margin-top: 0;
    display: none;
  }

  /* 新闻列表 end */
  /* 分页 start */
  .kele-pagination{
    margin-top: 30px;
    font-size: 12px;
  }
  .kele-pagination strong{
    padding: 2px 4px;
    margin-left: 5px;
    margin-right: 5px;
    line-height: 1.5;
  }
  /* 分页 end */
  /* 新闻详情 start */
  .news-detail.container{
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding: 20px 10px;
  }
  .news-detail h1{
    font-size: 17px;
    line-height: 1.5;
  }
  .news-detail-info{
    margin-bottom: .5rem;
    font-size: 12px;
  }
  .news-detail-content{
    margin-top: 1rem;
  }
  .news-detail p{
    margin-top: 1rem;
    font-size: 14px;
    line-height: 1.6;
  }
  .news-detail-content div img{
    width: 100% !important;
  }
  .kele-statement{
    padding: 0;
  }
  .preinfo{
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  .preinfo a{
    padding: 10px 0;
    grid-template-columns: 4rem auto;
  }
  /* 新闻详情 end */
  /* 同期活动 start */
  .news-content h4{
    font-size: 12px;
    line-height: 1.5;
  }
  .news-content-events p{
    display: none;
  }
  /* 同期活动 end */
  /* 合作媒体 start */
  .medium-box{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  /* 合作媒体 end */
  /* 联系我们 start */
  .contact-box{
    grid-template-columns: 1fr;
  }
  .contact-info{
    padding: 1rem;
  }
  .contact-box h3{
    margin-bottom: .5rem;
    font-size: 17px;
  }
  .contact-box p{
    margin-bottom: 0;
    font-size: 14px;

  }

  /* 联系我们 end */




  /* 留言板 start */
  .guestbook-form {
    padding: 20px;
  }
  .form-item{
    flex-direction: column;
    align-items: flex-start;
  }
  .form-item .eyou_form_title{
    width: 100%;
    text-align: left;
    padding-right: 0;

  }
  .form-input-container{
    width: 100%;
  }
  .form-item .eyou_form_attr{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

 
  /* 留言板 end */
}