* {
  margin: 0;
  padding: 0;
  font-size: 0.2rem;
  box-sizing: border-box;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsistwoline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsisthreeline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ellipsisfourline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ellipsisfiveline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

body {
  background: linear-gradient(rgba(255, 244, 236, 1), rgba(245, 245, 245, 1));
}
.container {
  max-width: 19.2rem;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
}
.desc {
  width: 100%;
  height: 6rem;
  /* background: url('../images/top-bg.png') no-repeat center top; */
   background: url('https://img6.eol.cn/e_images/gk/2026/jnc19.png') no-repeat center top;
  background-size: 100% 100%;
}
.section {
  width: 15.5rem;
  margin: 0 auto;
}
.intro-card {
  padding: 0.43rem 0.4rem 0.5rem;
  width: 100%;
  letter-spacing: 0.01rem;
  background: url('../images/desc-bg.png') no-repeat center top;
  background-size: 100% 100%;
  font-weight: 450;
}
.intro-card p {
  color: rgb(54, 54, 54);
  line-height: 0.5rem;
  font-size: 0.28rem;
  text-indent: 0.56rem;
}
.tabs {
  width: 100%;
  margin-top: 0.58rem;
  position: relative;
  display: flex;
}
.expend-icon{
  position: absolute;
  top: 0;
  z-index: 9;
  padding: 0.28rem 0.12rem 0.2rem;
  cursor: pointer;
  background: #fdf4ef;
}
.expend-icon img{
  width: 0.24rem;
  height: 0.24rem;
}
.expend-left-icon{
  left: 0;
}
.expend-left-icon img{
  transform: scaleX(-1);
}
.expend-right-icon{
  right: 0;
}

.tabs-box {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
.tabs-box::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.tab {
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  padding: 0.18rem 0.6rem 0.28rem;
  border-radius: 0.2rem 0.2rem 0 0;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 0.28rem;
  color: rgb(40, 38, 38);
  position: relative;
}
.tab::before {
  content: attr(data-text);
  font-size: 0.36rem;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  display: block;
}
.tab.active-tab {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  font-size: 0.36rem;
}
.tab.active-tab::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.2rem);
  height: 2px;
  background: rgb(255, 249, 243);
}

.loading-content{
  position: relative;
}
.loading-spinner{
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  padding-top: 5rem;
}
.loading {
  width: 0.1rem;
  height: 0.25rem;
  background-color: #f60;
  float: left;
  margin: 0 0.03rem;
  animation: loading linear 1s infinite;
  -webkit-animation: loading linear 1s infinite;
}

.loading:nth-child(1) {
  animation-delay: 0s;
}
.loading:nth-child(2) {
  animation-delay: 0.15s;
}
.loading:nth-child(3) {
  animation-delay: 0.3s;
}
.loading:nth-child(4) {
  animation-delay: 0.45s;
}
.loading:nth-child(5) {
  animation-delay: 0.6s;
}
@keyframes loading {
  0%,
  60%,
  100% {
    transform: scale(1);
  }
  30% {
    transform: scaleY(3);
  }
}

.info-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2.23rem;
  border: 2px solid rgba(255, 215, 185, 1);
  border-top: 0.2rem solid rgba(255, 123, 61, 1);
  border-radius: 0.1rem 0.1rem 0 0;
  margin-top: -0.18rem;
  position: relative;
  z-index: 1;
  background: #fff;
}
.info-card {
  flex: 1;
  height: 2.03rem;
  padding: 0 0 0 0.78rem;
  border-radius: 0.12rem;
  text-align: center;
  display: flex;
  align-items: center;
}
.info-first-card {
  padding: 0 0 0 0.54rem;
}

.divider {
  width: 2px;
  height: 1.6rem;
  background-color: rgba(255, 215, 185, 1);
}
.info-card .icon {
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.4rem;
}

.info-card .label {
  color: rgba(40, 38, 38, 1);
  font-size: 0.28rem;
  font-weight: 500;
  text-align: left;
  line-height: 1;
}
.info-card .value {
  color: rgba(255, 123, 61, 1);
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  margin-top: 0.12rem;
}
.play-icon {
  width: 1rem;
  height: 1rem;
}
.play-icon-small {
  width: 0.6rem;
  height: 0.6rem;
}
.content-grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.59rem;
}
.content-card {
  width: 7.52rem;
  height: 6.22rem;
  background: white;
  border-radius: 0.12rem;
  border: 0.02rem solid rgba(255, 215, 185, 1);
}
.content-card-sub{
  height: auto !important;
}
.content-card-big{
  width: 100%;
  height: auto;
  margin-top: 0.59rem;
}
.content-card .content-card-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.14rem 0 0.32rem;
  height: 1rem;
  background: rgba(255, 215, 185, 0.5);
}
.content-card .content-card-header-sub {
  justify-content: flex-start;
}
.content-card .content-card-header h3 {
  color: rgba(25, 25, 25, 1);
  font-size: 0.32rem;
}
.content-card .content-card-header .header-desc {
  width: 5.44rem;
  background: linear-gradient(rgba(255, 80, 26, 1), rgba(255, 127, 64, 1));
  color: #fff;
  border-radius: 0.12rem;
  transform: skewX(-10deg);
  height: 0.42rem;
  overflow: hidden;
  position: relative;
}
.header-desc-scroll{
  width: 5.44rem;
  padding: 0rem 0.12rem;
}

