@charset "UTF-8";

.pc,
.wap {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .swiDots {
    display: none;
  }

  .pc {
    display: block;
  }

  .wap {
    display: none;
  }

  .common_title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 0.7rem 0 0.35rem 0.94rem;
    box-sizing: border-box;
  }

  .common_title .title {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .common_title .title::before {
    content: "";
    width: 0.76rem;
    height: 0.02rem;
    background: #545454;
    position: absolute;
    top: auto;
    left: 0;
  }

  .common_title .title>span {
    /* font-family: FZCHSJW--GB1, FZCHSJW--GB1; */
    font-weight: bold;
    font-size: 0.28rem;
    color: #413e3e;
    text-align: left;
    display: block;
  }

  .common_title .title>p {
   font-family: Georgia; 
    font-weight: 500;
    font-size: 0.48rem;
    color: #e9e9ee;
    text-align: left;
    /* 字体向右倾斜 */
    font-style: oblique; 
    transform: skewX(-20deg);
    position: absolute;
    top: calc(50% - 0.46rem);
    left: 1.2rem;
  }

  .common_title .more {
    width: 1.3rem;
    height: 0.38rem;
    border-radius: 0.23rem;
    border: 0.01rem solid #b8b5b5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.14rem;
    color: #000000;
    line-height: 0.4rem;
    cursor: pointer;
    position: absolute;
    top: auto;
    right: 0.95rem;
  }

  .common_title .more>img {
    width: 0.12rem;
    height: 0.12rem;
    margin-left: 0.05rem;
  }

  /* 新闻资讯 */
  .main_news {
    width: 100%;
    /* height: 900px; */
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 0.4rem;
  }

  .news {
    width: 90%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f8f8f8;
  }

  .news_left {
    width: 50%;
    position: relative;
    border-right: 1px solid #f8f8f8;
    flex: 1;
  }

  .news_left:hover,
  .news_right:hover {
    cursor: pointer;
  }

  .news_swiper {
    width: 96%;
    height: 100%;
    overflow: hidden;
    margin-left: 0 !important;
  }

.news_left_img {
    width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.2s ease;
    will-change: transform;
    display: block;
    max-width: 100%;
    /* 可选1：防止图片加载时闪烁/错位，提升加载体验 */
    backface-visibility: hidden;
    /* 可选2：轻微圆角，让图片边角不生硬，更美观（值可自定义） */
    border-radius: 4px;
}
.news_left_img:hover {
    transform: scale(1.03);
}

  .news_left_title {
    width: 100%;
    font-size: 0.26rem;    font-weight: bold;

    color: #333;
    line-height: 0.3rem;
    text-align: left;
    margin-top: 0.1rem;
    letter-spacing: 0.01rem; /* 新增字间距属性，值可按需调整 */

  }

  .news_left_txt {
    width: 100%;
    font-family: MicrosoftYaHeiUI;
    font-size: 0.16rem;
    color: #595353;
    line-height: 0.25rem;
    text-align: left;
    margin-top: 0.1rem;
  }

  .news_swiper .swiper-pagination-bullet-active {
    width: 0.66rem !important;
    height: 0.07rem !important;
    background: #910000 !important;
    border: 0.05rem solid #910000 !important;
    border-radius: 0 !important;
    opacity: 1 !important;
  }

  .news_swiper .swiper-pagination-bullet {
    width: 0.64rem !important;
    height: 0.07rem !important;
    background: #cccccc;
    border: 0.05rem solid #cccccc;
    border-radius: 0 !important;
    display: inline-block;
    opacity: 1 !important;
  }

  .news_swiper .swiper-pagination-bullets {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 5% !important;
  }

  .news_right {
    width: 50%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .news_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100%;
    gap: 10px;
  }

  .news_item {
    width: 48%;
    display: flex;
    flex-direction: column;
    height: 1.21rem;
    gap: 0.1rem;
    padding: 0.2rem 0.45rem 0 0.4rem;
    box-sizing: border-box;
    position: relative;
  }

  .news_item::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0.28rem;
    width: 0.09rem;
    height: 0.09rem;
    background-color: #ccc;
  }

 .news_item.highlighted {
    background: url(../img/new_item.jpg) no-repeat;
    background-size: 100% 100%;
    color: #FFFFFF !important;
    /* 新增：强制子元素继承颜色 */
    color: #fff !important;
}
.news_item.highlighted *,.news_item.highlighted a {
    color: #fff !important;
}

  .news_item.highlighted::before {
    background-color: #fff;
  }

  .news_item_title {
    font-size: 0.18rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #401212;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news_item.highlighted .news_item_title {
 
    font-weight: 500;
       color: #fff;
  }
