﻿@charset "utf-8";
#header::after {
    height: 158px;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
#content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* 轮播大图 */
/* 放大和缩小的动画 */
@keyframes zoomInOut {
    0% {
        transform: scale(1); /* 初始大小 */
    }
    50% {
        transform: scale(1.15); /* 放大到 1.5 倍 */
    }
    100% {
        transform: scale(1); /* 缩小回原始大小 */
    }
}
.banner {
    position: relative;
    z-index: 2;
    clear: both;
    height: 100vh;
    z-index: 0;
    width: 100%;
    overflow: hidden;
}
.banner .swiper-wrapper li {
    height: 100vh;
    width: 100%;
}
.banner .swiper-slide img {
    height: 100vh;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    transform: scale(1); /* 初始大小 */
}
.banner .zooming img{
   animation: zoomInOut 12s ease-in-out forwards;
}
.banner .swiper-wrapper .con {
    display: none;
}
.banner .swiper-pagination {
    height: 28px;
    overflow: hidden;
    position: absolute;
    z-index: 3;
    left: 0;
    width: 100%;
    bottom: 50px;
    display: none;
}
.banner .swiper-pagination .swiper-pagination-bullet {
    cursor: pointer;
    margin: 9px 5px;
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
    background-color:#AD181F;
}
.banner .banner-button{
    position: absolute;
    z-index: 1;
    width: 88px;
    height: 88px;
    line-height: 88px;
    float: left;
    overflow: hidden;
    top: 50%;
    text-align: center;
    border-radius: 50%;
    background-color: #94B8CF;
    cursor: pointer;
    border: 1px solid white;
}
.banner .banner-button:hover{
    background-color: #6d99b4;
}
.banner .banner-button::before{
    font-family: "fontpower";
    content: "\e20c";
    font-size: 46px;
    color: #fff;
}
.banner .banner-button-prev{
    left: 120px;
}
.banner .banner-button-next{
    right: 120px;
}
.banner .banner-button-next::before{
    content:"\e20d";
}


