.header{
  background: url(../images/list-banner.png) no-repeat center top;
  width: 100%;
  background-size: 1920px 443px;
  height: 443px;
}
.header.index-header{
  background: url(../images/banner.png) no-repeat;
  width: 100%;
  min-height: 100vh;
  background-position: bottom center ;
  background-size: cover ;
}
.header-top-box{
  width: 100%;
  background: linear-gradient(180.00deg, rgb(59, 130, 246),rgba(6, 182, 212, 0) 100%);
  line-height: 98px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  transition: all 0.3s;
}
.header-top-box.scroll-header{
  background: #fff;
}
.header-top{
  width: 1860px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
.header-left{
  justify-self: flex-start;
}
.nav{
  margin: 0 auto;
  /* margin-left: 0px; */
}
.header-right, .search{
  margin-left: auto;
}
.header-right{
  display: flex;
  align-items: center;
}
.header-top-left{
  display: flex;
  justify-content: space-between;
}
.header-left img{
  height: 44px;
  width: auto;
  margin-right: 24px;
}
.nav{
  width: 678px;
  display: flex;
  justify-content: space-between;
}
.nav li{
  position: relative;
}
.nav li>a{
  color: rgb(255, 255, 255);
  font-family: Adobe Devanagari;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
.nav li a::after{
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background: rgb(247, 181, 1);
  position: absolute;
  left: 0;
  bottom:-5px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.nav li:hover a::after{
  transform: scaleX(1);
}
.nav li.act a::after{
  content: "";
  transform: scaleX(1);
}
.scroll-header .nav li a{
  color: rgb(30, 41, 59);
}
.search{
  /* 搜索 */
  width: 200px;
  height: 40px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
}
.search input[type=text]{
  width: 70%;
  height: 40px;
  display: block;
  padding:0 10px;
  background: none;
  color: #fff;
}
.search input[type=text]::placeholder{
  color: #fff;
}
.scroll-header .search input[type=text]::placeholder{
  color: rgb(30, 41, 59);;
}
.search  input[type="submit"]{
  height: 40px;
  width: 40px;
  background: url(../images/path.png) no-repeat center center;
}
.scroll-header .search{
  background: rgb(242, 242, 242);
}
.scroll-header .search input[type="submit"]{
  background: url(../images/path-block.png) no-repeat center center;
}
.header-right,.header-right a{
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.scroll-header .header-right,.scroll-header .header-right a{
  color: rgb(30, 41, 59);
} 
.header-right-en{
  display: none;
}
.index-header .adicon { 
  width:33px; 
  height:49px; 
  position:absolute; 
  left:50%; 
  bottom:40px;
  transform: translate(-50%, 0%); 
  background:url(../images/icon_mouse.png) no-repeat; 
  background-size:100% 100%; 
  z-index:10; 
  cursor:pointer;
  animation: ani-svg 0.85s linear 0s alternate infinite;
  -webkit-animation: ani-svg 0.85s linear 0s alternate infinite;
  margin-left:-12px;
}
@keyframes ani-svg{
  0%{
    opacity: 0.4;
    transform: translateY(-20px);
  }
  15%{
    opacity: 0.65;
    transform: translateY(-15px);
  }
    25%{
      opacity: 0.8;
    transform: translateY(-10px);
  }
    50%{
      opacity: 1;
    transform: translateY(0px);
  }
  65%{
    opacity: 0.8;
    transform: translateY(5px);
  }
  75%{
    opacity: 0.65;
    transform: translateY(10px);
  }
  100%{
    opacity: 0.4;
    transform: translateY(15px);
  }
}
@-webkit-keyframes ani-svg {
  0% {
    opacity: 0.4;
    -webkit-transform: translateY(-20px);
  }
  15%{
    opacity: 0.65;
    -webkit-transform: translateY(-15px);
  }
    25%{
      opacity: 0.8;
    -webkit-transform: translateY(-10px);
  }
    50%{
      opacity: 1;
    -webkit-transform: translateY(0px);
  }
  65%{
    opacity: 0.8;
    -webkit-transform: translateY(5px);
  }
  75%{
    opacity: 0.65;
    -webkit-transform: translateY(10px);
  }
  100%{
    opacity: 0.4;
    -webkit-transform: translateY(15px);
  }
}
@-moz-keyframes ani-svg{
  0%{
    opacity: 0.4;
    -moz-transform: translateY(-20px);
  }
  15%{
    opacity: 0.65;
    -moz-transform: translateY(-15px);
  }
    25%{
      opacity: 0.8;
    -moz-transform: translateY(-10px);
  }
    50%{
      opacity: 1;
    -moz-transform: translateY(0px);
  }
  65%{
    opacity: 0.8;
    -moz-transform: translateY(5px);
  }
  75%{
    opacity: 0.65;
    -moz-transform: translateY(10px);
  }
  100%{
    opacity: 0.4;
    -moz-transform: translateY(15px);
  }
}

/* 会议页面样式 */
.conference {
  padding-top: 60px;
  background-color: #fff;
  position: relative;
}

.conference::before {
  content: "";
  position: absolute;
  top: -149px;
  left: 0%;
  transform: translateX(0%);
  width: 100%;
  height: 0;
  border-left: 3000px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 150px solid #fff;
}

/* 标题样式 */
.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  color: #333;
  text-align: center;
  margin-bottom: 4px;
  position:sticky;
  z-index: 1;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: rgb(101, 117, 140);
  position:sticky;
  z-index: 1;
}

.divider {
  width: 80px;
  height: 4px;
  margin: 24px auto 60px;
  border-radius: 4px;
  background: rgb(249, 115, 22);
}

/* 关于大会部分 */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 180px;
}
.about-text {
  width: 620px;
}
.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}
.about-text h3 font{
  background: linear-gradient(90.00deg, rgb(59, 130, 246),rgb(6, 182, 212));
-webkit-background-clip:
text;
-webkit-text-fill-color:
transparent;
background-clip:
text;
}
.about-text p {
  font-size: 20px;
  font-weight: 290;
  line-height: 36px;
  color: rgb(30, 41, 59);
  margin-top: 40px;
}

.more-btn {
  display: block;
  width: 168px;
  line-height: 48px;
  color: #fff;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  background: rgb(59, 130, 246);
  text-align: center;
  margin-top: 56px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.more-btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.about-image {
  width: 640px;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}
/* 大会议程样式 */
.schedule{
  /* height: 1000px; */
  position: relative;
  /* background:url(../images/dhbj.png) no-repeat top center; */
  background: rgb(235,242 ,254,0.5);;
  /* background: rgba(59, 130, 246, 0.1); */
  background-size: 100% 100%;
  /* margin-top: 300px; */
  padding-bottom: 60px;
}
.schedule::before {
  content: "";
  position: absolute;
  top: -149px;
  left: 0%;
  transform: translateX(0%);
  width: 100%;
  height: 0;
  border-left: 3000px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 150px solid rgb(235,242 ,254,0.5);
}
.schedule-tabs {
  display: flex;
  justify-content: center;
  /* margin: 30px 0; */
}
.schedule-tabs .tab {
  margin:0 10px;
  width: auto;
  padding:0 32px;
  line-height: 55px;
  text-align: center;
  color: #65758C;
  font-size: 18px;
  transition: all 0.3s;
  border-radius: 28px;
  cursor: pointer;
}

.schedule-tabs .tab.active {
  background: linear-gradient(90.00deg, rgb(59, 130, 246),rgb(6, 182, 212) 100.001%);
  color: #fff;
}
.schedule-list-item{
  display: none;
}
.schedule-list-item:first-child{
  display: block;
}
.schedule-list-item-day{
  display: flex;
  justify-content: flex-start;
  margin-bottom: 34px;
  margin-top: 56px;
}
.schedule-list-item-day span{
  display: block;
  width: 98px;
  line-height: 48px;
  border-radius: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(90.00deg, rgb(59, 130, 246),rgb(6, 182, 212) 100.001%);
}
.schedule-list-item-day p{
  line-height: 48px;
  font-size: 20px;
  font-weight: 700;
  color: rgb(59, 130, 246);
  margin-left: 15px;
}
.schedule-list-item-con{
  width: 100%;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  padding:16px 8px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.schedule-list-item .schedule-list-item-con:nth-child(2n){
  background: #fff;
}
.schedule-list-item-con-wrap{
  max-height: 500px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.5) rgba(235, 242, 254, 0.3);
}

.schedule-list-item-con-wrap::-webkit-scrollbar {
  width: 8px;
}

.schedule-list-item-con-wrap::-webkit-scrollbar-track {
  background: rgba(235, 242, 254, 0.3);
  border-radius: 4px;
}

.schedule-list-item-con-wrap::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.5);
  border-radius: 4px;
}