.content-card .content-card-header .header-desc-sub {
  background: rgba(255, 211, 190, 1);
  border-radius: 0.14rem;
  padding: 0.04rem 0.37rem;
  font-size: 0.18rem;
  color: rgba(101, 101, 101, 1);
  font-style: italic;
  margin-left: 0.3rem;
}

.content-header-adjust{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.42rem;
  transform: skewX(10deg);
}
.content-heade-left{
  display: flex;
  align-items: center;
}
.header-desc .icon-paiming{
  width: 0.26rem;
  height: 0.24rem;
  margin-right: 0.23rem;
}
.header-desc .sort-title{
  font-size: 0.2rem;
  width: 3.7rem;
}
.header-desc .sort-name{
  font-size: 0.24rem;
}
.header-desc .icon-zhankai-white{
  width: 0.2rem;
  height: 0.2rem;
}
.content-card .content-card-box{
  padding: 0.39rem 0.14rem 0 0.1rem;
}
.content-card-box .card-box-item{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.card-box-item-title{
  width: 0.96rem;
  background: #FFD7B9;
  border-radius: 0.06rem;
  height: 0.29rem;
  color: rgba(255, 108, 0, 1);
  border-radius: 0.06rem;
  text-align: center;
}
.card-box-item-desc{
  width: calc(100% - 1.04rem);
  font-size: 0.2rem;
  color: rgba(101, 101, 101, 1);
  line-height: 0.4rem;
}
.card-box-item-4{
  height: 1.6rem;
  margin-bottom: 0.1rem;
}
.card-box-item-5{
  height: 2rem;
  margin-bottom: 0.1rem;
}

.chart-card {
  width: 7.52rem;
  background: white;
  border-radius: 0.12rem;
  padding: 0.24rem;
  box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.06);
}

.colleges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.2rem;
  padding: 0.42rem 0.5rem 0.4rem;
}

.college-card {
  border-radius: 0.06rem;
  padding: 0.1rem 0.01rem 0.67rem;
  text-align: center;
  width: 1.92rem;
  border: 1px solid #FFD3BE;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}

.college-card:hover {
  transform: scale(1.1);
}
.college-logo {
  width: 0.6rem;
  height: 0.6rem;
  background: #eee;
  border-radius: 50%;
  margin: 0 auto 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.12rem;
}
.college-name {
  font-size: 0.18rem;
  /* color: rgba(25, 25, 25, 1); */
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500;
  padding: 0 0.07rem;
}
.view-more {
  text-align: center;
  margin-top: 0.2rem;
  padding-bottom: 0.4rem;
}
.view-more a {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
}
.more-icon {
  width: 0.18rem;
  height: 0.18rem;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.43rem 0.73rem;
  padding: 0.67rem 0.74rem 0.2rem;
}
.video-card {
  cursor: pointer;
  border-radius: 0.08rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.video-card:hover {
  transform: scale(1.1);
}
.video-thumb {
  width: 4.12rem;
  height: 2.16rem;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 0.12rem;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.68rem;
  height: 0.68rem;
}
.video-bg-img{
  width: 100%;
  height: 100%;
}
.video-title {
  margin-top: 0.22rem;
  font-size: 0.24rem;
  color: rgba(101, 101, 101, 1);
}
.footer-banner {
  width: 100%;
  margin: 0.32rem 0 0.2rem;
  display: block;
}
.footer-banner img {
  width: 100%;
}
.footer {
  /* background: #ff6c00; 剑南春后替换*/
  background: #3e83d3;
  color: white;
  padding: 0.25rem;
  text-align: center;
  font-size: 0.14rem;
}
.desc-video-placeholder {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0.3rem auto;
}
.desc-video-no{
  justify-content: space-between;
}
.desc-video-main {
  width: 6.72rem;
  height: 3.32rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 0.12rem;
  overflow: hidden;
}
.track {
  display: flex;
  width: max-content;
  cursor: pointer;
}
.video-desc{
  position: relative;
  flex-shrink: 0;
}
.track .video-desc .video-img{
  width: 6.72rem;
  height: 3.32rem;
}

/* 👇 核心动画 */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 3张的宽度 */
  }
}