@keyframes slideBanner {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* 图标 */
.swiper-circle{
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 407px;
    height: 206px;
    margin: 0 auto;
    text-align: center;
    color: #B51500;
    font-size: 20px;
    background:  url(../../base/img/ind-focus-bg.png) center top no-repeat;
    overflow: hidden;
    cursor: pointer;
}
/* 上下浮动动画 */
@keyframes bounce-up-down {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.swiper-circle span{
    display: inline-block;
    margin-top: 56px;
    font-size: 26px;
    padding:20px 20px 10px;
    pointer-events: auto;
    animation: bounce-up-down 1.5s ease-in-out infinite;
}
.swiper-circle:hover{
    text-decoration: none;
    color: #801204;
}
.swiper-circle:hover span {
    animation-play-state: paused;
}

/* 通用框 */
.boxDefault .mhd{
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 20px 0;
}
.boxDefault .mhd h3{
    color: #AD181F;
}
.boxDefault .mhd h3 strong{
    position: relative;
    z-index: 1;
    padding-top: 30px;
    display: block;
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
}
.boxDefault .mhd h3 strong::before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  url(../../base/img/ind-icon-1.png) center top no-repeat;
}
.boxDefault .mhd h3 strong.icon-2::before{
    background:  url(../../base/img/ind-icon-2.png) center top no-repeat;
}
.boxDefault .mhd h3 strong.icon-3::before{
    background:  url(../../base/img/ind-icon-3.png) center top no-repeat;
}
.boxDefault .mhd h3 strong.icon-4::before{
    background:  url(../../base/img/ind-icon-4.png) center top no-repeat;
    top: -55px;
    opacity: 0.9;
}
.boxDefault .mhd h3 strong.icon-5::before{
    top: -30px;
    background:  url(../../base/img/ind-icon-5.png) center top no-repeat;
    opacity: 0.5;
}
.boxDefault .mhd h3 strong a{
    color: #AD181F;
}
.boxDefault .mhd .eng{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
}
.boxDefault .mhd .eng::before{
    content:"";
    width: 36px;
    height: 2px;
    margin-right: 10px;
    overflow: hidden;
    background-color: #AD181F;
}
.boxDefault .mhd .more{
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    height: 46px;
    line-height: 46px;
    border: 1px solid #ffd8d8;
    border-radius: 22px;
    padding:0 20px 0 58px;
    color: #AD181F;
    background-color: #fff6f6;
}
.boxDefault .mhd .more::after{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 47px;
    height: 47px;
    background: url(../../base/img/ind-icon-more.png) left top no-repeat;
    -webkit-transition:all 1s;
    -moz-transition:all 1s;
    -ms-transition:all  1s;
    -o-transition:all 1s;
    transition:all 1s;
}
.boxDefault .mhd .more:hover{
    text-decoration: none;
    color: #AD181F;
    background-color: #ffe7e7;
}
.boxDefault .mhd .more:hover::after{
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -o-transform:rotate(360deg);
    transform:rotate(360deg);
}
.boxDefault .mhd.center{
    justify-content: center;
}

.boxDefault .mhd.center h3{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* 快速链接 */
/* .boxService{
    padding:520px 0 160px;
    background:  url(../../base/img/ind-links-bg-2.png) center 85px no-repeat;
} */
.boxService{
    padding:80px 0 120px;
}
.serviceList{
    display: flex;
    justify-content: center;
    align-items:stretch;
}
.serviceList li{
    list-style: none;
    margin: 0 20px;
    background-color: rgba(255,233,233,0.6);
    border-radius: 10px;
    border: 1px solid #fdbfbf;
}
.serviceList li .pic{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    height: 68px;
    overflow: hidden;
}
.serviceList li .pic img{
    width: auto;
    max-width: 52px;
    max-height: 52px;
    -webkit-transition:all 1s;
    -moz-transition:all 1s;
    -ms-transition:all  1s;
    -o-transition:all 1s;
    transition:all 1s;
}
.serviceList li .tit{
    display: block;
    text-align: center;
    padding:5px 20px 20px;
    min-width: 92px;
    font-size: 18px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #AD181F;
}
.serviceList li:hover{
    background-color: rgba(255,233,233,0.9);
}
.serviceList li a:hover{
    text-decoration: none;
}
.serviceList li:hover .pic img{
    -webkit-transform:rotateY(360deg);
    -moz-transform:rotateY(360deg);
    -ms-transform:rotateY(360deg);
    -o-transform:rotateY(360deg);
    transform:rotateY(360deg);
}
.serviceList li:hover a{
    color: #971118;
}


/* ==========================================================================
   民生新闻
========================================================================== */
/* 民大新闻 */
.boxNews{
    position: relative;
    z-index: 1;
    padding: 30px 0 58px;
    min-height: 600px;
    background:  url(../../base/img/ind-box-bg-1.png) center top no-repeat;
    background-size: cover;
}
.boxNews::before{
    content:"";
    position: absolute;
    z-index: 0;
    top: 60px;
    left: 128px;
    width: calc(100% - 128px);
    height: calc(100% - 60px);
    background: linear-gradient(90deg,rgba(255,188,136,0), rgba(181,99,28,0.15));
}
.boxNews .mhd .more{
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}
.boxNews .mhd .more:hover{
    background-color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.6);
}
/* 轮播图 */
.newsSwiper{
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.newsSwiper .swiper{
    width: calc(100% / 170 * 116);
}
.newsSwiper .swiper-slide{
    position: relative;
    z-index: 1;
    height: 730px;
}
.newsSwiper .swiper-slide .pic{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #666;
}
.newsSwiper .swiper-slide .pic img{
    display: block;
    width: 100%;
    height: 100%;
}
.newsSwiper .swiper-slide .con{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    padding:50px 40px 15px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.8));
}
.newsSwiper .swiper-slide .con .title{
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 22px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 40px;
    color: white;
    border-bottom:1px solid rgba(255,255,255,0.4);
}
.newsSwiper .swiper-slide .con .title a{
    color: white;
}
.newsSwiper .swiper-slide .con .intro{
    font-size: 14px;
    line-height: 24px;
    color: white;
}