.schedule-list-item-con-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.8);
}
.schedule-list-item-con-top{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 38px;
}

.schedule-list-item-con-top img{
  width: 32px;
  height: 32px;
}
.schedule-list-item-con-top p{
  width: 112px;
  line-height: 38px;
  text-align: center;
  border-radius: 19px;
  background: #fff;
  color: rgb(59, 130, 246);
  font-size: 14px;
  font-weight: 700;
  margin:0 24px;
}
.schedule-list-item .schedule-list-item-con:nth-child(2n) .schedule-list-item-con-top p{
  background: rgba(59, 130, 246, 0.1);
  /* color: #fff; */
}
.schedule-list-item-con-top span{
  font-size: 20px;
}
.schedule-list-item-con-top .weight{
  color: rgb(59, 130, 246);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  flex: 1;
}
.schedule-list-item-con-bottom{
  width: 100%;
  border-radius: 8px;
  background: #fff;
  color: rgb(30, 41, 59);
  font-size: 20px;
  font-weight: 400;
  line-height: 45px;
  text-align: center;
  margin-top: 16px;
  padding:8px;
}
.schedule-list-item-con-bottom-con{
  border-radius: 8px;
  padding:8px 0;
}
.schedule-list-item-con-bottom-con-tit{
  display: flex;
  justify-content: flex-start;
  line-height: 38px;

}
.schedule-list-item-con-bottom-con-tit p{
  width: 112px;
  line-height: 38px;
  text-align: center;
  border-radius: 19px;
  background: #fff;
  color: rgb(59, 130, 246);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 0 24px;
  margin-left: 48px;
  
}
.white .schedule-list-item-con-bottom-con-tit p{
  background: rgba(59, 130, 246, 0.1);
}
.grey .schedule-list-item-con-bottom-con-tit p{
  background: #fff;
}
.schedule-list-item-con-bottom-con-tit span{
  flex:1;
  text-align:center;
  color: rgb(59, 130, 246);
  font-size: 20px;
  font-weight: 700;
}
.schedule-list-item-con-bottom-con-bot{
  padding-left: 136px;
}
.white{
  background: #fff;
}
.grey{
  background-color: rgba(59, 130, 246, 0.1);
}
/* .schedule-list-item-con-bottom p{
  border-bottom: 1px solid #f1f1f1;
} */
.news{
  position: relative;
  margin-top: 73px;
}
.news::before {
  content: "";
  position: absolute;
  top: -73px;
  left: 0%;
  transform: translateX(0%);
  width: 100%;
  height: 0;
  border-left: 3000px solid transparent;
  border-right: 000px solid transparent;
  border-top: 150px solid rgb(235,242 ,254,0.5);
}
.news .schedule-section{
  position: relative;
}
.news-slash{
  position: absolute;
  left: -200px;
  top: 43px;
}
.news-list{
  display: flex;
  justify-content: space-between;
}
.news-list li{
  width: 416px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-out;
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: #fff;
}

