body{
  font-size: 16px;
  color: #333;
  font-family: SourceHanSansCN;
}
*{
  margin: 0;
  padding: 0;
}
p{
  margin: 0;
  padding: 0;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.block{
  display: block;
}
.w-full{
  width: 100%;
}
[v-cloak]{
  display: none;
}


.u-container {
  padding: 0 0.3rem;
}
@media screen and (min-width: 1200px) {
  .u-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}


/*  --------------   通用样式 start ------------------- */
.ellipsis-multi {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 显示的行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5; /* 行高 */
  max-height: 3em; /* 最大高度（行高 * 行数） */
}
.ellipsis-single {
  white-space: nowrap; /* 不换行 */
  overflow: hidden;    /* 隐藏溢出内容 */
  text-overflow: ellipsis; /* 显示省略号 */
}

.video-play-contanier{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}
.video-play-contanier .icon-play{
  width: 1rem;
  height: 1rem;
  background: url(https://res.variflight.com/news_carnoc/hot/list/2025/ca/images/icons/bofang.png);
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .video-play-contanier .icon-play{
    width: 50px;
    height: 50px;
  }
}

/* 根据图片宽高比例响应式显示的图片 */
.media-picture-container .media-picture-wrap, .media-picture{
  width: 300px; 
  padding-top: 56.25%; /* 比例 = (高/宽)*100% */
  position: relative;
  display: block;
}
.media-picture-container .media-picture-wrap img, .media-picture img{ 
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill; /* 可选 */
}

/* loading */
.loading {
  width: 1rem; /* 设置图片宽度 */
  height: 1rem; /* 设置图片高度 */
  animation: spin 2s linear infinite; /* 调用动画 */
}
.loading img{
  width: 100%;
}
@media screen and (min-width: 768px) {
  .loading {
    width: 100px; /* 设置图片宽度 */
    height: 100px; /* 设置图片高度 */
  }
}
@keyframes spin {
  from {
      transform: rotate(0deg); /* 从0度开始 */
  }
  to {
      transform: rotate(360deg); /* 旋转到360度 */
  }
}


.loading-circle{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.loading-circle .circle {
  width: 20px;
  height: 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-circle .text {
  color: #666;
  margin-left: 10px;
}

/* loading end */

/* more 按钮 */
.more-button {
  text-align: center;
  padding: 20px;
}
.more-button button {
  background: white;
  color: #c94445;
  border: 2px solid #c94445;
  padding: 10px 40px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.more-button button:hover {
  background: #c94445;
  color: white;
}

.media-bottom-text{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  padding: 5px;
  font-size: 15px;
}

/* 文字超出部分显示省略号，显示详情  */
.text-truncate-detail {
  font-size: 14px;
  line-height: 1.5em;
  max-height: 4.5em; 
  overflow: hidden;
  position: relative;
  display: inline-block;
  word-break: break-word;
}
.text-truncate-detail .highlight {
  color: #007bff;
  white-space: nowrap;
}



/* lazyload 图片动效 */
.lazy {
  opacity: 0;
  transition: opacity .3s;
}
.lazy.loaded {
  opacity: 1;
}

/*  --------------   通用样式  end ------------------- */



/*  --------------  骨骼屏加载 start  ------------------- */
.skeleton-wrapper .skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 2s infinite;
}
/* 流光动画 */
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* 卡片式布局 */
.skeleton-wrapper .skeleton-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-bottom: 20px;
}
/* 图片骨架 */
.skeleton-wrapper .skeleton-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 宽高比 */
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
/* 图片占位框 */
.skeleton-wrapper .skeleton-image__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* SVG图标容器 */
.skeleton-wrapper .skeleton-image__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  padding-top: 40%; /* 1:1 宽高比 */
  max-width: 100px;
  max-height: 100px;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}

/* SVG图标 */
.skeleton-wrapper .skeleton-image__icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 标题骨架 */
.skeleton-wrapper .skeleton-title {
  width: 100%;
  height: 20px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* 文本骨架 */
.skeleton-wrapper .skeleton-text {
  height: 16px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* 不同宽度的文本骨架 */
.skeleton-wrapper .skeleton-text.short {
  width: 60%;
}

.skeleton-wrapper .skeleton-text.medium {
  width: 80%;
}

.skeleton-wrapper .skeleton-text.long {
  width: 100%;
}

/* 左图右文布局 */
.skeleton-wrapper .skeleton-layout-left-image {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.skeleton-wrapper .skeleton-layout-left-image .skeleton-image {
  width: 40%;
  margin-bottom: 0;
}

/* 左图右文布局 - 只有图片时的样式 */
.skeleton-wrapper .skeleton-layout-left-image:not(:has(.skeleton-content)) .skeleton-image {
  width: 100%;
  margin-bottom: 0;
}

.skeleton-wrapper .skeleton-layout-left-image .skeleton-content {
  flex: 1;
}

/* 网格布局容器 */
.skeleton-wrapper .skeleton-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.skeleton-wrapper .skeleton-grid .skeleton-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .skeleton-wrapper .skeleton-layout-left-image {
    flex-direction: row;
  }
  
  .skeleton-wrapper .skeleton-layout-left-image .skeleton-image {
    width: 35%;
    margin-bottom: 0;
  }
  
  .skeleton-wrapper .skeleton-grid .skeleton-card {
      flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .skeleton-wrapper .skeleton-layout-left-image {
    gap: 8px;
  }
  .skeleton-wrapper .skeleton-layout-left-image .skeleton-image {
    width: 30%;
  }
  .skeleton-wrapper .skeleton-grid .skeleton-card {
      flex: 1 1 100%;
  }
}
/* 超小屏幕 */
@media (max-width: 480px) {
  .skeleton-wrapper .skeleton-layout-left-image .skeleton-image {
    width: 40%;
  }
}









/* ------------ header ------------ */
.header{
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #2c21d0;
  z-index: 99;
}
.header nav {
  height: 1.320755rem;
  display: flex;
  justify-content: space-between;
  font-size: .339623rem;
  align-items: center;
  position: relative;
}
/* 左侧logo和back */
.header .header__left-section{
  display: flex;
  align-items: center;
  height: 100%;
}
/* 返回按钮 */
.header nav .header__back-btn{
  width: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.header nav .header__back-btn i{
  width: 0.5rem;
  height: 0.5rem;
  background-image: url(https://res.variflight.com/news_carnoc/hot/list/2025/northbund-forum/images/icons/back.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
}

.header nav .header__back-btn img{
  width: 0.5rem;
  height: auto;
}
.header nav .header__left-section{
  display: flex;
  align-items: center;
}
.header nav .header__logo{
  display: flex;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  width: 2.5rem;
  height: 1.1453333rem;
}
.header nav .header__logo img{
  width: 100%;
}
/* header__main-nav */
.header nav .header__main-nav{
  flex: 1;
  display: none;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  .header nav .header__mobile-nav {
    display: none;
  }
  .header nav .header__main-nav {
    display: flex;
  }
}
.header nav .header__main-nav ul {
  display: flex;
  margin-left: 0.4rem;
}
.header nav .header__main-nav ul li {
  height: 100%;
  position: relative;
  padding: 0 0.4rem;
  cursor: pointer;
  position: relative;
}
.header nav .header__main-nav ul li>a {
  display: block;
  height: 100%;
  font-size: 16px;
  color: #fff;
}
.header nav .header__main-nav ul li.active a {
  font-weight: 600;
}
.header nav .header__nav-actions{
  display: flex;
  align-items: center;
}
.header nav .header__nav-actions .header__supplementary-logo img {
  width: 2rem;
}
.header nav .header__nav-actions .header__signup-btn a{
  background-color: #4d89fb;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;;
  font-size: 14px;
}
/* header__mobile-nav */
.header nav .header__mobile-nav{
  position: absolute;
  right: .056604rem;
  top: 0;
  align-items: center;
  height: 1.320755rem;
}
.header nav .header__mobile-nav .header__mobile-menu-toggle {
  cursor: pointer;
  width: .754717rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: .09434rem;
  height: 100%;
}
.header__mobile-menu-toggle .icon_menu{
  width: .754717rem;
  height: .754717rem;
  background-image: url('https://res.variflight.com/news_carnoc/hot/list/2025/ca/images/icons/menu.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
  background-size: 100% 100%;
}
.header nav .header__mobile-nav .header__mobile-nav-list {
  position: fixed;
  background-color: rgb(22 84 245);
  top: 1.320755rem;
  left: 0;
  width: 100%;
}
.header nav .header__mobile-nav .header__mobile-nav-list ul li{
  font-size: 0.35rem;
  height: 1.056604rem;
  line-height: 1.056604rem;
}
.header nav .header__mobile-nav .header__mobile-nav-list ul li a{
  display: block;
  width: 100vw;
  position: absolute;
  left: 0;
  padding-left: 20px;
  color: #fff;
  cursor: pointer;
}
/* --------------- header 结束 --------------- */



/* --------------- banner start ------------------- */
.banner{
  width: 100%;
}
.banner img{
  width: 100%;
}
/* --------------- banner end ------------------- */


/* ----------------- 轮播 start ---------------------- */
.carousel-wrapper{
  position: relative; 
  width: 100%; 
  height: 100%; 
  margin: 0 auto; 
  overflow: hidden; 
}
.carousel-wrapper .carousel-container{
  position: relative; 
  width: 100%; 
  height: 100%; 
  overflow: hidden;
}
.carousel-wrapper .carousel {
  display: flex;
  width: 100%;
  height: 100%;
}
.carousel-wrapper .carousel-item {
  flex-shrink: 0;   /* 关键：禁止收缩，占满一屏 */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-wrapper .carousel-item img {
  display: block;  /* 去掉 inline 间隙 */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.carousel-wrapper .carousel-caption {   
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 15px 25px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  right: 0;
}
.carousel-wrapper .carousel-btn{
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background-color: rgba(255, 255, 255, 0.9); 
  border: none; 
  width: 30px; 
  height: 50px; 
  /* border-radius: 50%;  */
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  font-size: 24px; 
  color: #2c3e50; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
  /* transition: all 0.25s ease;  */
  z-index: 10; 
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 1;
      margin-top: -20px;
}
@media screen and (max-width: 786px) {
  .carousel-wrapper .carousel-btn{
    width: 1.5rem;
    height: 2.5rem;
    font-size: 16px;
  }
  
}
.carousel-wrapper .carousel-btn:disabled{
  opacity: 0.1;
}
.carousel-wrapper .carousel-btn.prev{
  left: 20px;
}
.carousel-wrapper .carousel-btn.next{
  right: 20px;
}
.carousel-wrapper .carousel-pagination{
  position: absolute;
  left: 0;
  bottom:0;
  right: 0;
  padding: 10px 0;
}
.carousel-wrapper .carousel-pagination-bullets{
  gap: 12px;
  display: flex; justify-content: center; 
}
.carousel-wrapper .carousel-pagination .carousel-pagination-bullet{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(44, 62, 80, 0.3);
  cursor: pointer;
  transition: 0.25s;
  transform: none;
}
.carousel-wrapper .carousel-pagination .carousel-pagination-bullet.carousel-pagination-bullet-active{
  background-color: rgb(52, 152, 219);
  border: 2px solid rgb(52, 152, 219);
  transform: scale(1.2);
}
.carousel-wrapper .carousel-pagination-fraction{
  text-align: center;
}
/* ----------------- 轮播 end ---------------------- */



/* ----------------- v-dialog ------------------- */
.dialog{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  height: 100%; 
  height: 100dvh;
  background: rgba(0,0,0,.9);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialog.active {
  opacity: 1;
  visibility: visible;
}
.dialog img{
  touch-action: pan-y;
}
.dialog .dialog-container{
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dialog .dialog-container .dialog-top{
  /*display: flex;
  align-items: center;
  justify-content: flex-end;
   width: 100%;
  height: 1.11rem; 
  position: absolute;
  top: 0;
  right:0;*/
}
@media screen and (min-width: 992px) {
  .dialog .dialog-container .dialog-top{
    /* height: 60px;
    top:-30px;
    right: -22px; */
  }
}
.dialog .dialog-container .dialog-body{
  height: 100%; /* 不超过剩余空间 */
  position: relative;
  width: 100%;
}
.dialog .dialog-container .dialog-close{
  width: 0.5926rem;
  height: 0.5926rem;
  display: flex;
  border-radius: 50%;
  background: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease;
  position: absolute;
  top: -0.2926rem;
  right: -2vw;
}
.dialog .dialog-container .dialog-close:hover {
  background: #f0f0f0;
  transform: rotate(90deg);
}
.dialog .dialog-container .dialog-close svg{
  width: 0.3704rem;
  height: 0.3704rem;
  color: #000;
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .dialog .dialog-container .dialog-close{
    width: 32px;
    height: 32px;
    top:-16px;
    right: -16px;;
  }
  .dialog .dialog-container .dialog-close svg{
    width: 20px;
    height: 20px;
  }
}
.dialog .dialog-container .dialog-carousel{
  max-width: 90%;
  max-height: 90%;
}
.dialog .dialog-container .media-container{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
.dialog .dialog-container .media-container > img, .dialog .dialog-container .media-container video{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  /*  */
  max-width: 100%;
  max-height: calc(90vh - 80px);
}
.dialog .dialog-container .media-title{
  /* position: absolute; */
  bottom:0;
  left: 0;
  right: 0;
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
}
.dialog .carousel-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog .dialog-container  .carousel img{
  max-width: 90vw;
  max-height: calc(90vh - 80px);
}
.dialog .carousel-wrapper .carousel-item{
      flex-direction: column;   
    width: 90vw;
    height: 90vh;
}
.dialog .carousel-wrapper .carousel-caption{
  position: static;
  background: none;
}

/* ----------------- v-dialog end ------------------- */



/* --------------- scroll-to-top -------------------  */
.scroll-to-top{
  position: fixed;
  bottom: 0.3rem;
  right: 0.3rem;
}
.scroll-to-top img{
  width: 38px;
}
/* --------------- scroll-to-top  end -------------------  */



/* 左图右文插件 */
.tw-cards .tw-card__item{
  display: flex;
  padding: 10px 0;
}
.tw-card__image-wrapper{
  margin-right: 0.4rem;
}
.tw-cards .tw-card__item .tw-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tw-cards .tw-card__item .tw-content .tw-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 超过3行显示省略号 */
  overflow: hidden;
}
.tw-cards .tw-card__item .tw-content .tw-desc{
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 超过3行显示省略号 */
  overflow: hidden;
}
.tw-cards .tw-card__item .tw-tags span{
  color: #999;
  margin-right: 5px;
}







/* scorll-hot-topic  热门话题 */
.scorll-hot-topic{
  background-color: #b81a12;
  padding: 0 0.3rem;
  position: relative;
  height: 8rem;

}
.scorll-hot-topic .scorll-hot-topic-layer{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1rem;
  background: linear-gradient(to top, #b81a12, transparent);
}
.scorll-hot-topic-container{
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}
.scorll-hot-topic-wrapper {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s;
}
.scorll-hot-topic-wrapper::-webkit-scrollbar {
  width: 8px;
}
.scorll-hot-topic-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.scorll-hot-topic-wrapper::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
.scorll-hot-topic-wrapper.show-scrollbar::-webkit-scrollbar-thumb {
  background: #ccc;
}
.scorll-hot-topic-wrapper.show-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.hot-topic-list .hot-topic-item {
  padding: 0.6rem 0;
  border-bottom: 1px #d1d1d1 dashed;
  zoom: 1;
  display: flex;
}
.hot-topic-list .hot-topic-item{
  padding: 0.3rem;
  background-color: #fff;;
  border-radius: 5px;
  box-sizing: border-box;
  border:0;
  margin-bottom: 10px;
  transition: background-color 0.2s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.hot-topic-list .hot-topic-item:last-child{
  margin-bottom: 0.6rem;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content {
  flex: 1;
  margin-left: 0.43333rem;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content-media {
  position: relative;
  max-width: 400px;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content img, 
.hot-topic-list .hot-topic-item .hot-topic-item-content .hot-topic-item-content-media video{
  width: 100%;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content-media {
  margin-top: 0.2rem;
}
.hot-topic-item-content-media .video-play{
  background-image: url(https://res.variflight.com/news_carnoc/hot/list/2025/ca/images/icons/play_1.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-size: 100% 100%;
}
.hot-topic-list .hot-topic-item .hot-topic-item-picture{
  width: 1.066666rem;
  height: 1.066666rem;
  border-radius: 50%;
  padding: 0;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.hot-topic-list .hot-topic-item .hot-topic-item-picture img{
  width: 100%;
  height: 100%;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content{
  margin-left: 15px;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content .hot-topic-item-content-text .user_words {
  font-style: initial;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content .hot-topic-item-content-text h5 {
  display: inline-block;
  font-size: 0.36rem;
  color: #081c7f;
  font-weight: normal;
}
.hot-topic-list .hot-topic-item .hot-topic-item-content .hot-topic-item-content-text{
  color: #333;
  font-size: 0.34rem;
  line-height: 1.8;
}
.hot-topic-list .hot-topic-item-tags{
  display: none;
}



/* ----------------- ui-select ----------------- */
.ui-select {
  position: relative;
  width: 240px;
  font-size: 14px;
  color: #606266;
}
.ui-select__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ui-select__trigger {
  height: 32px;
  line-height: 32px;
  padding: 0 30px 0 10px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
}

.ui-select__trigger:hover {
  border-color: #c0c4cc;
}

.ui-select__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #909399;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.ui-select__arrow.open {
  transform: translateY(-50%) rotate(180deg);
}

.ui-select__dropdown {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  max-height: 200px;          /* 下拉最大高度 */
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  z-index: 1000;
}

.ui-select__option {
  height: 34px;              /* option 固定高度 */
  line-height: 34px;
  padding: 0 20px;
  cursor: pointer;
  white-space: nowrap;
}

.ui-select__option:hover {
  background-color: #f5f7fa;
}

.ui-select__option.selected {
  color: #409eff;
  font-weight: 500;
  background-color: #ecf5ff;
}
/* ----------------- ui-select end ----------------- */


/* ----------------- media-card start ------------------- */
.media-card{
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.media-card-picture{
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.media-card .media-card-picture .media-picture-wrap{
  width: 100%;
  display: block;
  height: 100%;
  background-color: #eee;;
}
.media-card .media-card-picture img{
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: all 0.4s ease;
}
.media-card:hover .media-card-picture img{
  transform: scale(1.1);
}
.media-card .media-card-content{
  padding: 0 0.3rem 0.3rem;
}
.media-card .media-card-content .media-card-top{
  justify-content: space-between;
  margin-top: 0.2rem;
  align-items: center;
}
.media-card .media-card-content .media-card-title{
  font-size: 0.4rem;
  color: #333333;
}
.media-card .media-card-content .media-duration {
  font-size: 0.3rem;
  color: #FFFCF8;
  margin-top: 0.06rem;
}
.media-card .media-card-content .media-desc{
  font-size: 0.34rem;
}
.media-card .media-card-content .media-tags{
  margin-top: 0.3rem;
  align-items: center;
  gap: 0.2rem
}
.media-card .media-card-content .media-tags{
  font-size: 0.3rem;
}
.media-card .media-card-content .media-tags .media-tag-company {
  color: #7D7C7C;
}
.media-card .media-card-content .media-tags .media-tag-award {
  color: #D2AA6E;
  margin-left: 0.6rem;
}
@media (min-width: 768px) {
  .media-card .media-card-content .media-duration {
    font-size: 0.28rem;
    margin-top: 0.01rem;
  }
  .media-card .media-card-content  .media-desc{
    font-size: 0.36rem;
  }
}
@media (min-width: 992px) {
  .media-card .media-card-content .media-card-title{
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .media-card .media-card-content .media-duration {
    font-size: 14px;
  }
  .media-card .media-card-content  .media-desc{
    font-size: 15px;
  }
  .media-card .media-card-content .media-tags{
    font-size: 14px;
  }
}
/* media-card--title-bottom 文字固定在底部 */
.media-card--title-bottom .media-card-content{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
}
.media-card--title-bottom .media-card-content .media-card-title{
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 水平 */
.media-card--horizontal {
  display: flex;
  align-items: flex-start;
  gap: 0.75em; /* 图片与文字间距，可调 */
}
.media-card--horizontal .media-card-picture{
  width: 2.778rem;
  flex-shrink: 0;        /* 关键：禁止被压缩 */
}
.media-card--horizontal .media-card-content{
  flex: 1;              /* 占用剩余宽度 */
  min-width: 0;         /* 关键：防止文字撑爆布局 */
}
.media-card--horizontal .media-card-content .media-card-title{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-card--horizontal .media-card-content .media-card-top{
  margin-top: 0;
}
.media-card--horizontal .media-card-content .media-desc{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ------------- new-card --------------- */
.news-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.news-card .card-header {
  background: linear-gradient(135deg, #c94445 0%, #b83838 100%);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-card .title-icon {
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
}
.news-card .globe-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  background: white;
  transform: translateY(-50%);
}
.news-card .title-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -2px;
  bottom: -2px;
  width: 2px;
  background: white;
  transform: translateX(-50%);
}

.news-card .card-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.news-card .news-list {
  padding: 0;
}

.news-card .news-item {
  display: block;
  text-decoration: none;
  padding: 18px 20px;
  border-bottom: 1px dashed #e0e0e0;
  cursor: pointer;
  transition: background-color 0.2s;
}

.news-card .news-item:hover {
  background-color: #f9f9f9;
}

.news-card .news-item:last-child {
  border-bottom: none;
}

.news-card .news-title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.news-card .bullet {
  color: #c94445;
  font-size: 15px;
  margin-top: -1px;
  flex-shrink: 0;
}

.news-card .news-title h3 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  
}

.news-card .news-tags {
  color: #666;
  font-size: 14px;
  margin-left: 18px;
}
.news-card .news-tags span {
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .news-card .title-icon{
    width: 0.5rem;
    height: 0.5rem;
  }
  .news-card .card-header h2{
    font-size: 0.42rem;
  }
  .news-card .card-header{
    padding: 0.3rem;
  }
  .news-card .news-item{
    padding: 0.3rem;
  }
}


/* ------------   置顶按钮 start ------------   */
.scroll-to-top{
  position: fixed;
  bottom: 0.3rem;
  right: 0.3rem;
}
.scroll-to-top img{
  width: 38px;
}


/*  ------------  直播 start ------------ */
.live .live-container .live-wrapper{
  box-sizing: border-box;
  border-left: 2px solid #120893;
  padding-left: 19px;
}
.live .live-container .live-item {
  margin: 20px 0 0;
}
.live .live-container .live-item  .live-item-date{
  font-size: 20px;
  color: #120893;
  font-weight: bold;
  position: relative;
  line-height: 11px;
}
.live .live-container .live-item  .live-item-date:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: -25px;
  top: 0;
  background: #120893;
}
.live .live-container .live-item  .live-item-content {
  box-sizing: border-box;
  margin-top: 16px;
  font-size: 20px;
  color: #333;
  background: #f6f4f4;
  padding: 10px 10px 10px 10px;
}
.live .live-container .live-item  .live-item-content  .live-content {
  font-size: 16px;
  line-height: 28px;
}
.live .live-container .live-item  .live-content-info .live-title{
  font-size: 16px;
  line-height: 1.5;
  color: #120893;
}
.live .live-container .live-item  .live-content-info .live-description{
  margin-top: 5px;
  color: #666;
  text-align: justify;
  line-height: 1.5;
}
.live .live-container .live-item .live-media{
  position: relative;
  margin-top: 15px;
}
.live .live-container .live-item .live-media picture{
  position: relative;
  display: inline-block;
}
.live .live-container .live-item .live-media img, 
.live .live-container .live-item .live-media video {
  max-width: 100%;
  cursor: pointer;
  display: block;
}
.live .live-container .live-item .image-gallery{
  position: relative;
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.live .live-container .live-item .image-gallery .gallery-item {
  width: calc((100% - 20px) / 3);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.live .load-more-container{
  cursor: pointer;
}
.live .load-more-container, .live .no-more-data {
  margin: 10px 0 10px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.live .no-more-message, .live .load-more-div {
  color: #666;
  font-size: 14px;
}
/* ------------  直播样式 end   ------------ */

/* ------------   面包屑 ------------   */

.breadcrumb {
  font-size: 14px;
  line-height: 1.5;
}
.breadcrumb:before, .breadcrumb:after {
  display: table;
  content: "";
}
.breadcrumb .breadcrumb-item {
  float: left;
  display: inline-flex;
  align-items: center;
  color: #8B8C97;
}
.breadcrumb .breadcrumb-item a {
  /* text-decoration: none; */
  color: #8B8C97;
  cursor: pointer;
  text-decoration: underline;
}
.breadcrumb .el-icon {
  height: 1em;
  width: 1em;
  line-height: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  fill: #8B8C97;
}
.breadcrumb .breadcrumb__separator{
  margin: 0 5px;
}
.breadcrumb .breadcrumb__separator.icon {
  margin: 0 6px;
  font-weight: 400;
}
.breadcrumb .breadcrumb__separator.el-icon svg {
    vertical-align: middle;
}
.breadcrumb .el-icon svg {
  height: 1em;
  width: 1em;
}
.breadcrumb:after {
  clear: both;
}