.newsSwiper .swiper-pagination-bullet{
    width: calc(100% / 170 * 54);
    opacity: 1;
    display: flex;
    flex-direction: column;
}
.newsSwiper .swiper-pagination-bullet li{
    position: relative;
    z-index: 1;
    opacity: 1;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.newsSwiper .swiper-pagination-bullet li .con{
    position: relative;
    z-index: 1;
    order: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding:30px 29px;
}
.newsSwiper .swiper-pagination-bullet li .con .others{
    order: 1;
    font-size: 16px;
    line-height: 20px;
    color: #AD181F;
}
.newsSwiper .swiper-pagination-bullet li .con .title{
    order: 2;
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
    max-height: 48px;
    overflow: hidden;
}
.newsSwiper .swiper-pagination-bullet li .pic{
    order: 2;
    width: 230px;
    height: 146px;
}
.newsSwiper .swiper-pagination-bullet li .pic a{
    display: block;
    position: relative;
    z-index: 1;
}
.newsSwiper .swiper-pagination-bullet li .pic a::after{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.15);
    z-index: 1;
}
.newsSwiper .swiper-pagination-bullet li .pic img{
    display: block;
    width: 100%;
    height: 100%;
}
.newsSwiper .swiper-pagination-bullet li a:hover{
    text-decoration: none;
}
.newsSwiper .swiper-pagination-bullet li .con::before{
    content:"";
    position: absolute;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-bottom:1px solid #eaeaea;
    z-index: -1;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.newsSwiper .swiper-pagination-bullet li.active .con::before{
    left: -40px;
    background-color: #ad181f;
    border-bottom-color:#ad181f;
}
.newsSwiper .swiper-pagination-bullet li.active .con .others,
.newsSwiper .swiper-pagination-bullet li.active .con .title a{
    color: #fff;
}
.newsSwiper .swiper-pagination-bullet li.active .pic a::after{
    background: none;
}

/* ==========================================================================
   学术科研
========================================================================== */
.boxResearch{
    position: relative;
    z-index: 1;
    padding: 40px 0 80px;
    min-height: 600px;
    background: #fff url(../../base/img/ind-box-bg-2.png) center bottom no-repeat;
    background-size: cover;
}
.boxResearch .mhd{
    position: relative;
    z-index: 1;
}
.boxResearch .mhd .more{
    position: absolute;
    left: 330px;
    top: 100px;
}
.boxResearch .mbd{
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
    padding-right:calc(100% - 480px);
}
.boxResearch .mbd::before{
    content:"";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 480px;
    background: linear-gradient(180deg,rgba(255,255,255,0), rgba(255,255,255,1));
}
.boxResearch .mbd .nodeIntro{
    margin:20px 20px 30px 10px;
    padding: 20px;
    font-size: 16px;
    background-color: #efefef;
    text-indent: 2em;
    border-radius: 40px 5px 60px 10px;
}
.infoTab{
    padding-top: 15px;
}
.infoTab li{
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 10px 56px 10px 22px;
    font-size: 18px;
    line-height: 30px;
    min-height: 52px;
    border-bottom:1px solid #eaeaea;
}
.infoTab li:hover::after,
.infoTab li:hover::before{
    content:"";
    position: absolute;
}
.infoTab li a:hover{
    text-decoration: none;
}
.infoTab li::before{
    content:"";
    position: absolute;
    z-index: -2;
    width: 552px;
    height: 102px;
    left: -15px;
    top: -11px;
    background:  url(../../base/img/ind-tab-nav-bg.png) left top no-repeat;
    opacity: 0;
    transition: opacity 0.6s;
}
.infoTab li.on{
    border-bottom-color:transparent;
}
.infoTab li.on::before{
    opacity: 1;
}
.infoTab li.on::after{
    content:"";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 10px;
    height: 52px;
    width: 3px;
    background-color: #AD181F;
}
.infoTab li.on a{
    color: #AD181F;
}

.boxResearch .siteWidth{
    position: relative;
    z-index: 2;
}

.boxResearch .infoCon{
    position: absolute;
    z-index: 1;
    left: 50%;
    right: 0;
    top: 22px;
    bottom: 120px;
    padding-top: 112px;
    margin-left:-320px;
}
.boxResearch .infoCon::before{
    content:"";
    position: absolute;
    left: 100px;
    top: 0;
    right: 0;
    height: 112px;
    background-color: #ad181f;
    background: #ad181f url(../../base/img/ind-xskx-bg-1.png) center -6px no-repeat;
}
.boxResearch .infoCon::after{
    content:"";
    position: absolute;
    left: 60px;
    top: 42px;
    width: 40px;
    height: 76px;
    background-color: #ad181f;
    opacity: 0.2;
}
.boxResearch .infoCon li{
    height: 100%;
}
.boxResearch .infoCon a{
    display: block;
    width: 100%;
    height: 100%;
    background: center no-repeat;
    background-size: cover;
}
.boxResearch .infoCon a>span{
    display: none;
}

/* ==========================================================================
   专题聚焦
========================================================================== */
.boxSpecial{
    padding:30px 0 20px;
    background: url(../../base/img/ind-ztzl-bg.png) center 60px no-repeat;
}
.boxSpecial .mbd{
    position: relative;
    z-index: 1;
    padding:40px 0;
}
.boxSpecial .button-prev,
.boxSpecial .button-next{
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
}
.boxSpecial .button-next{
    right: -23px;
}
.boxSpecial .button-prev{
    left: -23px;
}
.boxSpecial .button-prev::before,
.boxSpecial .button-next::before{
    font-family: "fontpower";
    font-size: 20px;
    color: #5F144E;
}
.boxSpecial .button-prev::before{
    content: "\e1d0";
}
.boxSpecial .button-next::before{
    content: "\e1d1";
}
.boxSpecial .button-prev:hover,
.boxSpecial .button-next:hover{
    background-color: #AD181F;
}
.boxSpecial .button-prev:hover::before,
.boxSpecial .button-next:hover::before{
    color: #fff;
}

/* 专题图片列表 */
.specialList{
    overflow: hidden;
}
.specialList li{
    width: calc(100% / 4 - 16px);
    margin-right: 20px;
}
.specialList li .tit{
    display: none;
}
.specialList li .pic img{
    display: block;
    width: 100% !important;
    height: auto !important;
}

/* ==========================================================================
   媒体贵民
========================================================================== */
.boxMedia{
    padding-top: 20px;
    min-height: 700px;
    background:  url(../../base/img/ind-mtgm-bg-2.jpg) center top no-repeat;
}
.boxMedia .mbd{
    padding:20px 0 70px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 5px;
}
.boxMedia .flex-column{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.boxMedia .flex-row{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.boxMedia .medialLeft{
    width: 620px;
}
.boxMedia .medialRight{
    flex: 1;
}

.mediaPic li{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mediaPic li .pic,
.mediaPic li .pic a{
    display: block;
    height: 100%;
}
.mediaPic li .pic img{
    display: block;
    width: 100% !important;
    height: auto !important;
}
.mediaPic li .con{
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 30px 14px 14px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 0.5) 100% );
    transition: bottom 0.6s;
}
.mediaPic li .con .title{
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}
.mediaPic li .con .title a{
    color: #fff;
}
.mediaPic li .con .title a:hover{
    text-decoration: none;
}
.mediaPic li .con .others{
    color: rgba(255, 255, 255, 0.8);
}
.mediaPic li:hover .con{
    bottom: 0;
}

/* 文字模式 */
.mediaTxt li{
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 32px 65px 40px 35px;
    background-color: #ad181f;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.mediaTxt li .title{
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 30px;
}
.mediaTxt li .title a{
    color: #fff;
}
.mediaTxt li a:hover{
    text-decoration: none;
}
.mediaTxt li .others{
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
}
.mediaTxt li .others .more{
    margin-top: 10px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}
.mediaTxt li .others .more::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 113px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
}
.mediaTxt li:hover{
    padding-left: 45px;
    padding-right: 55px;
    background-color: #960b12;
}
.mediaTxt li:hover .others,
.mediaTxt li:hover .others .more{
    color: white;
}

.mediaTxtGray li{
    padding:42px 30px 22px 40px;
    background-color: rgba(237, 237, 237, 0.7);
}
.mediaTxtGray li .title{
    margin-bottom: 15px;
}
.mediaTxtGray li .title a{
    color:#333;
}
.mediaTxtGray li .others .date{
    color:#ad181f;
}
.mediaTxtGray li .others .more{
    color:#666;
}
.mediaTxtGray li .others .more::after{
    background-color: #ad181f;
}
.mediaTxtGray li:hover{
    padding-left: 50px;
    padding-right: 20px;
    background-color: #e0e0e0;
}
.mediaTxtGray li:hover .others,
.mediaTxtGray li:hover .others .more{
    color: #333;
}
/* 灰色2 */
.mediaTxtGray.type-2{
    width: 35%;
}
.mediaTxtGray.type-2 li{
    padding:14px 15px 14px 15px;
}
.mediaTxtGray.type-2 li:hover{
    padding-left: 20px;
    padding-right: 10px;
}

/* 图标 */
.mediaTxt.icon-1 li::after{
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 194px;
    height: 147px;
    background:  url(../../base/img/ind-mtgm-icon-1.png) center top no-repeat;
}
.mediaTxt.icon-2 li::after{
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 238px;
    height: 124px;
    background:  url(../../base/img/ind-mtgm-icon-2.png) center top no-repeat;
}

.mediaPicBg{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.mediaPicBg li{
    flex: 1;
}
.maxHeight li{
    height: calc(100% - 14px);
}
.maxHeight li .pic img{
    height: 100% !important;
}

.type-bottom{
    margin-top: -10px;
}

/* ==========================================================================
   文润民大
========================================================================== */
.boxWenrun{
    padding-bottom: 20px;
}
.boxWenrun .nodeName{
    position: relative;
    z-index: 1;
    height: 350px;
    background: #ad181f;
    border-radius: 175px 0 0 175px;
}
.boxWenrun .nodeName::before{
    content:"";
    position: absolute;
    z-index: -1;
    right: 30px;
    bottom: 0;
    width: 774px;
    height: 283px;
    background:  url(../../base/img/ind-wrgm-bg.png) center center no-repeat;
}
.boxWenrun .nodeName strong{
    position: absolute;
    z-index: 1;
    width: 300px;
    height: 300px;
    line-height: 300px;
    margin:25px 0 0 20px;
    text-align: center;
    font-size: 33px;
    font-weight: bold;
    color:#ad181f;
    background:  url(../../base/img/ind-wrgm-icon-4.png) center center no-repeat;
}
.boxWenrun .nodeName strong::before{
    content:"";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background:  url(../../base/img/ind-wrgm-icon-1.png) center center no-repeat;
}

/* 添加旋转动画 */
.boxWenrun .nodeName strong::before {
  animation: spin 9s linear infinite;
  transform-origin: center center; /* 确保绕中心旋转，默认已是中心，可省略 */
}

/* 鼠标移动到 strong 上时暂停旋转 */
.boxWenrun .nodeName strong:hover::before {
  animation-play-state: paused;
}

/* 定义旋转关键帧 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.boxWenrun .boxInfo{
    display: flex;
    align-items:stretch;
    justify-content: space-between;
}
.boxWenrun .boxMore{
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.boxWenrun .boxMore .more{
    display: inline-block;
    width: 22px;
    margin-top: 60px;
    padding: 230px 0 0;
    font-size: 14px;
    line-height: 18px;
    color:#ad181f;
    background:  url(../../base/img/ind-wrgm-icon-2.png) center top no-repeat;
}
.boxWenrun .boxMore::after{
    content:"";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 158px;
    height: 165px;
    background:  url(../../base/img/ind-wrgm-icon-3.png) left top no-repeat;
}
.boxWenrun .nodeInfo{
    width: 1250px;
    padding-top: 10px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-top:-167px;
    gap: 10px;
}

.picInfoList li{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.picInfoList li .pic{
    display: block;
}
.picInfoList li .pic img{
    display: block;
    width: 100% !important;
    height: auto !important;
}
.picInfoList li .con{
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 30px 14px 14px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 0.5) 100% );
}
.picInfoList li .con .others{
    order: 1;
    margin-right: 10px;
    width: 48px;
    text-align: center;
    padding-top: 30px;
    height: 32px;
    line-height: 32px;
    color: white;
    font-size: 14px;
    background: #17AE10 url(../../base/img/icon-wx.png) center 12px no-repeat;
}
.picInfoList li .con .title{
    order: 2;
    flex: 1;
}
.picInfoList li .con .title a{
    color: rgba(255, 255, 255, 0.9);
}
.picInfoList li .con .title a:hover{
    text-decoration: none;
    color: white;
}

.listWx{
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}
.listWx::before{
    content:"";
    position: absolute;
    z-index: -1;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    background-color: #fff;
}
.listDy li .con .others{
    background: #009DDE url(../../base/img/icon-dy.png) center 10px no-repeat;
}
.listSp li .con .others{
    background: #C29E21 url(../../base/img/icon-sph.png) center 10px no-repeat;
}
.listWb li .con .others{
    background: #B51500 url(../../base/img/icon-wb.png) center 10px no-repeat;
}

/* ==========================================================================
   招生就业
========================================================================== */
.boxAdmissions{
    position: relative;
    z-index: 1;
    padding-top: 180px;
}
/* 滚动关键帧 */
@keyframes bgScroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -4000px 0;
    }
}
.boxAdmissions .bgTxt {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-image: url(../../base/img/ind-txt-3.png);
    background-repeat: repeat-x;
    background-size: 4000px 250px;
    animation: bgScroll 60s linear infinite;
}