.news-list li:hover{
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
  border-bottom: 3px solid rgb(59, 130, 246);
}
.news-list li img{
  width: 416px;
  height: 234px;
  border-radius: 8px 8px 0px 0px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.news-list li:hover img{
  transform: scale(1.05);
}
.news-list li div{
  padding:40px 25px 25px 25px;
}
.news-list li h4{
  color: rgb(30, 41, 59);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li p{
  color: rgb(101, 117, 140);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li span{
  width: 136px;
  margin-top: 23px;
  border-radius: 24px;
}
.more-news{
  display: block;
  width: 168px;
  line-height: 48px;
  border-radius: 24px;
  text-align: center;
  color: rgb(59, 130, 246);
  border:1px solid rgb(59, 130, 246);
  font-size: 16px;
  font-weight: 400;
  margin: auto;
  margin-top: 64px;
  transition: all 0.3s ease;
}

.more-news:hover {
  background-color: rgb(59, 130, 246);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}
.interview{
  margin-top: 60px;
  height: 1205px;
  position: relative;
  background:url(../images/rwzfbj.png) no-repeat top center;
  background-size: 1920px 1205px;
  padding-top: 120px;
}
.interview-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.interview-list li{
  border-radius: 16px;
  box-shadow: 0px 0px 12px 6px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  width: 640px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}
.interview-list li:hover{
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}
.interview-list li a{
  display: flex;
  justify-content: flex-start;
  padding:36px;
}
.interview-list li img{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border:8px solid #fff;
  box-shadow: 0px 0px 12px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  object-fit: cover;
}
.interview-list li:hover img{
  transform: scale(1.05);
}
.interview-list li div{
  flex: 1;
  margin-left: 35px;
}
.interview-list li div h4{
  color: rgb(30, 41, 59);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interview-list li:hover div h4{
  color: rgb(59, 130, 246);
}
.interview-list li div h6{
  color: rgb(59, 130, 246);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interview-list li div p{
  color: rgb(30, 41, 59);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-top: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interview-list li div span{
  display: block;
  width: 104px;
  line-height: 36px;
  text-align: center;
  border: 1px solid rgb(59, 130, 246);
  color: rgb(59, 130, 246);
  font-size: 14px;
  font-weight: 400;
  border-radius: 18px;
  margin-top: 30px;
  transition: all 0.3s ease;
}
.interview-list li:hover div span{
  background-color: rgb(59, 130, 246);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}
.highlights{
  margin-top: -100px;
  margin-bottom: 180px;
}
.highlights-list{
  margin-top: 56px;
}
.highlights-list ul {
  justify-content: space-between;
  flex-wrap: wrap;
  display: none;
}
.highlights-list ul:first-child{
  display: flex;

}
.highlights-list ul li img{
  width: 416px;
  height: 234px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlights-list ul li a:hover img{
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}
.prviewidx{
  margin-bottom: 180px;
}
.prviewidx-list{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.prviewidx-list li{
  width: 304px;
  height: 160px;
  border-radius: 8px;
  box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  padding:24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}
.prviewidx-list li:hover{
  transform: translateY(-8px);
  box-shadow: 0px 12px 20px rgba(59, 130, 246, 0.2);
  background: linear-gradient(to bottom, #ffffff, #f0f7ff);
  border-top: 3px solid rgb(59, 130, 246);
}
.prviewidx-list li h3{
  color: rgb(59, 130, 246);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.prviewidx-list li h4{
  color: rgb(101, 117, 140);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 10px;
}
.prviewidx-list li p{
  color: rgb(30, 41, 59);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 15px;
}
.prviewidx-list li span{
  color: rgb(101, 117, 140);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 8px;
  display: block;
}
.partnerlinks{
  padding-bottom: 180px;
}
.partnerlinks .schedule-section{
  position: relative;
}
.partnerlinks-slash{
  position: absolute;
  right: -200px;
  top: 43px;
}
.partnerlinks-list{
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}
.partnerlinks-list li{
  width: 236px;
  border-radius: 4px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  padding: 10px;
  transition: all 0.3s ease;
}
.partnerlinks-list li:hover{
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(59, 130, 246, 0.2);
  /* border: 1px solid rgba(59, 130, 246, 0.3); */
}
.partnerlinks-list li img{
  width: 100%;
  border-radius: 4px;
  transition: transform 0.5s ease;
}
.partnerlinks-list li:hover img{
  transform: scale(1.05);
}
.copyright_bg {
  width: 100%;
  height: 135px;
  padding: 35px 0px;
  background: linear-gradient(90.00deg, rgb(59, 130, 246),rgb(6, 182, 212) 100.001%);
}
.contactidx {
  /* width: 1000px; */
  display: flex;
  justify-content: center;
  text-align: center;
}
.contactidx>span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  padding-left: 25px;
}
.copyright_bg>div>p {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 30px;
}
.contactidx>span {
  margin:0 16px;
  background: url(../images/icon_ardess.png) no-repeat 0px;
}
.contactidx>span+span {
  background: url(../images/icon_call.png) no-repeat 0px;
}
.contactidx>span+span+span {
  background: url(../images/icon_file.png) no-repeat 0px;
}
.contactidx>span+span+span+span {
  background: url(../images/icon_email.png) no-repeat 0px;
}
.list-section-title{
  margin-top: 50px;
}
.list-about-content{
  margin: 64px 0;
}
.list-about-content h6{
  color: rgb(30, 41, 59);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}
.list-about-content h3{
  color: rgb(30, 41, 59);
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
  text-align: center;
  margin-top: 8px;
}
.list-about-content h3 font{
  background: linear-gradient(90.00deg, rgb(59, 130, 246), rgb(6, 182, 212));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.list-about-content>div{
  margin-top: 40px;
}
.list-about-content .about-image{
  margin-top: 0;
  margin: auto;
  max-width: 100%;
  margin-top: 20px;
}
.list-about-content p{
  margin-top: 20px;;
  color: rgb(30, 41, 59);
  font-size: 20px;
  font-weight: 290;
  line-height: 36px;
  text-indent: 2em;
}
.video-tit{
  display: flex;
  justify-content: flex-start;
  line-height: 35px;
  align-items: center;
  color: rgb(30, 41, 59);
  font-size: 28px;
  font-weight: 700;
  margin-top: 64px;
  border-bottom: 1px solid rgb(242, 242, 242);
  padding-bottom: 20px;
}
.video-tit img{
  width: 27px;
  height: 27px;
  margin-right: 18px;
}
.video-dec{
  color: rgb(101, 117, 140);
  font-size: 16px;
  font-weight: 400;
  line-height: 57px;
  margin-top: 20px;
}
.video-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.video-list li{
  width: 418px;
  padding:32px 24px;
  border-radius: 12px;
  box-shadow: 0px 0px 40px 8px rgba(0, 0, 0, 0.05);
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
.video-list li:hover{
  transform: translateY(-5px);
  box-shadow: 0px 10px 40px 12px rgba(0, 0, 0, 0.08);
}
.video-list li .video-img{
  width: 370px;
  height: 208px;
  position: relative;
}
.video-list li .video-img-big{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.video-list li .video-img-icon{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
  margin: auto;
  width: 43px;
  height: 43px;
}
.video-list li h4{
  color: rgb(30, 41, 59);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-top: 20px;
}
.video-list li .video-data {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 18px;
  margin-top: 15px;
  color: rgb(101, 117, 140);
  font-size: 14px;
  font-weight: 400;
}
.video-list li .video-data img{
  width: 14px;
  height: 14px;
  margin-right: 7px;
}
.video-list li p{
  color: rgb(101, 117, 140);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 15px;
}
.video .more-btn{
  margin: 24px auto 120px;
}
.review-dec{
  color: rgb(101, 117, 140);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}
.review-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;
  margin-bottom: 80px;
}
.review-list li{
  width: 640px;
  border-radius: 16px;
  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.review-list li:hover{
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px 8px rgba(0, 0, 0, 0.15);
}
.review-list li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #5FD1D5, #4285f4, #34a853, #fbbc05, #ea4335);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.review-list li:hover:after {
  transform: scaleX(1);
}
.review-list li a>img{
  width: 100%;
  height: 185px;
  border-radius: 16px 16px 0px 0px;
  object-fit: cover;

}
.review-list li div{
  padding:24px 32px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.review-list li div span{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: rgb(101, 117, 140);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-right: 25px;
}
.review-list li div span img{
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.review-list li div h3{
  width: 100%;
  color: rgb(30, 41, 59);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 20px;
}
.review-list li div p{
  color: rgb(101, 117, 140);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 18px;
}
.members-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;
}
.members-list li{
  width: 642px;
  border-radius: 8px;
  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.members-list li:hover{
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.15);
}
.members-list li a{
  padding:36px 46px;
  display: flex;
  justify-content: flex-start;
}
.members-list li img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border:4px solid rgba(59, 130, 246, 0.1);
  margin-right: 60px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.members-list li:hover img{
  transform: scale(1.05);
  border-color: rgba(59, 130, 246, 0.3);
}
.members-list  li div{
  flex: 1;
}
.members-list  li div h4{
  color: rgb(30, 41, 59);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  transition: color 0.3s ease;
}
.members-list li:hover div h4{
  color: rgb(59, 130, 246);
}
.members-list  li div h6{
  color: rgb(59, 130, 246);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 10px;
  transition: color 0.3s ease;
}
.members-list li:hover div h6{
  color: rgb(29, 78, 216);
}
.members-list  li div p{
  color: rgb(30, 41, 59);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 25px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.members-list li:hover div p{
  color: rgb(15, 23, 42);
}
.list-more-btn{
  margin: 24px auto 120px;
}
.news-li{
  margin-top: 64px;
}
.news-li li{
  padding:32px 28px;
  border-radius: 16px;
  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  margin-top: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
}
.news-li li:hover{
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px 6px rgba(59, 130, 246, 0.15);
  border-left: 3px solid rgb(59, 130, 246);
}
.news-li li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}
.news-li li:hover:before {
  transform: translateX(100%);
}
.news-li li a{
  display: flex;
  justify-content: flex-start;
}
.news-li li a>img{
  width: 453px;
  height: 254px;
  border-radius: 8px 0px 0px 8px;
  background: rgb(196, 196, 196);
  margin-right: 27px;
}
.news-li li a div{
  flex: 1;
}
.news-li li a div span{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: rgb(101, 117, 140);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.news-li li a div span img{
  width: 14px;
  height: 14px;
  margin-right: 7px;
}
.news-li li a div h3{
  color: rgb(30, 41, 59);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 21px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.news-li li a div p{
  color: rgb(101, 117, 140);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-li li a div h6{
  color: rgb(59, 130, 246);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: right;
  margin-top: 24px;
}
.members-con{
  display: flex;
  justify-content: flex-start;
  border-radius: 8px;

  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  margin-top: 50px;
  margin-bottom: 300px;
  padding: 36px 46px;
}
.members-con img{
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 4px solid rgba(59, 130, 246, 0.1);;
  margin-right: 48px;
  object-fit: cover;
}
.members-con div{
  flex: 1;
}
.members-con h3{
  color: rgb(30, 41, 59);
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
}
.members-con h4{
  color: rgb(59, 130, 246);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 10px;
}
.members-con p{
  color: rgb(101, 117, 140);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 25px;
}
.content{
  margin-top: 50px;
}
.content-tit {
  color: rgb(30, 41, 59);
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}
.content-info{
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}
.content-info span{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: rgb(101, 117, 140);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-right: 25px;
}
.content-info span img{
  width: 15px;
  height: auto;
  margin-right: 8px;
}
.content-detail{
  margin-top: 64px;
  margin-bottom: 50px;
}
.content-detail,.content-detail p{
  color: rgb(101, 117, 140);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.content-detail p{
  margin-top: 15px;;
}
.content-detail img,.content-detail video{
  max-width: 100%;
  height: auto;
}
.hightlights{
  margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
}
.hightlights-left{
  width: 520px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 490px;
  place-content: flex-start;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgb(59, 130, 246) transparent;
}
.hightlights-left::-webkit-scrollbar {
  width: 6px;
}
.hightlights-left::-webkit-scrollbar-thumb {
  background-color: rgb(59, 130, 246);
  border-radius: 3px;
}
.hightlights-left::-webkit-scrollbar-track {
  background: transparent;
}
.hightlights-left::-webkit-scrollbar-button {
  display: none;
}
.hightlights-left li img{
  width: 160px;
  height: 90px;
  border-radius: 8px;
  cursor: pointer;
  object-fit: cover;
}
.hightlights-right{
  width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hightlights-right img{
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
.hightlights-right p{
  color: rgb(101, 117, 140);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-top: 24px;
  text-align: center;
}
.‌contact{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 64px;
  margin-top: 64px;
  margin-bottom: 70px;
}
.‌contact-left{
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  flex: 1;
}
.‌contact-left div{
  width: 100%;
  text-align: right;
}
.‌contact-left h5{
  color: rgb(101, 117, 140);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.‌contact-left p{
  color: rgb(101, 117, 140);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 15px;
}
.‌contact img{
  width: 740px;
  height: 512px;
  border-radius: 8px;
}
.header-wap,.hightlights-wap{
  display: none;
}
.schedule-li{
  border-radius: 16px;
  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  /* height: 500px; */
  margin-top: 64px;
  padding:32px;
  margin-bottom: 60px;
}
.schedule-li .video-tit{
  margin-top: 0;
}
.schedule-li-pdf{
  margin-top: 20px;
}
.schedule-li-download{
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.schedule-li-download a{
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  padding:0 24px;
  line-height: 42px;
  border: 1px solid rgb(59, 130, 246);
  border-radius: 21px;
  color: rgb(59, 130, 246);
  font-size: 14px;
  font-weight: 400;
}
.schedule-li-download a:first-child{
  background: rgb(59, 130, 246);
  color: #fff;
}
.schedule-li-download a img{
  width: auto;
  height: 20px;
}
html {
  font-size: 13.33333vw
}

@media screen and (min-width:769px) {
  html {
    font-size: 102.4px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:721px) and (max-width:768px) {
  html {
    font-size: 102.4px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:641px) and (max-width:720px) {
  html {
    font-size: 96px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:541px) and (max-width:640px) {
  html {
    font-size: 85.33px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:481px) and (max-width:540px) {
  html {
    font-size: 72px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:415px) and (max-width:480px) {
  html {
    font-size: 64px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:413px) and (max-width:414px) {
  html {
    font-size: 55.2px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:394px) and (max-width:412px) {
  html {
    font-size: 54.93px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:376px) and (max-width:393px) {
  html {
    font-size: 52.4px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:361px) and (max-width:375px) {
  html {
    font-size: 50px;
    font-size: 13.33333vw
  }
}

@media screen and (min-width:321px) and (max-width:360px) {
  html {
    font-size: 48px;
    font-size: 13.33333vw
  }
}
@media screen and (max-width: 1860px) {
  .header{
    /* min-height: 768px; */
  }
  .header-top{
    line-height: 70px;
    width: 1366px;
  }
  .header-left img{
    height: 34px;
  }
  .nav{
    width: 630px;
  }
  .search{
    width: 40px;
  }
  .search input[type=text],.header-right{
    display: none;
  }
  .header-right-en{
    display: block;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 8px;
  }
  .scroll-header .header-right-en{
    background: rgb(242, 242, 242);
    color: rgb(101, 117, 140);
  }
}
@media screen and (max-width: 768px){
  .header-top-box,.index-header .adicon,.schedule::before,.news::before,.news-list li p,.news-list li span.interview-list li div span,.interview-list li div span,.news-list li span,.news-li li a div span,.news-li li a div p,.news-li li a div h6{
    display: none;
  }
  .header.index-header{
    height: 5.18rem;
    min-height: auto;
    background-size: 100% 4.1rem;
    background-position: 0 1.08rem;
    transition: all 0.3s ease;
  }
  .header-wap{
    display: block;
    position: relative;
    z-index: 999;
    position: fixed;
    z-index: 999;
    height: 1.08rem;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .header-wap-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    line-height: 1.08rem;
    padding:0 .32rem;
  }
  .header-wap-top h3{
    color: rgb(30, 41, 59);
    font-size: .36rem;
    font-weight: 400;
  }
  .header-wap-top>img{
    width: .48rem;
    height: .4rem;
  }
  .header-wap-bottom{
    width: 100%;
    background: #fff;
    padding: .64rem .32rem;
  }
  .header-wap-bottom ul{
    text-align: center;
  }
  .header-wap-bottom ul li{
    margin-bottom: .4rem;
  }
  .header-wap-bottom ul li a{
    color: rgb(30, 41, 59);
    font-size: .36rem;
    font-weight: 400;
    position: relative;
  }
  .header-wap-bottom ul li a::after{
    content: "";
    width: 100%;
    height: .06rem;
    border-radius: .4rem;
    background: rgb(247, 181, 1);
    position: absolute;
    left: 0;
    bottom:-0.1rem;
    transform: scaleX(0);
    transition: transform 0.4s ease;  
  }
  .header-wap-bottom ul li.act a::after{
    transform: scaleX(1);
  }
  .header-wap-bottom-search{
    display: flex;
    justify-content:  space-between ;
    padding:0 .32rem
  }
  .header-wap-bottom-search .search{
    width: 4rem;
    height: .8rem;
    border-radius: 0.4rem;
    background: rgba(30, 41, 59, 0.1);
    margin-left: 0;
  }
  .header-wap-bottom-search .search input[type=text], .header-right{
    display: block;
  }
  .header-wap-bottom-search .search input[type=text]{
    height: .8rem;
    padding:0 .2rem;
    color: rgb(101, 117, 140);
    font-size: .28rem;
  }
  .header-wap-bottom-search  .search input[type="submit"]{
    background: url(../images/path-block.png) no-repeat center center;
  }
  .header-wap-bottom-search .search input[type=text]::placeholder{
    color: rgb(101, 117, 140);
  }
  .header-wap-bottom-search .search input[type="submit"]{
    height: .8rem;
    width: .8rem;
  }
  .header-wap-bottom-search .header-right{
    margin-left: 0;
  }
  .header-wap-bottom-search .header-right, .header-right a{
    color: rgb(101, 117, 140);
    font-size: .32rem;
    font-weight: 400;
    line-height: .8rem;
  }
  .w{
    width: 100%;
    padding:0 .32rem
  }
  .conference{
    padding-top: .64rem;
  }
  
  .section-title{
    color: rgb(30, 41, 59);
    font-size: .48rem;
    font-weight: 700;
    line-height: .6rem;
    margin-bottom: .08rem;

  }
  .section-subtitle{
    color: rgb(101, 117, 140);
    font-size: .28rem;
    font-weight: 400;
    line-height: .36rem;
  }
  .divider{
    width: 1.6rem;
    height: .08rem;
    margin: .48rem auto .92rem;
    border-radius: .08rem;
  }
  .about-content{
    flex-wrap: wrap;
    margin-bottom: 1.44rem;
  }
  .about-text h3{
    font-size: .48rem;
    line-height: .6rem;
  }
  .about-text p{
    font-size: .36rem;
    line-height: .72rem;
    margin-top: .48rem;
  }
  .more-btn{
    width: 3.36rem;
    line-height: .96rem;
    font-size: .32rem;
    margin-top: .8rem;
    border-radius: .48rem;
  }
  .about-image{
    margin-top: .32rem;
  }
  .about-image img{
    width: 100%;
    border-radius: .32rem;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .schedule{
    background: #fff;
    padding-bottom: 0;
  }
  .schedule-tabs-box{
    overflow: auto;
  }
  .schedule-tabs{
    width: max-content;
    gap: .4rem;
  }
  .schedule-tabs .tab{
    padding:0 .46rem;
    line-height: .96rem;
    border-radius: .56rem;
    font-size: .32rem;
    margin:0
  }
  .schedule-list-item-day{
    margin:.88rem 0 .68rem 0;
  }
  .schedule-list-item-day span{
    width: 1.96rem;
    line-height: .96rem;
    border-radius: .48rem;
    font-size: .36rem;
  }
  .schedule-list-item-day p{
    font-size: .4rem;
    line-height: .96rem;
  }
  .schedule-list-item-con{
    padding:.32rem .16rem;
    margin-bottom: .16rem;
  }
  .schedule-list-item-con-top{
    flex-wrap: wrap;
  }
  .schedule-list-item-con-top img{
    width: .64rem;
    height: .64rem;
  }
  .schedule-list-item-con-top p{
    width: 2.24rem;
    line-height: .76rem;
    border-radius: .38rem;
    font-size: .28rem;
    margin: 0 .48rem;
  }
  .schedule-list-item-con-top span{
    width: 100%;
    display: block;
    text-align: center;
    font-size: .36rem;
  }
  .schedule-list-item-con-top .weight{
    flex: auto;
  }
  .schedule-list-item-con-bottom-con-tit{
    flex-wrap: wrap;
  }
  .schedule-list-item-con-bottom-con-tit p{
    /* margin-left: 0; */
    width: 2.24rem;
    line-height: .76rem;
    border-radius: .38rem;
    font-size: .28rem;
    margin: 0 0 0 .48rem;
    margin-left: .32rem;
  }
  .schedule-list-item-con-bottom-con-bot{
    padding-left: 0;
  }
  .schedule-list-item-con-bottom-con-tit span{
    display: block;
    width: 100%;
    flex: auto;

  }
  .schedule-list-item-con-bottom{
    font-size: .32rem;
    line-height: .9rem;
  }
  .more-news{
    width: 3.36rem;
    line-height: .96rem;
    border-radius: .48rem;
    text-align: center;
    font-size: .32rem;
    margin: auto;
    margin-top: .84rem;
  }
  .news-list{
    flex-wrap: wrap;
    gap: .64rem;
  }
  .news-list li img{
    width: 100%;
    height: 3.86rem;
    border-radius: .16rem .16rem 0rem 0rem;
  }
  .news-list li div{
    padding:.48rem 0 0 0;
  }
  .news-list li h4{
    font-size: .36rem;
    line-height: .56rem;
  }
  .interview{
    margin-top: 0;
    background: none;
    padding-top: 1.42rem;
  }
  .interview{
    height: auto;
  }
  .interview-list li a{
    padding:.48rem .32rem;
  }
  .interview-list li img{
    width: 2rem;
    height: 2rem;
    border:.16rem solid #fff;
    box-shadow: 0rem 0rem .24rem .12rem rgba(0, 0, 0, 0.1);
  }
  .interview-list li div {
    margin-left: .36rem;
  }
  .interview-list li div h4{
    font-size: .36rem;
    line-height: .46rem;
  }
  .interview-list li div h6{
    font-size: .26rem;
    line-height: .34rem;
    margin-top: .16rem;
  }
  .interview-list li div p{
    font-size: .36rem;
    line-height: .46rem;
    margin-top: .5rem;
  }
  .interview-list li{
    width: 100%;
    margin-bottom: .48rem;
  }
  .highlights{
    margin-top: 1.44rem;
    margin-bottom: 1.44rem;
  }
  .highlights-list{
    margin-top: .64rem;
  }
  .highlights-list ul{
    gap: .48rem;
  }
  .highlights-list ul li img{
    width: 100%;
    height: 3.84rem;
  }
  .highlights-list .more-news{
    margin-top: .36rem;
  }
  .prviewidx{
    margin-bottom: 1.44rem;
  }
  .prviewidx-list li{
    width: 100%;
    height: auto;
    padding: .48rem;
  }
  .prviewidx-list li h3 {
    font-size: .4rem;
    line-height: .5rem;
  }
  .prviewidx-list li h4{
    font-size: .28rem;
    line-height: .36rem;
    margin-top: .2rem;
  }
  .prviewidx-list li p{
    font-size: .32rem;
    line-height: .4rem;
    margin-top: .3rem;
  }
  .prviewidx-list li span{
    font-size: .28rem;
    line-height: .36rem;
    margin-top: .16rem;
  }
  .partnerlinks{
    padding-bottom: 1rem;
  }
  .partnerlinks-list{
    gap: .32rem;
    justify-content: space-between;
  }
  .partnerlinks-list li{
    width: 3.26rem;
    padding:.2rem
  }
  .copyright_bg{
    height: auto;
    padding:.32rem;
  }
  .contactidx{
    flex-wrap: wrap;
    display: none;
  }
  .index-footer .contactidx{
    display: flex;
  }
  .contactidx>span{
    line-height: .5rem;
    margin:0;
    width: auto;
    font-size: .28rem;
    padding-left: .5rem;
    display: flex;
    text-align: left;
    background: url(../images/icon_ardess.png) no-repeat left .16rem;
  }
  .contactidx>span:nth-child(2),.contactidx>span:nth-child(3){
    margin:0 100px;
  }
  .copyright_bg>div>p{
    font-size: .28rem;
    line-height: .48rem;
    margin-top: 0;
    padding-top: 0;
    border-top:none;
  }
  .index-footer.copyright_bg>div>p{
    border-top: 1px solid rgb(242, 242, 242);
    margin-top: .2rem;
    padding-top: .2rem;
  }
  .header{
    background-size: 100% auto;
    height: 2.84rem;
    background-position: 0 1.08rem;
  }
  .content-header.header{
    background: none;
    height: 1.08rem;
  }
  .header  .header-wap-top-con{
    display: none;
  }
  .content-header.header .header-wap-top-li{
    display: none;
  }
  .content-header.header .header-wap-top-con{
    display: flex;
    align-items: center;
  }
  .content-header.header .header-wap-top-con img{
    width: .18rem;
    height: .34rem;
    margin-right: .22rem;
  }
  .video-tit{
    align-items: flex-start;
    font-size: .48rem;
    line-height: .6rem;
    margin-top: 32px;
    padding-bottom: .4rem;
  }
  .video-tit img{
    width: .54rem;
    height: .54rem;
    margin-right: .36rem;
    margin-top: .05rem;

  }
  .video-dec{
    font-size: .32rem;
    line-height: .52rem;
    text-align: center;
    margin-top: .4rem;
  }
  .video-list{
    gap: .64rem;
  }
  .video-list li{
    width: 100%;
    box-shadow: none;
    padding:0;
  }
  .video-list li .video-img{
    width: 100%;
    height: 4.16rem;
  }
  .video-list li .video-img-icon{
    width: .88rem;
    height: .88rem;
  }
  .video-list li h4{
    font-size: .36rem;
    line-height: .46rem;
    margin-top: .4rem;
  }
  .video-list li .video-data{
    font-size: .28rem;
    line-height: .36rem;
    margin-top: .3rem;
  }
  .video-list li .video-data img{
    width: .28rem;
    height: .28rem;
    margin-right: .14rem;
  }
  .video-list li p{
    margin-top: .32rem;
    font-size: .28rem;
    line-height: .52rem;
  }
  .video .more-btn,.list-more-btn{
    margin:.48rem auto .9rem
  }
  .news-li{
    margin-top: .48rem;
  }
  .news-li li{
    box-shadow: none;
    padding:0;
    border-radius: 0;
    margin-top: .32rem;
    padding-bottom: .32rem;
    transform: none;
    transition: none;
    border-bottom: 1px solid rgb(242, 242, 242);
  }
  .news-li li:hover{
    transform: none;
    box-shadow: none;
    border-left: 3px solid transparent;
  }
  .news-li li:before {
    display: none;
  }
  .news-li li:hover:before {
    transform: none;
  }
  .news-li li a>img{
    width: 2.44rem;
    height: 1.36rem;
    border-radius: .16rem;
    margin-right: .32rem;
  }
  .news-li li a div h3{
    margin-top: 0;
    -webkit-line-clamp:3;
    font-size: .32rem;
    font-weight: 400;
    line-height: .48rem;
  }
  .list-about-content{
    margin:.64rem 0;
  }
  .list-about-content h6{
    font-size: .36rem;
    line-height: .5rem;
  }
  .list-about-content h3{
    font-size: .48rem;
    line-height: .6rem;
    margin-top: .16rem;
  }
  .list-about-content>div{
    margin-top: .48rem;
  }
  .list-about-content .about-image{
    margin-top: .3rem;
  }
  .list-about-content p{
    font-size: .36rem;
    line-height: .72rem;
    margin-top: .3rem;
  }
  .hightlights{
    display: none;
  }
  .hightlights-wap{
    margin-top: .64rem;
    display: block;
  }
  .hightlights-wap ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .32rem;
  }
  .hightlights-wap ul li img{
    width: 3.2rem;
    height: 1.8rem;
    border-radius: .08rem;
  }
  .hightlights-detail-box{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top:0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    display: none;
  }
  .hightlights-detail{
    position: absolute;
    width: 6.86rem;
    height: 9.2rem;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: .32rem;
    background: #fff;
  }
  .hightlights-detail-con{
    width: 100%;
    height: calc(100% - .52rem);
  }
  .hightlights-detail-con div{
    width: 100%;
    height: 7.12rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hightlights-detail-con img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
  }
  .hightlights-detail-con p{
    color: rgb(101, 117, 140);
    font-size: .28rem;
    line-height: .52rem;
    margin-top: .2rem;
    text-align: center;
  }
  .hightlights-detail-page{
    color: rgb(101, 117, 140);
    font-size: .28rem;
    font-weight: 400;
    line-height: .52rem;
    display: flex;
    justify-content: space-between;
  }
  .review-dec{
    font-size: .32rem;
    line-height: .5rem;
  }
  .members-list{
    margin-top: .4rem;
    gap: .48rem;
  }
  .members-list li{
    width: 100%;
    border-radius: .16rem;
    box-shadow: 0rem 0rem .32rem .08rem rgba(0, 0, 0, 0.1);

  }
  .members-list li a{
    padding: .48rem .32rem .48rem .32rem;
  }
  .members-list li img{
    width: 2rem;
    height: 2rem;
    border: .16rem solid #fff;
    box-shadow: 0rem .08rem .08rem 0rem rgba(0, 0, 0, 0.05);
    margin-right: .36rem;
  }
  .members-list  li div h4{
    font-size: .36rem;
    line-height: .46rem;
  }
  .members-list  li div h6{
    font-size: .26rem;
    line-height: .34rem;
    margin-top: .16rem;
  }
  .members-list li div p{
    font-size: .36rem;
    line-height: .46rem;
    margin-top: .5rem;
    font-weight: 700;
  }
  .members-con{
    border-radius: 0;
    box-shadow: none;
    margin-top: 1rem;
    margin-bottom: 4rem;
    padding: 0;
    flex-wrap: wrap;
  }
  .members-con img{
    width: 2.4rem;
    height: 2.4rem;
    box-shadow: 0rem .08rem .08rem 0rem rgba(0, 0, 0, 0.05);
    border:.16rem solid #fff;
    margin: auto;
    
  }
  .members-con div{
    width: 100%;
    flex:auto
  }
  .members-con h3{
    font-size: .36rem;
    line-height: .46rem;
    margin-top: .36rem;
    text-align: center;
  }
  .members-con h4{
    font-size: .26rem;
    line-height: .34rem;
    margin-top: .16rem;
    text-align: center;
  }
  .members-con p{
    font-size: .32rem;
    line-height: .56rem;
    margin-top: .5rem;
  }
  .review-list li{
    width: 100%;
    border-radius:.32rem;
    box-shadow: 0rem 0rem .32rem .08rem rgba(0, 0, 0, 0.1);
  }
  .review-list li a>img{
    height: 2.12rem;
    border-radius: .32rem .32rem 0rem 0rem;
  }
  .review-list li div{
    padding:.32rem
  }
  .review-list li div span{
    font-size: .24rem;
    line-height: .3rem;
    margin-right: .5rem;
  }
  .review-list li div span img{
    width: 12px;
    height: auto;
    margin-right: .1rem;
  }
  .review-list li div h3{
    font-size: .36rem;
    line-height: .46rem;
    margin-top: .3rem;
  }
  .review-list li div p{
    font-size: .3rem;
    line-height: .52rem;
    margin-top: .16rem;
  }

  .review-list{
    gap: .32rem;
    margin-top: .64rem;
  }
  .content{
    margin-top: .48rem;
  }
  .content-tit{
    font-size: .48rem;
    line-height: .6rem;
    font-weight: 400;
  }
  .content-info{
    flex-wrap:wrap;
    gap: .2rem;
    margin-top: .3rem;
  }
  .content-info span{
    font-size: .28rem;
    line-height: .36rem;
  }
  .content-info span img{
    width: .28rem;
    height: auto;
    margin-right: .16rem;
  }
  .content-detail p{
    margin-top: .3rem;
  }
  .content-detail{
    margin-top: .6rem;
    margin-bottom: .4rem;
  }
  .content-detail, .content-detail p{
    font-size: .28rem;
    font-weight: 400;
    line-height: .52rem;
  }
  .‌contact{
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: .64rem;
    margin-bottom: 1.5rem;
  }
  .‌contact-left{
    gap: .72rem;
  }
  .‌contact-left div{
    text-align: center;
  }
  .‌contact-left h5{
    font-size: .4rem;
    line-height: .5rem;
  }
  .‌contact-left p{
    font-size: .36rem;
    line-height: .46rem;
    margin-top: .32rem;
  }
  .‌contact img{
    width: 100%;
    height: auto;
  }
  .schedule-li{
    box-shadow:none;
    border-radius:0;
    padding:0;
    margin-top: .64rem;

  }
  .schedule-li-download{
    gap: 0;
    justify-content: space-between;
    margin-top: .48rem;
  }
  .schedule-li-download a{
    padding: 0 .48rem;
    line-height: .84rem;
    font-size: .28rem;
    gap: .2rem;
  }
  .schedule-li-download a img{
    height: .32rem;
  }
}

.video-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.video-container video::-webkit-media-controls {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container video[controls]::-webkit-media-controls {
  opacity: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
  /* background-color: rgba(0, 0, 0, 0.3); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button:hover {
  /* transform: translate(-50%, -50%) scale(1.1);
  background-color: rgba(59, 130, 246, 0.5); */
}

.play-button img {
  width: 60%;
  height: 60%;
}