.news_item.highlighted .news_item_title a:hover{color: #fff;}
  .news_item_date {
    font-size: 0.16rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #981313;
  }

  .news_item.highlighted .news_item_date {
    color: #fff;
  }

  .report {
    width: 100%;
    /* height: 618px; */
    background: url(../img/report_bg.png) no-repeat;
    background-size: 100% auto;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .report-swiper {
    width: 90%;
    display: flex;
    position: relative;
    overflow: hidden;
    flex: 1;
    padding-bottom: 1.5rem;
    margin: 0 auto;
  }

  .report-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    align-items: flex-end;
    /* height: 306px; */
  }

.report-swiper .swiper-slide .report_item {
    width: 24%;
    height: 300px; /* 只改这1行 */
    position: relative;
    overflow: hidden; /* 只加这1行 */
}

.report-swiper .swiper-slide .report_img {
    width: 100%;
    height: 100%; /* 只改这1行 */
    object-fit: cover;
    transition: transform 1.2s;
    cursor: pointer;
}

  .report-swiper .swiper-slide .report_img:hover {
    transform: scale(1.1);
  }

  .report-swiper .swiper-slide .report_text {
    width: 100%;
    background: rgba(5, 0, 4, 0.51);
    display: flex;
    flex-direction: column;
    padding: 0.05rem 0 0.1rem 0.16rem;
    position: absolute;
    bottom: 1px;
    right: 0;
    z-index: 9;
  }

  .report-swiper .swiper-slide .report_text span {
    font-size: 0.18rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.05rem;
  }

  .report-swiper .swiper-slide .report_text div {
    width: 90%;
    font-size: 0.13rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
    line-height: 0.19rem;
    white-space: nowrap;
    /* 强制单行显示 */
    overflow: hidden;
    /* 隐藏超出部分 */
    text-overflow: ellipsis;
    /* 显示省略号 */
  }

  .report-swiper .swiper-pagination-bullet-active {
    width: 0.66rem !important;
    height: 0.07rem !important;
    background: #910000 !important;
    border: 0.05rem solid #910000 !important;
    border-radius: 0 !important;
    opacity: 1 !important;
  }

  .report-swiper .swiper-pagination-bullet {
    width: 0.64rem !important;
    height: 0.07rem !important;
    background: #cccccc;
    border: 0.05rem solid #cccccc;
    border-radius: 0 !important;
    display: inline-block;
    opacity: 1 !important;
    margin: 0 0.05rem;
  }

  .report-swiper .swiper-pagination-bullets {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 10% !important;
  }

  /* 视听文创 */
  .audio_visual {
    width: 100%;
    /* height: 6.18rem; */
    position: relative;
  }

  .audio_visual .view {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .audio_visual .view .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .audio_visual .audio_visual_img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .audio_visual .audio_visual_title {
    width: 1.1rem;
    height: 1.84rem;
    background: url(../img/audio_visual_title.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: 2;
  }

  .audio_visual .play {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    width: 0.93rem;
    height: 0.93rem;
    background: url(../img/paly_icon.png) no-repeat;
    background-size: 100% 100%;
    z-index: 2;
  }

  .audio_visual .audio_swiper {
    width: 32%;
    /* width: 279px; */
    height: 1.39rem;
    display: flex;
    position: absolute;
    bottom: 10%;
    overflow: hidden;
  }

  .audio_swiper {
    width: 100%;
    height: 1.39rem;
    position: relative;
  }

  .audio_swiper .swiper-slide {
    /* width: 300px; */
    height: 1.59rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
  }

  .audio_swiper .swiper-slide img {
    width: 100%;
    height: 90%;
    object-fit: cover;
  }

  .audio_swiper .swiper-slide-active {}

  .audio_swiper .swiper-slide-active>img {
    width: 2.79rem;
    height: 1.59rem;
    z-index: 2;
    position: relative;
  }

  /* 校园生活 */
  .live {
    width: 100%;
    height: auto;
    background: url(../img/live_bg.jpg) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 0 0.7rem;
    box-sizing: border-box;
  }

  .live .live_box {
    width: 87%;
    height: 7.63rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .info {
    width: 40%;
    height: 100%;
    background: rgba(138, 29, 24, .84);
    position: relative;
  }

  .live .live_box .info .live_title{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: .8rem 0 0 .9rem;
  }
  .live .live_box .info .live_title .line{
    width: .01rem;
    height: 1.5rem;
    background: #FFFFFF;
    opacity: 0.27;
    margin-right: .2rem;
  }
  .live .live_box .info .live_title p {
    font-size: 0.36rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.05rem;
    writing-mode: vertical-rl;
    /* 垂直方向文字间距 */
    letter-spacing: 0.05rem;
    margin-right: .1rem;
  }

  .live .live_box .info .live_title span {
    font-size: 0.18rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #c9c5c5;
    writing-mode: vertical-rl;
    /* 垂直方向文字间距 */
    letter-spacing: 0.01rem;
  }

  .live .live_box .info .go_more {
    height: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0.4rem;
    right: 0.4rem;
  }

  .live .live_box .info .go_more span {
    font-size: 0.16rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
  }
.live .live_box .info .go_more span:hover{ color: #981313;}
  .live .live_box .info .go_more img {
    width: 0.22rem;
    height: 0.08rem;
    margin-left: 0.2rem;
  }

  .live .live_box .vr {
    width: 60%;
    height: 100%;
    background: url(http://www.cswcxyedu.cn/static/img/VR.jpg) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .vr .box {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .vr .box .vr_plays {
    width: 0.93rem;
    height: 0.93rem;
    background: url(../img/paly_icon.png) no-repeat;
    background-size: 100% 100%;
  }

  .live .live_box .vr .box .vr_text {
    position: absolute;
    bottom: 0.35rem;
    left: 0.2rem;
    display: flex;
    padding: 0.2rem 0 0 0.2rem;
  }

  .live .live_box .vr .box .vr_text .vr_icon {
    width: 0.35rem;
    height: 0.26rem;
    margin-right: 0.2rem;
  }

  .live .live_box .vr .box .vr_text span {
    font-size: 0.2rem;
    font-family: PingFang SC;
    font-weight: bold;
    color: #ffffff;
  }

  .live .live_box .right {
    flex: 1;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .live .live_box .right .glad {
    width: 100%;
    height: 50%;
    background-size: 100% 100%;
    position: relative;
  }

  .live .live_box .right_down {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .right .learn {
    width: 50%;
    height: 100%;
    background-size: 100% 100%;
  
    position: relative;
  }

  .live .live_box .right .reside {
    width: 50%;
    height: 100%;
    background-size: 100% 100%;
    position: relative;
  }

  .live .live_box .right .txt {
    position: absolute;
    bottom: 35px;
    left: 40px;
    display: flex;
    font-size: 20px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #ffffff;
  }

  /* 校企合作 */
  .cooperation {
    width: 100%;
    padding: 0.53rem 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1;
  }

  .cooperation .cooperation_box {
    width: 87%;
    height: 7.63rem;
    background: url(../img/5325e133154709551db4170da54d143d.jpg) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4%;
    box-sizing: border-box;
  }

  .cooperation .cooperation_box .cooperation_left {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 5% 3% 0 0;
    box-sizing: border-box;
    position: relative;
  }

  .cooperation .cooperation_box .cooperation_left::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 0.02rem;
    height: 80%;
    background-color: #868686;
    opacity: 0.3;
  }

  .cooperation .cooperation_left .top {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cooperation .cooperation_left .top>img {
    width: 2.02rem;
    height: 0.96rem;
  }

  .cooperation .cooperation_left .top .more {
    height: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cooperation .cooperation_left .top .more span {
    font-size: 0.16rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
  }

  .cooperation .cooperation_left .top .more img {
    width: 0.22rem;
    height: 0.08rem;
    margin-left: 0.2rem;
  }

  .cooperation .cooperation_left .info {
    width: 100%;
    font-family: MicrosoftYaHeiUI;
    font-size: 0.16rem;
    color: #ffffff;
    line-height: 0.33rem;
    text-align: left;
    margin-top: 0.5rem;
  }

  .cooperation .cooperation_left .sl {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .cooperation .cooperation_left .sl .sl_title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 0.2rem;
  }

  .cooperation .cooperation_left .sl .sl_title p {
    font-size: 0.26rem;
    font-family: MicrosoftYaHeiUI;
    font-weight: 500;
    color: #ffffff;
    writing-mode: vertical-rl;
    margin-right: 0.05rem;
        letter-spacing: 0.05rem; /* 新增字间距属性，值可按需调整 */

  }

  .sl .sl_title span {
    font-size: 0.16rem;
    font-family: MicrosoftYaHeiUI;
    color: #e7e3e3;
    writing-mode: vertical-rl;
  }

  .sl .sl_list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .sl .sl_list .sl_item {
    width: 25%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sl .sl_list .sl_item:nth-child(1)>img {
    width: 1.69rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(2)>img {
    width: 1.45rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(3)>img {
    width: 1.45rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(4)>img {
    width: 1.45rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(5)>img {
    width: 1.47rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(6)>img {
    width: 1.6rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(7)>img {
    width: 1.25rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(8)>img {
    width: 1.45rem;
    height: auto;
  }

  .cooperation .cooperation_box .cooperation_right {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .cooperation .cooperation_box .cooperation_right .hz_img {
    width: 4.77rem;
    height: 3.17rem;
    background-size: 100% 100%;
  }

  .cooperation .cooperation_box .cooperation_right .hz_text {
    width: 4.77rem;
    font-size: 0.16rem;
    font-family: PingFang SC;
    color: #ffffff;
    line-height: 0.3rem;
    text-align: left;
    margin-top: 0.15rem;
  }

  .cooperation .cooperation_list {
    width: 87%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.4rem auto;
  }

  .cooperation .cooperation_list .cooperation_item {
    width: 23%;
    /* height: 506px; */
    border: 0.01rem solid #ede7e7;
    border-radius: 0.1rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-bottom: 0.6rem;
  }

  .cooperation_item .cooperation_img,
  .cooperation_item .cooperation_img>img {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s;
    cursor: pointer;
  }
  .cooperation_item .cooperation_img>img:hover{
      transform: scale(1.1);
  }

  .cooperation_item .cooperation_title {
    width: 92%;
    font-family: MicrosoftYaHeiUI;
    font-size: 0.18rem;
    color: #3f3e3e;
    line-height: 0.28rem;
    text-align: left;
    font-weight: 600;
    margin-top: 0.2rem;
  }

  .cooperation_item .cooperation_text {
    width: 92%;
    font-size: 0.14rem;
    color: #8f8f8f;
    line-height: 0.24rem;
    text-align: left;
    margin: 0.25rem 0;
  }

  .cooperation_item .cooperation_more {
    width: 0.43rem;
    height: 0.43rem;
    background: url(../img/cooperation_more.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 5%;
    bottom: 0.2rem;
  }

  /* 二级院部 */
  .college {
    width: 100%;
    /* height: 9.6rem; */
    background: url(../img/college_bg.jpg) no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 5% 0 2% 6.8%;
    box-sizing: border-box;
  }

  .college .college_title{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    top: 7%;
    right: 8%;
  }
  .college .college_title .line{
    width: .01rem;
    height: 1.92rem;
    background: #FFFFFF;
    opacity: 0.27;
    margin-right: .3rem;
  }
  .college .college_title p {
    font-size: 0.34rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.05rem;
    writing-mode: vertical-rl;
    /* 垂直方向文字间距 */
    letter-spacing: 0.05rem;
    margin-right: .1rem;
  }

  .college .college_title span {
    font-size: 0.18rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    writing-mode: vertical-rl;
    /* 垂直方向文字间距 */
    letter-spacing: 0.01rem;
  }

  .college_box {
    width: 75%;
    height: 5.17rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .college_box_left {
    width: 64%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .college_box_left>img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .college .college_box .college_info {
    flex: 1;
    width: 36%;
    height: 100%;
    padding: 5% 0 4% 5%;
    box-sizing: border-box;
    position: relative;
  }

  .college .college_box .college_info .college_name {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: bold;
    font-size: 0.25rem;
    color: #383838;
    line-height: 0.3rem;
    text-align: left;
    margin-bottom: 5%;
  }

  .college .college_box .college_info .college_text {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: 400;
    font-size: 0.16rem;
    color: #585858;
    line-height: 0.28rem;
    text-align: left;
    width: 85%;
  }

  .college .college_box .college_info .college_info_more {
    width: 1.1rem;
    height: 0.35rem;
    background: url(../img/college_more.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 10%;
    bottom: 10%;
    cursor: pointer;
  }

  .college .college_list {
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.4rem;
  }

  .college .college_list .college_item {
    width: 19%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
  }

  .college .college_list .college_item>img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .college .college_list .college_item .line {
    width: 0.02rem;
    height: 0.67rem;
    background-color: #ffc414;
    position: absolute;
    left: 10%;
    bottom: 0.1rem;
  }

  .college .college_list .college_item .college_item_name {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: 400;
    font-size: 0.16rem;
    color: #ffffff;
    line-height: 0.22rem;
    text-align: left;
    margin-top: 0.1rem;
  }

  /* 数据文创 */
  .digitization {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .digitization .digitization_bg {
    width: 100%;
    height: 80%;
  }

  .digitization .digitization_title{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    top: 10%;
    right: 9%;
  }
  .digitization .digitization_title .line{
    width: .01rem;
    height: 1.92rem;
    background: #8F251B;
    opacity: 0.27;
    margin-right: .3rem;
  }
  .digitization .digitization_title p {
    font-size: 0.34rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #8F251B;
    margin-bottom: 0.05rem;
    writing-mode: vertical-rl;
    /* 垂直方向文字间距 */
    letter-spacing: 0.05rem;
    margin-right: .1rem;
  }

  .digitization .digitization_title span {
    font-size: 0.18rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #8F251B;
    writing-mode: vertical-rl;
    /* 垂直方向文字间距 */
    letter-spacing: 0.01rem;
  }

  .digitization .digitization_list {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
  }

  .digitization .digitization_list .digitization_item {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .digitization .digitization_list .digitization_item>img {
    width: 0.75rem;
    height: auto;
    margin-right: 0.3rem;
  }

  .digitization .digitization_list .digitization_item:nth-child(2)>img {
    width: 0.58rem;
    height: auto;
  }

  .digitization .digitization_list .digitization_item:nth-child(3)>img {
    width: 0.7rem;
    height: auto;
  }

  .digitization .digitization_list .digitization_item:nth-child(4)>img {
    width: 0.8rem;
    height: auto;
  }

  .digitization .digitization_list .digitization_item .digitization_num {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: 400;
    font-size: 0.12rem;
    color: #8f251b;
    text-align: left;
  }

  .digitization .digitization_list .digitization_item .digitization_num>span {
    font-size: 0.7rem;
    line-height: 0.3rem;
    font-weight: 500;

  }

  .digitization .digitization_list .digitization_item .digitization_name {
    font-family: MicrosoftYaHeiUI;
    font-size: 0.16rem;
    color: #111111;
    line-height: 0.22rem;
    text-align: left;
  }

  /* 专题专栏 */
  .feature {
    width: 100%;
    /* height: 5.3rem; */
    background: url(../img/feature_bg.png) no-repeat;
    background-size: 100% auto;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 0.6rem;
  }

  .feature-swiper {
    width: 100%;
    /* height: 241px; */
    position: relative;
    perspective: 1000px;
    /* 添加透视效果 */
    margin-top: 5%;
  }

  .feature-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
  }

  .book-item {
    height: auto;
    position: relative;
  }

  .book-cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0.05rem;
    position: relative;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
      3px 0 10px rgba(0, 0, 0, 0.1) inset,
      -3px 0 10px rgba(255, 255, 255, 0.5) inset;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  /* 翻页按钮样式 */
  .book-swiper-button-prev,
  .book-swiper-button-next {
    width: 0.6rem;
    height: 0.6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .book-swiper-button-prev {
    left: 0.2rem;
    background-image: url("../img/left_icon.png");
  }

  .book-swiper-button-next {
    right: 0.2rem;
    background-image: url("../img/right_icon.png");
  }

  /* 视频弹窗样式 */
  .modal {
    display: none;
    /* 默认隐藏 */
    position: fixed;
    /* 固定定位 */
    z-index: 9999;
    /* 最上层 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* 允许滚动 */
    background-color: rgba(0, 0, 0, 0.8);
    /* 半透明黑色背景 */
  }

  .modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close {
    position: absolute;
    top: 9%;
    right: 17%;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
  }

  .video-container {
    position: relative;
    width: 12rem;
    height: 7rem;
    overflow: hidden;
  }

  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .pc {
    display: none;
  }

  .wap {
    display: block;
  }

  .common_title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 0.35rem 0 0.17rem 0.47rem;
    box-sizing: border-box;
  }

  .common_title .title {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .common_title .title::before {
    content: "";
    width: 0.38rem;
    height: 0.01rem;
    background: #545454;
    position: absolute;
    top: auto;
    left: 0;
  }

  .common_title .title>span {
    /* font-family: FZCHSJW--GB1, FZCHSJW--GB1; */
    font-weight: bold;
    font-size: 0.2rem;
    color: #545454;
    text-align: left;
    display: block;
  }

  .common_title .title>p {
    /* font-family: Georgia; */
    font-weight: 500;
    font-size: 0.26rem;
    color: #e9e9ee;
    text-align: left;
    /* 字体向右倾斜 */
    
    transform: skewX(-20deg);
    position: absolute;
    top: calc(50% - 0.26rem);
    left: 0.7rem;
  }

  .common_title .more {
    width: 0.8rem;
    height: 0.3rem;
    border-radius: 0.15rem;
    border: 0.01rem solid #080102;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.1rem;
    color: #000000;
    line-height: 0.2rem;
    cursor: pointer;
    position: absolute;
    top: auto;
    right: 0.25rem;
  }

  .common_title .more>img {
    width: 0.1rem;
    height: 0.1rem;
    margin-left: 0.05rem;
  }

  /* 新闻资讯 */
  .main_news {
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .news {
    width: 90%;
    display: flex;
    flex-direction: column;
    /* border-bottom: 1px solid #f8f8f8; */
    flex: 1;
  }

  .news_left {
    width: 100%;
    height: 100%;
    position: relative;
    /* border-right: 1px solid #f8f8f8; */
  }

  .news_left:hover,
  .news_right:hover {
    cursor: pointer;
  }

  .news_swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-left: 0 !important;
    padding-bottom: 0.4rem;
  }


.news_left_img {
    width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.2s ease;
    will-change: transform;
    display: block;
    max-width: 100%;
    /* 可选1：防止图片加载时闪烁/错位，提升加载体验 */
    backface-visibility: hidden;
    /* 可选2：轻微圆角，让图片边角不生硬，更美观（值可自定义） */
    border-radius: 4px;
}
.news_left_img:hover {
    transform: scale(1.03);
}

   .news_left_title {
    width: 100%;
    font-size: 0.26rem;  
  font-weight: bold;

    color: #333;
    line-height: 0.3rem;
    text-align: left;
    margin-top: 0.1rem;
    letter-spacing: 0.01rem; /* 新增字间距属性，值可按需调整 */

  }

  .news_left_txt {
    width: 100%;
    font-family: MicrosoftYaHeiUI;
    font-size: 0.16rem;
    color: #717171;
    line-height: 0.25rem;
    text-align: left;
    margin-top: 0.1rem;
  }

  .news_swiper .swiper-pagination-bullet-active {
    width: 0.4rem !important;
    height: 0.04 !important;
    background: #910000 !important;
    border: 0.04rem solid #910000 !important;
    border-radius: 0 !important;
    opacity: 1 !important;
  }

  .news_swiper .swiper-pagination-bullet {
    width: 0.4rem !important;
    height: 0.04 !important;
    background: #cccccc;
    border: 0.04rem solid #cccccc;
    border-radius: 0 !important;
    display: inline-block;
    opacity: 1 !important;
  }

  .news_swiper .swiper-pagination-bullets {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 0 !important;
  }

  .news_right {
    width: 100%;
    padding: 0.2rem 0;
    box-sizing: border-box;
  }

  .news_list {
    width: 100%;
    overflow: hidden;
  }

   .news_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 1.2rem;
    padding: 20px 70px 0 45px;
    box-sizing: border-box;
    position: relative;
    background: url(../img/new_item.jpg) no-repeat;
    background-size: 100% 100%;
  }

  .news_item::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 28px;
    width: 9px;
    height: 9px;
    /* background-color: #ccc; */
    background-color: #fff;
  }

  /* .news_item.highlighted {
      background: url(../img/new_item.jpg) no-repeat;
      background-size: 100% 100%;
  }
  .news_item.highlighted::before {
      background-color: #fff;
  } */
  .news_item_title {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    /* color: #401212; */
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.news_item_title a{color: #fff;}

  .news_item.highlighted .news_item_title {
    color: #fff;
    font-weight: 500;
  }

  .news_item_date {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    /* color: #666; */
    color: #fff;
  }

  .news_item.highlighted .news_item_date {
    color: #fff;
  }

  /* 学校报导 */
  .report {
    width: 100%;
    /* height: 618px; */
    background: url(../img/report_bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 0.4rem;
  }

  .report .common_title .title {
    width: 3.5rem;
  }

  .report-swiper {
    width: 90%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    flex: 1;
  }

  .report-swiper .swiper-slide {
    height: 90% !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    align-items: flex-end;
  }

  .report-swiper .swiper-slide .report_item {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1.2s;
    cursor: pointer;
  }

  .report-swiper .swiper-slide .report_img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0.5rem;
  }
  .report-swiper .swiper-slide .report_img>img:hover {
    transform: scale(1.1);
  }

  .report-swiper .swiper-slide .report_text {
    width: 100%;
    height: 0.6rem;
    background: rgba(5, 0, 4, 0.51);
    display: flex;
    flex-direction: column;
    padding: 0.05rem 0 0 0.16rem;
    position: absolute;
    bottom: 0.5rem;
    right: 0;
    z-index: 9;
  }

  .report-swiper .swiper-slide .report_text span {
    font-size: 0.16rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.05rem;
  }

  .report-swiper .swiper-slide .report_text div {
    font-size: 0.13rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
    line-height: 0.2rem;
    white-space: nowrap;
    /* 强制单行显示 */
    overflow: hidden;
    /* 隐藏超出部分 */
    text-overflow: ellipsis;
    /* 显示省略号 */
  }

  .report-swiper .swiper-pagination-bullet-active {
    width: 0.4rem !important;
    height: 0.04 !important;
    background: #910000 !important;
    border: 0.04rem solid #910000 !important;
    border-radius: 0 !important;
    opacity: 1 !important;
  }

  .report-swiper .swiper-pagination-bullet {
    width: 0.4rem !important;
    height: 0.04rem !important;
    background: #cccccc;
    border: 0.04rem solid #cccccc;
    border-radius: 0 !important;
    display: inline-block;
    opacity: 1 !important;
    margin: 0 0.05rem;
  }

  .report-swiper .swiper-pagination-bullets {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 0 !important;
  }

  /* 视听文创 */
  .audio_visual {
    width: 100%;
    padding-bottom: 0.2rem;
    /* height: 744px; */
    /* background: url(../img/audio_visual.png) no-repeat;
      background-size: 100% 100%; */
    /* margin-top: -113px; */
    position: relative;
    /* z-index: 1; */
  }

  .audio_visual .view {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .audio_visual .view .audio_visual_title {
    width: 0.7rem;
    height: 1rem;
    background: url(../img/audio_visual_title.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 8%;
    right: 3%;
    z-index: 2;
  }

  .audio_visual .view .play {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    width: 0.4rem;
    height: 0.4rem;
    background: url(../img/paly_icon.png) no-repeat;
    background-size: 100% 100%;
    z-index: 2;
  }

  .view .swiper-container {
    width: 100%;
    height: auto;
  }

  .preview {
    width: 100%;
    margin-top: 0.05rem;
    position: relative;
  }

  .preview .swiper-container {
    width: 98%;
    height: 0.82rem;
    margin: 0 auto;
  }

  .preview .swiper-slide {
    cursor: pointer;
  }

  .preview img {
    transform: scale(0.9);
  }

  .preview .active-nav img {
    border: 0.01rem solid #f00;
    transition: all 0.3s ease-in-out;
    /* 缩放 */
    transform: scale(1);
  }

  /* .preview  .swiper-slide-active img {
    border: .01rem solid #F00;
      transform: calc(1.1);
  } */
  /* 校园生活 */
  .live {
    width: 100%;
    height: auto;
    background: url(../img/live_bg.jpg) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0;
    box-sizing: border-box;
  }

  .live .live_box {
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .live .live_box .left {
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .info {
    width: 50%;
    height: 100%;
    background: rgba(138, 29, 24, .84);
    position: relative;
  }

  .live .live_box .info .live_title{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: .42rem 0 0 .49rem;
  }
  .live .live_box .info .live_title .line{
    width: .02rem;
    height: 1.18rem;
    background: #FFFFFF;
    opacity: 0.27;
    margin-right: .2rem;
  }
  .live .live_box .info .live_title p {
    font-size: 0.2rem;
    font-family: PingFang SC;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.05rem;
    writing-mode: vertical-rl;
    margin-right: .05rem;
    /* 垂直方向文字间距 */
    letter-spacing: 0.05rem;
  }

  .live .live_box .info .live_title span {
    font-size: 0.13rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
    writing-mode: vertical-rl;
  }

  .live .live_box .info .go_more {
    height: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
  }

  .live .live_box .info .go_more span {
    font-size: 0.16rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
  }

  .live .live_box .info .go_more img {
    width: 0.22rem;
    height: 0.08rem;
    margin-left: 0.2rem;
  }

  .live .live_box .vr {
    width: 50%;
    height: 100%;
    background: url(../img/vr.jpg) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .vr .box {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .vr .box .vr_play {
    width: 0.4rem;
    height: 0.4rem;
    background: url(../img/paly_icon.png) no-repeat;
    background-size: 100% 100%;
  }

  .live .live_box .vr .box .vr_text {
    position: absolute;
    bottom: 0.2rem;
    left: 0.2rem;
    display: flex;
    align-items: center;
    padding: 0.2rem 0 0 0.2rem;
  }

  .live .live_box .vr .box .vr_text .vr_icon {
    width: 0.2rem;
    height: 0.15rem;
    margin-right: 0.1rem;
  }

  .live .live_box .vr .box .vr_text span {
    font-size: 0.15rem;
    font-family: PingFang SC;
    /* font-weight: bold; */
    color: #ffffff;
  }

  .live .live_box .right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .live .live_box .right .glad {
    width: 100%;
    height: 2rem;
    background: url(../img/live_glad.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
  }

  .live .live_box .right_down {
    width: 100%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .live .live_box .right .learn {
    width: 50%;
    height: 100%;
    background: url(../img/live_learn.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
  }

  .live .live_box .right .reside {
    width: 50%;
    height: 100%;
    background: url(../img/live_reside.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
  }

  .live .live_box .right .txt {
    position: absolute;
    bottom: 0.2rem;
    left: 0.2rem;
    display: flex;
    font-size: 0.14rem;
    font-family: PingFang SC;
    /* font-weight: bold; */
    color: #ffffff;
  }

  /* 校企合作 */
  .cooperation {
    width: 100%;
    /* padding: 53px 0; */
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1;
  }

  .cooperation .cooperation_box {
    width: 100%;
    /* height: 763px; */
    background: url(../img/cooperation_bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4%;
    box-sizing: border-box;
  }

  .cooperation .cooperation_box .cooperation_left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 6% 0 0 0;
    box-sizing: border-box;
    position: relative;
  }

  .cooperation .cooperation_box .cooperation_left::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0.02rem;
    background-color: #fff;
    opacity: 0.3;
  }

  .cooperation .cooperation_left .top {
    width: 100%;
    height: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cooperation .cooperation_left .top>img {
    width: 1.1rem;
    height: 0.5rem;
  }

  .cooperation .cooperation_left .top .more {
    height: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cooperation .cooperation_left .top .more span {
    font-size: 0.14rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
  }

  .cooperation .cooperation_left .top .more img {
    width: 0.22rem;
    height: 0.08rem;
    margin-left: 0.1rem;
  }

  .cooperation .cooperation_left .info {
    width: 100%;
    font-family: MicrosoftYaHeiUI;
    font-size: 0.15rem;
    color: #ffffff;
    line-height: 0.3rem;
    text-align: left;
    margin-top: 0.3rem;
  }

  .cooperation .cooperation_left .sl {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 0.3rem;
  }

  .cooperation .cooperation_left .sl .sl_title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-right: 0.1rem;
  }

  .cooperation .cooperation_left .sl .sl_title p {
    font-size: 0.18rem;
    font-family: MicrosoftYaHeiUI;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.05rem;
  }

  .sl .sl_title span {
    font-size: 0.1rem;
    font-family: MicrosoftYaHeiUI;
    color: #ffffff;
  }

  .sl .sl_list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.1rem;
  }

  .sl .sl_list .sl_item {
    width: 25%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 弹性添加上下间隔 */
    margin: 0.1rem 0;
  }

  .sl .sl_list .sl_item:nth-child(1)>img {
    width: 1rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(2)>img {
    width: 1rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(3)>img {
    width: 0.8rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(4)>img {
    width: 0.8rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(5)>img {
    width: 1rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(6)>img {
    width: 1rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(7)>img {
    width: 0.4rem;
    height: auto;
  }

  .sl .sl_list .sl_item:nth-child(8)>img {
    width: 0.4rem;
    height: auto;
  }

  .cooperation .cooperation_box .cooperation_right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 0.2rem;
  }

  .cooperation .cooperation_box .cooperation_right .hz_img {
    width: 100%;
    height: 2rem;
    background: url(../img/cooperation_img.png) no-repeat;
    background-size: 100% 100%;
  }

  .cooperation .cooperation_box .cooperation_right .hz_text {
    width: 100%;
    font-size: 0.16rem;
    font-family: PingFang SC;
    color: #ffffff;
    line-height: 0.2rem;
    text-align: left;
    margin-top: 0.1rem;
  }

  .cooperation .cooperation_list {
    width: 90%;
    margin: 0.2rem auto;
    /* 加上一圈阴影 */
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  }

  .cooperation .cooperation_list .cooperation_item {
    width: 100%;
    height: auto;
    border: 1px solid #e2dddd;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-bottom: 0.4rem;
  }

  .cooperation_item .cooperation_img,
  .cooperation_item .cooperation_img>img {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cooperation_item .cooperation_title {
    width: 92%;
    font-family: MicrosoftYaHeiUI;
    font-size: 0.18rem;
    color: #010101;
    line-height: 0.26rem;
    text-align: left;
    margin-top: 0.1rem;
  }

  .cooperation_item .cooperation_text {
    width: 92%;
    font-size: 0.14rem;
    color: #8f8f8f;
    line-height: 0.24rem;
    text-align: left;
    margin: 0.1rem 0;
  }

  .cooperation_item .cooperation_more {
    width: 0.3rem;
    height: 0.3rem;
    background: url(../img/cooperation_more.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 5%;
    bottom: 0.1rem;
  }

  /* 二级院部 */
  .college {
    width: 100%;
    height: auto;
    background: url(../img/college_bg.jpg) no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 5% 4%;
    box-sizing: border-box;
  }

  .college .college_title{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .college .college_title .line{
    display: none;
  }
  .college .college_title p {
    font-size: 0.25rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.05rem;
    /* writing-mode: vertical-rl; */
    /* 垂直方向文字间距 */
    letter-spacing: 0.05rem;
  }

  .college .college_title span {
    font-size: 0.14rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    /* writing-mode: vertical-rl; */
    /* 垂直方向文字间距 */
    letter-spacing: 0.01rem;
    margin-bottom: .2rem;

  }

  .college_box {
    width: 100%;
    height: 517px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }

  .college_box_left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .college_box_left>img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .college .college_box .college_info {
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 5% 0 20% 5%;
    box-sizing: border-box;
    position: relative;
  }

  .college .college_box .college_info .college_name {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: bold;
    font-size: 0.2rem;
    color: #383838;
    line-height: 0.24rem;
    text-align: left;
    margin-bottom: 0.1rem;
  }

  .college .college_box .college_info .college_text {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: 400;
    font-size: 0.14rem;
    color: #585858;
    line-height: 0.28rem;
    text-align: left;
    width: 95%;
  }

  .college .college_box .college_info .college_info_more {
    width: 1rem;
    height: 0.3rem;
    background: url(../img/college_more.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 10%;
    bottom: 10%;
    cursor: pointer;
  }

  .college .college_list {
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.2rem;
    overflow: hidden;
  }

  .college .college_list .college_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
  }

  .college .college_list .college_item>img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .college .college_list .college_item .line {
    width: 0.02rem;
    height: 0.6rem;
    background-color: #ffc414;
    position: absolute;
    left: 10%;
    bottom: 0.1rem;
  }

  .college .college_list .college_item .college_item_name {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: 400;
    font-size: 0.14rem;
    color: #ffffff;
    line-height: 0.22rem;
    text-align: left;
    margin-top: 0.1rem;
  }

  /* 数据文创 */
  .digitization {
    width: 100%;
    height: auto;
    padding: 0.3rem 0;
    background: url(../img/digitization_bg.jpg) no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .digitization .digitization_bg {
    display: none;
  }

  .digitization .digitization_title{
    width: 88%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .digitization .digitization_title .line{
    display: none;
  }
  .digitization .digitization_title p {
    font-size: 0.25rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #8F251B;
    margin-bottom: 0.05rem;
    /* writing-mode: vertical-rl; */
    /* 垂直方向文字间距 */
    letter-spacing: 0.05rem;
  }

  .digitization .digitization_title span {
    font-size: 0.14rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #8F251B;
    /* writing-mode: vertical-rl; */
    /* 垂直方向文字间距 */
    letter-spacing: 0.01rem;
    margin-bottom: .2rem;

  }

  .digitization .digitization_list {
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .digitization .digitization_list .digitization_item {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
  }

  .digitization .digitization_list .digitization_item>img {
    width: 0.6rem;
    height: auto;
  }

  .digitization .digitization_list .digitization_item:nth-child(2)>img {
    width: 0.4rem;
    height: auto;
  }

  .digitization .digitization_list .digitization_item:nth-child(3)>img {
    width: 0.45rem;
    height: auto;
  }

  .digitization .digitization_list .digitization_item:nth-child(4)>img {
    width: 0.6rem;
    height: auto;
  }

  .digitization .digitization_list .digitization_item .digitization_info {
    width: 50%;
    margin-left: 0.1rem;
  }

  .digitization .digitization_list .digitization_item .digitization_num {
    font-family: SourceHanSansSC, SourceHanSansSC;
    font-weight: 400;
    font-size: 0.14rem;
    color: #8f251b;
    text-align: left;
  }

  .digitization .digitization_list .digitization_item .digitization_num>span {
    font-size: 0.24rem;
    line-height: 0.3rem;
    font-weight: bold;
  }

  .digitization .digitization_list .digitization_item .digitization_name {
    font-family: MicrosoftYaHeiUI;
    font-size: 0.16rem;
    color: #111111;
    line-height: 0.22rem;
    text-align: left;
  }

  /* 专题专栏 */
  .feature {
    width: 100%;
    height: auto;
    background: url(../img/feature_bg.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }

  .feature .common_title .title {
    width: 3.5rem;
  }

  .feature-swiper {
    width: 100%;
    height: auto;
    position: relative;
    padding: 5% 0 10%;
  }

  .feature-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }

  .feature-swiper .swiper-slide {
    height: auto;
    position: relative;
  }

  .feature-swiper .swiper-slide-active img {}

  .book-item {
    height: 100%;
    position: relative;
  }

  .book-cover {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
      3px 0 10px rgba(0, 0, 0, 0.1) inset,
      -3px 0 10px rgba(255, 255, 255, 0.5) inset;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  /* 翻页按钮样式 */
  .book-swiper-button-prev,
  .book-swiper-button-next {
    width: 0.4rem;
    height: 0.4rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .book-swiper-button-prev {
    left: 10px;
    background-image: url("../img/left_icon.png");
  }

  .book-swiper-button-next {
    right: 10px;
    background-image: url("../img/right_icon.png");
  }

  /* 视频弹窗样式 */
  .modal {
    display: none;
    /* 默认隐藏 */
    position: fixed;
    /* 固定定位 */
    z-index: 9999;
    /* 最上层 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* 允许滚动 */
    background-color: rgba(0, 0, 0, 0.8);
    /* 半透明黑色背景 */
  }

  .modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close {
    position: absolute;
    top: 28%;
    right: 3%;
    color: #fff;
    font-size: 0.4rem;
    font-weight: 500;
    cursor: pointer;
  }

  .video-container {
    position: relative;
    width: 80%;
    height: 30%;
    overflow: hidden;
  }

  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

}