/* 鼠标悬停时，暂停动画 */
.boxAdmissions .bgTxt:hover {
    animation-play-state: paused;
}
.boxAdmissions::after{
    content:"";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 563px;
    width: 100%;
    background:  url(../../base/img/ind-zsjy-bg.png) center bottom no-repeat;
}
.boxAdmissions .mbd{
    display: flex;
    justify-content: space-between;
}
.boxAdmissions .boxVideo{
    margin-top: 80px;
}
.boxAdmissions .nodeList{
    flex: 1;
    position: relative;
    z-index: 1;
    padding:160px 30px 0 60px;
    overflow: hidden;
    background:  url(../../base/img/ind-zsjy-left.png) left top no-repeat;
    background-size: cover;
}
.boxAdmissions .nodeList::after{
    content:"";
    position: absolute;
    left: 0;
    top: 0;
}
.boxAdmissions .nodeList li{
    overflow: hidden;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.boxAdmissions .nodeList li:hover{
    transform: translateX(10px);
}
.boxAdmissions .nodeList li a{
    position: relative;
    z-index: 1;
    display: block;
    height: 52px;
    line-height: 52px;
    padding-top: 28px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    border-bottom:1px solid #D8D8D8;
}
.boxAdmissions .nodeList li a::before{
    font-family: "fontpower";
    content:"\e1a4";
    position: absolute;
    right: 0;
    top: 30px;
    transform: rotate(-90deg);
}
.boxAdmissions .nodeList li a:hover{
    text-decoration: none;
}
/* ==========================================================================
   云游贵民
========================================================================== */
.boxWandering{
    position: relative;
    z-index: 1;
    padding-top: 246px;
}
@keyframes bgScrollRight {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 4000px 0;
    }
}
.boxWandering .bgTxt{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 80px;
    width: 100%;
    height: 250px;
    float: left;
    overflow: hidden;
    background-image: url(../../base/img/ind-txt-3.png);
    background-repeat: repeat-x;
    background-size: 4000px 250px;
    animation: bgScrollRight 60s linear infinite;
}
/* 鼠标悬停时，暂停动画 */
.boxWandering .bgTxt:hover {
    animation-play-state: paused;
}
.boxWandering .mbd{
    display: flex;
    justify-content: space-between;
}
.boxWandering .boxVideo{
    margin-top: -130px;
}
.boxWandering .boxVideo a{
    display: block;
    position: relative;
    z-index: 1;
}
/* .boxWandering .boxVideo a::before{
    content:"";
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 178px;
    height: 178px;
    overflow: hidden;
    float: left;
} */
.boxWandering .boxVideo .icon-box {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxWandering .boxVideo .ico {
    position: relative;
    z-index: 1;
    width: 132px;
    height: 132px;
    background: rgba(255,255,255,0.4) url(../../base/img/ind-icon-7.png) center center no-repeat;
    border-radius: 50%;
}
.bg-circle {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.bg-circle__elem {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    border: 1px solid rgba(255,255,255, .5);
    border-radius: 50%;
}
@keyframes circle {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}
.bg-circle__elem {
    animation: circle 3s infinite ease-in-out;
}
.bg-circle__elem.mod--second {
    animation-delay: 500ms;
}
.bg-circle__elem.mod--third {
    animation-delay: 1s;
}

.boxWandering .nodeList{
    flex: 1;
    padding-top: 200px;
    overflow: hidden;
}
.boxWandering .nodeList li{
    width: 49%;
    float: left;
    height: 52px;
    line-height: 52px;
    margin-bottom: 48px;
}
.boxWandering .nodeList li a{
    position: relative;
    z-index: 1;
    display: block;
    line-height: 52px;
    padding-left: 72px;
    font-size: 30px;
    font-weight: 500;
    color:#ad181f;
}
.boxWandering .nodeList li a::before{
    content:"";
    position: absolute;
    z-index: 1;
    width: 52px;
    height: 52px;
    float: left;
    overflow: hidden;
    left: 0;
    top: 0;
    background:  url(../../base/img/ind-icon-6.png) center top no-repeat;
    -webkit-transition:all 1s;
    -moz-transition:all 1s;
    -ms-transition:all  1s;
    -o-transition:all 1s;
    transition:all 1s;
}
.boxWandering .nodeList li.li2 a::before{
    background-position: center -92px;
}
.boxWandering .nodeList li.li3 a::before{
    background-position: center -184px;
}
.boxWandering .nodeList li.li4 a::before{
    background-position: center -276px;
}
.boxWandering .nodeList li a:hover{
    text-decoration: none;
    color:#313131;
}
.boxWandering .nodeList li:hover a::before{
    -webkit-transform:rotateY(360deg);
    -moz-transform:rotateY(360deg);
    -ms-transform:rotateY(360deg);
    -o-transform:rotateY(360deg);
    transform:rotateY(360deg);
}






@media screen and (max-width: 1620px) {
    
}
@media screen and (max-width: 1480px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1025px) {
}