.desc-video-small {
  width: 4.2rem;
  height: 3.32rem;
  background: url('../images/card-bg-no.png') no-repeat center center;
  background-size: 100% 100%;
  border-radius: 0.12rem;
}
.desc-video-row{
  width: 7.52rem;
  height: 3.32rem;
  background: url('../images/card-bg-no.png') no-repeat center center;
  background-size: 100% 100%;
  border-radius: 0.12rem;
}
.desc-head {
  display: flex;
  align-items: center;
  padding: 0.21rem 0.31rem;
}
.desc-content {
  margin-top: 0.48rem;
}
.desc-content .desc-icon {
  width: 0.22rem;
  height: 0.18rem;
  margin-right: 0.19rem;
}
.desc-content li {
  padding: 0 0.32rem;
  list-style: none;
  font-size: 0.24rem;
  color: rgba(25, 25, 25, 1);
  line-height: 0.4rem;
}
.desc-fx {
  padding: 0 0.32rem;
  color: rgba(25, 25, 25, 1);
  line-height: 0.4rem;
  display: flex;
  align-items: baseline;
}
.desc-fangxiang{
  font-size: 0.24rem;
}
.video-small-icon {
  width: 0.3rem;
  height: 0.3rem;
  margin-right: 0.1rem;
}
.video-small-text {
  width: 1.31rem;
  height: 0.3rem;
}
.satisfaction-grid {
  padding: 0.42rem 0.32rem 0;
}
.satisfaction-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}
.satisfaction-lable{
  width: 1.22rem;
  font-size: 0.2rem;
  color: rgba(25, 25, 25, 1);
}
.satisfaction-score{
  color: rgba(255, 108, 0, 1);
  font-size: 0.2rem;
  width: 0.5rem;
}
.satisfaction-start {
  display: flex;
  align-items: center;
  height: 0.17rem;
}
.satisfaction-start img{
  width: 0.17rem;
  height: 0.17rem;
  margin-right: 0.05rem;
}
.satisfaction-num{
  margin-left: 0.2rem;
  color: rgba(101, 101, 101, 1);
  font-size: 0.18rem;
}
.radar-container {
  text-align: center;
  width: 4.4rem;
  height: 2.8rem;
  margin: 0.24rem auto 0;
}
.pie-chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.1rem 0 0.13rem;
}
.pie-chart {
  width: 100%;
  height: 1.8rem;
}
.pie-inner {
  width: 0.8rem;
  height: 0.8rem;
  background: white;
  border-radius: 50%;
}
.pie-legend {
  display: flex;
  margin-top: 0.1rem;
  
}
.pie-legend-item {
  margin: 0 0.14rem;
  color: rgba(101, 101, 101, 1);
  font-size: 0.2rem;
  display: flex;
  align-items: center;
}
.gender-icon,
.subject-icon {
  width: 0.2rem;
  height: 0.26rem;
  margin-right: 0.14rem;
  vertical-align: middle;
}
.college-type {
  min-height: 0.85rem;
  margin: 0.02rem 0 0.14rem;
  display: flex;
  flex-wrap: wrap;
}
.college-type-tag{
  padding: 0 0.07rem;
  height: 0.2rem;
  color: rgba(25, 25, 25, 1);
  font-size: 0.18rem;
  background: rgba(255, 211, 190, 1);
  border-radius: 0.2rem;
  min-width: 0.5rem;
  line-height: 0.2rem;
  margin: 0.14rem 0 0 0.07rem;
}


.college-tag {
  width: 1.38rem;
  height: 0.49rem;
  margin: 0 auto;
  background: rgba(255, 108, 0, 1);
  border-radius: 0.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 0.04rem;
  left: 50%;
  transform: translateX(-50%);
}
.college-tag-name{
  font-size: 0.18rem;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
}
.college-tag-name img{
  width: 0.07rem;
  height: 0.13rem;
  margin-left: 0.04rem;
}
.college-tag-icon{
  width: 1.36rem;
  height: 0.26rem;
  border-radius: 0.12rem;
  background: #FFF9F2;
  margin-top: 0.02rem;
}
.college-tag-icon img{
  width: 0.13rem;
  height: 0.17rem;
}
.video-play-big{
  width: 0.87rem;
  height: 0.87rem;
}
.video-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
.video-modal-content{
  width: 8.16rem;
  height: 4.85rem;
  background: #000;
  border-radius: 0.1rem;
  padding: 0.24rem;
  position: relative;
}
.video-modal-close{
  position: absolute;
  top: 0.04rem;
  right: 0.1rem;
  cursor: pointer;
  color: #fff;
  font-size: 0.2rem;
}
.video-modal-content video{
  width: 100%;
  height: 100%;
}