/* 公共部分样式 */

html,
body {
    width: 100%;
    margin: 0 auto;
}

img {
    width: 100%;
}

a {
    cursor: pointer;
    color: #000000;
    text-decoration: none;
}

a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
}

p,
a,
span,
img {
    font-size: 0;
}

div {
    font-size: unset;
}

.disNone {
    display: none;
}


/* music */

@keyframes reverseRotataZ {
    0% {
        -webkit-transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(-360deg);
    }
}

@keyframes rotataZ {
    0% {
        -webkit-transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(360deg);
    }
}

@-webkit-keyframes reverseRotataZ {
    0% {
        -webkit-transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(-360deg);
    }
}

@-webkit-keyframes rotataZ {
    0% {
        -webkit-transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(360deg);
    }
}

#musicControl {
    position: fixed;
    right: 15px;
    top: 10px;
    margin-top: 0;
    display: inline-block;
    z-index: 99999999
}

#musicControl a {
    display: inline-block;
    width: 25px;
    height: 25px;
    overflow: hidden;
    background: url('../img/play.png') no-repeat;
    background-size: 100%;
}

#musicControl a audio {
    width: 100%;
    height: 56px;
}

#musicControl a.stop {
    background-position: left bottom;
}

#musicControl a.on {
    background-position: 0px 1px;
    animation: reverseRotataZ 1.2s linear infinite;
    -webkit-animation: reverseRotataZ 1.2s linear infinite;
}

#music_play_filter {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999998;
}


/* banner部分的样式 */

.bannerBox {
    width: 100%;
    /* height: 13.3rem; */
    /* height: 110vh; */
    height: 14.6rem;
    background: url(../img/bannerBg.png) no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.bannerLogo img {
    width: 20%;
    margin-left: 7%;
    padding-top: 0.3rem;
}

.bannerTitle {
    width: 78.8%;
    margin: 0 10.6%;
    position: absolute;
    top: 6.1rem;
    animation-duration: 1.6s;
    animation-delay: 0.5s;
}

.bannerSubTitle {
    width: 80.5333%;
    margin: 0 9.7333%;
    position: absolute;
    top: 10rem;
    animation-duration: 1.6s;
    animation-delay: 0.5s;
}

.bannerOpen {
    width: 36.4%;
    margin: 0 31.8%;
    position: absolute;
    top: 11rem;
}

.bannerDown {
    width: 3.4666%;
    margin: 0 48.2667%;
    position: absolute;
    top: 11.7rem;
    -webkit-animation: dowmMouse 2s infinite ease-out;
    -moz-animation: dowmMouse 2s infinite ease-out;
    -o-animation: dowmMouse 2s infinite ease-out;
    -ms-animation: dowmMouse 2s infinite ease-out;
    animation: dowmMouse 2s infinite ease-out;
}

@-webkit-keyframes dowmMouse {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(0, 20px);
        -moz-transform: translate(0, 20px);
        -o-transform: translate(0, 20px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
}

@keyframes dowmMouse {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(0, 20px);
        -moz-transform: translate(0, 20px);
        -o-transform: translate(0, 20px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
}

@-webkit-keyframes zoomSlogan {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
}

@keyframes zoomSlogan {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
}

.yaShaLeftBox {
    height: 0.7rem;
    padding: 0.05rem 0;
    position: relative;
}

.yaShaLeftBox .leftGrab {
    width: auto;
    position: absolute;
    left: 33%;
    height: 0.6rem;
    /* -webkit-animation: zoomGrab 2s infinite ease-out;
    -moz-animation: zoomGrab 2s infinite ease-out;
    -o-animation: zoomGrab 2s infinite ease-out;
    -ms-animation: zoomGrab 2s infinite ease-out;
    animation: zoomGrab 2s infinite ease-out; */
}

.yaShaLeftBox .leftWord {
    width: auto;
    position: absolute;
    left: 40%;
    height: 0.6rem;
}

@-webkit-keyframes zoomGrab {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-0.3rem, 0);
        -moz-transform: translate(-0.3rem, 0);
        -o-transform: translate(-0.3rem, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
}

@keyframes zoomGrab {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-0.3rem, 0);
        -moz-transform: translate(-0.3rem, 0);
        -o-transform: translate(-0.3rem, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
}


/* 标题样式 */

.itemTitleBox {
    padding-top: 0.4rem;
    font-size: 0;
}

.itemTitleBox p {
    font-size: 0.36rem;
    line-height: 0.44rem;
    margin-left: 0.2rem;
    font-weight: bold;
    color: #41210f;
    display: inline-block;
    padding-left: 0.1rem;
    border-left: 0.08rem solid #41210f;
}

.itemTitleBox p span {
    font-size: 0.2rem;
    color: #41210f;
    letter-spacing: 1px;
    font-weight: normal;
}


/* 沙赛历程 */

.yaShaProgressBox {
    margin-top: -3vh;
    position: relative;
    z-index: 1;
}

.yaShaProgressBlockTop {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    background: url(../img/yaShaProgressTopBg.png) no-repeat center top;
    background-size: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.yaShaProgressTitle {
    width: 33.6%;
    margin: 0 auto;
}

.yaShaProgressRouteBox {
    padding: 0.5rem 0;
    position: relative;
}

.yaShaProgressRouteCont .yaShaProgressYear {
    /* width: 13.333%; */
    position: absolute;
}

.yaShaProgressRouteCont .yaShaProgressYear01 {
    width: calc(100 / 750 * 100%);
    top: 2rem;
    left: 3.47%;
    animation-delay: 0;
}

.yaShaProgressRouteCont .yaShaProgressYear02 {
    width: calc(103 / 750 * 100%);
    top: 2.7rem;
    left: 17.33%;
    animation-delay: 0.4s;
}

.yaShaProgressRouteCont .yaShaProgressYear03 {
    width: calc(104 / 750 * 100%);
    top: 2.2rem;
    left: 26.13%;
    animation-delay: 0.8s;
}

.yaShaProgressRouteCont .yaShaProgressYear04 {
    width: calc(104 / 750 * 100%);
    top: 1.2rem;
    left: 21.47%;
    animation-delay: 1.2s;
}

.yaShaProgressRouteCont .yaShaProgressYear05 {
    width: calc(104 / 750 * 100%);
    top: 1rem;
    left: 42%;
    animation-delay: 1.6s;
}

.yaShaProgressRouteCont .yaShaProgressYear06 {
    width: calc(103 / 750 * 100%);
    top: 1.9rem;
    left: 44.67%;
    animation-delay: 2s;
}

.yaShaProgressRouteCont .yaShaProgressYear07 {
    width: calc(104 / 750 * 100%);
    top: 1.6rem;
    left: 60.53%;
    animation-delay: 2.4s;
}

.yaShaProgressRouteCont .yaShaProgressYear08 {
    width: calc(104 / 750 * 100%);
    top: 0.6rem;
    left: 57.47%;
    animation-delay: 2.8s;
}

.yaShaProgressRouteCont .yaShaProgressYear09 {
    width: calc(107 / 750 * 100%);
    top: 1.2rem;
    left: 81.33%;
    animation-delay: 3.2s;
}

.yaShaProgressRouteCont .yaShaProgressYear10 {
    width: calc(111 / 750 * 100%);
    top: 0.2rem;
    left: 81.6%;
    animation-delay: 3.6s;
}

.yaShaProgressTitle_slide {
    width: 41.4666%;
    margin: -0.9rem auto 0.2rem auto;
    font-size: 0;
}


/* 第三版 */

.yaShaProgressScrool {
    position: relative;
    width: 100%;
    height: 9.2rem;
    overflow-x: scroll;
}

.yaShaProgressMark {
    font-size: 0.28rem;
    text-align: center;
    color: #666666;
    line-height: 0.6rem;
}

.yaShaProgressScrool .yaShaProgressScroolImg {
    width: 1000%;
    position: absolute;
    animation: move 100s linear infinite 1.5s;
}


/* @keyframes move {
    0% {
        left: 0;
    }
    50% {
        left: -900%;
    }
    100% {
        left: 0;
    }
} */

.yaShaProgressCont {
    margin-top: -1rem;
    position: relative;
    z-index: -1;
    padding: 1.6em 0 0.4rem 0;
    background: url(../img/yaShaProgressContBg.png) no-repeat center center;
    background-size: cover;
}

.yaShaProgressCont p {
    font-size: 0.26rem;
    line-height: 0.46rem;
    text-align: center;
    color: #ffffff;
}


/* 官方视频 */

.officialVideoBox {
    background: #ffffff;
}

.officialVideoSwiperBox {
    margin-top: 0.5rem;
    animation-duration: 1.5s;
}

.officialVideoSwiperBox {
    width: 93.06%;
    margin: 0.4rem 3.47%;
}

.officialVideoItemBox {
    overflow: hidden;
}

.officialVideoItemBox .officialVideoItemBoxLeft {
    width: 45.7%;
    height: 3.32rem;
    float: left;
    background: url(../img/officialVideoItemBg.png) no-repeat center center;
    background-size: cover;
}

.officialVideoItemBox .officialVideoItemBoxRight {
    width: 54.3%;
    height: 3.32rem;
    float: left;
    font-size: 0;
}

.officialVideoContBox {
    width: 84%;
    padding: 0.3rem 8%;
}

.officialVideoItemBox .officialVideoItemBoxLeft .officialVideoContTitle {
    font-size: 0.3rem;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.officialVideoItemBox .officialVideoItemBoxLeft .officialVideoContIntro {
    font-size: 0.24rem;
    color: #ffffff;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.3rem;
}

.officialVideoItemBox .officialVideoItemBoxLeft .officialVideoContAuthor {
    padding-left: 0.3rem;
    font-size: 0.16rem;
    line-height: 0.3rem;
    color: #ffffff;
    margin-bottom: 0.1rem;
    background: url(../img/officialVideoItemIcon01.png) no-repeat center left;
    background-size: 0.24rem;
}

.officialVideoItemBox .officialVideoItemBoxLeft .officialVideoContTime {
    padding-left: 0.3rem;
    font-size: 0.16rem;
    line-height: 0.3rem;
    color: #ffffff;
    margin-bottom: 0.1rem;
    background: url(../img/officialVideoItemIcon02.png) no-repeat center left;
    background-size: 0.24rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.officialVideoSwiperBox .swiper-container-horizontal>.swiper-pagination-bullets,
.officialVideoSwiperBox .swiper-pagination-custom,
.officialVideoSwiperBox .swiper-pagination-fraction {
    font-size: 0;
    bottom: 0.2rem;
}

.officialVideoSwiperBox .swiper-pagination {
    text-align: left;
    margin-left: 0.5rem;
}

.officialVideoSwiperBox .swiper-pagination-bullet {
    background: #ffc600;
    opacity: 1;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.officialVideoSwiperBox .swiper-pagination-bullet-active {
    width: 0.6rem;
}


/* 亚沙风采展示 */

.yashaStyleShowBox {
    background: url(../img/yashaStyleShowBoxBg.png) no-repeat bottom center;
    padding-bottom: 0.5rem;
}

.yashaStyleShowMark p {
    margin-left: 2%;
    font-size: 0.24rem;
    line-height: 0.4rem;
    color: #ffffff;
}

.yashaStyleShowMark02 p {
    margin-left: 2%;
    font-size: 0.24rem;
    line-height: 0.4rem;
    color: #ffc600;
    margin-top: 0.10rem;
}

.yashaStyleShowBlock {
    margin-top: 0.4rem;
}

.yashaStyleShowTitle {
    width: 94%;
    margin: 0 3%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
}

.yashaStyleShowTitle ul {
    width: 100%;
}

.yashaStyleShowTitle ul li {
    width: 31.23%;
    float: left;
    font-size: 0.26rem;
    text-align: center;
    line-height: 0.7rem;
    color: #41210f;
    background: #fff;
    margin-bottom: 0.2rem;
    cursor: pointer;
}

.yashaStyleShowTitle ul li:nth-child(2),
.yashaStyleShowTitle ul li:nth-child(5) {
    margin: 0 3.155% 0.2rem 3.155%;
}

.yashaStyleShowTitle ul .active {
    color: #ffffff;
    background: #41210f;
}

.yashaStyleShowCont {
    width: 94%;
    margin: 0.3rem 3% 0 3%;
}

.yashaStyleShowCont ul {
    position: relative;
}

.yashaStyleShowCont ul li {
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
    height: 0;
    overflow: hidden;
}

.yashaStyleShowCont ul .active {
    height: auto;
    overflow: hidden;
}

.yashaStyleShowCont ul li .yashaStyleShowItemBox {
    overflow: hidden;
}

.yashaStyleShowCont ul li .yashaStyleShowItemBox .yashaStyleShowItem {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 0.25rem;
    float: left;
    box-shadow: 1px 5px 10px 0px rgba(29, 29, 29, 0.34);
}

.yashaStyleShowCont ul li .yashaStyleShowItemBox .yashaStyleShowItem:nth-child(even) {
    margin-right: 0;
}

.yashaStyleShowItemBox .yashaStyleShowItem .yashaStyleShowItemPic {
    position: relative;
    font-size: 0;
}

.yashaStyleShowItemBox .yashaStyleShowItem .yashaStyleShowItemPic .yashaStylePlayBtn {
    width: 14%;
    position: absolute;
    left: 43%;
    top: 43%;
}

.yashaStyleShowItemBox .yashaStyleShowItem .yashaStyleShowItemTitle {
    height: 0.6rem;
    background: #ffffff;
    overflow: hidden;
}


/* .yashaStyleShowItemTitle img {
    float: left;
    width: 0.4rem;
    height: 0.4rem;
    margin: 0.1rem 0.05rem 0.1rem 0.1rem;
} */

.yashaStyleShowItemTitle p {
    width: 90%;
    float: left;
    font-size: 0.2rem;
    color: #494949;
    line-height: 0.6rem;
    padding: 0 5% 0 5%;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* .yashaStyleShowItemTitle p:nth-child(2) {
    width: 30%;
    float: right;
    text-align: center;
    font-size: 0.2rem;
    color: #494949;
    line-height: 0.6rem;
} */

.yashaStyleShowSwitch {
    overflow-x: hidden;
    margin-top: 0.3rem;
    position: relative;
    height: 0.8rem;
}

.yashaStyleShowSwitch p {
    width: 49%;
    margin-right: 2%;
    float: left;
    font-size: 0.3rem;
    line-height: 0.7rem;
    text-align: center;
    outline: none;
}

.yashaStyleShowSwitch .yashaStyleShowPrev {
    background: #ffffff;
    color: #c27d03;
    opacity: 0.6;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.yashaStyleShowSwitch .yashaStyleShowNext {
    margin-right: 0;
    background: #c27d03;
    color: #ffffff;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.yashaStyleShowSwitch .swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: '';
}

.yashaStyleShowSwitch .swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: '';
}

.yashaStyleShowSwitch .swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .55;
    cursor: auto;
    pointer-events: none;
    background: #ffffff;
    color: #c27d03;
}


/* 商学院意见领袖 */

.totalBg {
    background: url(../img/participatingInstitutionsBoxBg.png) no-repeat center center;
    background-size: cover;
}

.opinionLeadersBlock {
    margin-top: 0.4rem;
}

.opinionLeadersPicList {
    width: 94%;
    margin: 0 3%;
}

.opinionLeadersPicList ul li {
    display: none;
}

.opinionLeadersPicList ul .active {
    display: block;
}

.opinionLeadersPicItemBox {
    position: relative;
}

.opinionLeadersPicItemBox .opinionLeadersPicItemBlock {
    /* width: 60%; */
    position: absolute;
    top: 63%;
    /* left: 0.4rem; */
    padding: 0.1rem 0.4rem;
}

.opinionLeadersPicItemBox .opinionLeadersPicItemBlock p:nth-child(1) {
    font-size: 0.32rem;
    line-height: 0.5rem;
    color: #ffffff;
    font-weight: bold;
}

.opinionLeadersPicItemBox .opinionLeadersPicItemBlock p:nth-child(2) {
    font-size: 0.28rem;
    line-height: 0.5rem;
    color: #ffffff;
}

.opinionLeaderForward {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
}

.opinionLeaderForward img {
    width: 1.3rem;
    font-size: 0;
}

.opinionLeadersSmallPicList {
    overflow-x: scroll;
    width: 94%;
    margin: -1.6rem 3% 0 3%;
    position: relative;
    z-index: 5;
    padding-bottom: 0.2rem;
}

.opinionLeadersSmallPicList::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    cursor: pointer;
}

.opinionLeadersSmallPicList::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 5px #C1C1C1;
    box-shadow: inset 0 0 5px #C1C1C1;
    background: #fec500;
}

.opinionLeadersSmallPicList::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.1);
}

.opinionLeadersSmallPicList ul {
    width: 1230%;
}

.opinionLeadersSmallPicList ul li {
    width: calc(94.3% / 37);
    float: left;
    margin: 0 0 0.1rem 0.15%;
    position: relative;
    font-size: 0;
}

.opinionLeadersSmallPicList ul li img {
    border-radius: 5px;
}

.opinionLeadersSmallPicList ul .active:before {
    content: '';
    position: absolute;
    width: 94%;
    margin-left: 3%;
    height: 5px;
    background: rgba(254, 197, 0, 1);
    bottom: 0;
    border-radius: 2px;
    z-index: 12;
}

.opinionLeadersSmallPicList ul li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.opinionLeadersSmallPicList ul li:last-child {
    margin-right: 0;
}


/* .opinionLeadersSmallBox {
    height: 0.4rem;
    margin-top: -0.6rem;
    position: relative;
    padding: 0.1rem;
    z-index: 12;
}

.opinionLeadersSmallBox p {
    color: #ffffff;
    font-size: 0.24rem;
    line-height: 0.3rem;
    text-shadow: 4px 2px 10px #000000;
} */


/* .generatePoster {
    width: 50%;
    height: 0.6rem;
    margin: 0 25%;
    background: #e2e62d;
    border-radius: 0.1rem;
    display: inline-block;
} */

.generatePoster {
    text-align: center;
    font-size: 0;
    background: url(../img/generatePosterBg.png) no-repeat center bottom;
    background-size: cover;
    margin-top: -1.5rem;
    padding-top: 1.7rem;
}

.generatePoster p {
    text-align: center;
    font-size: 0.28rem;
    font-weight: bold;
    line-height: 0.6rem;
    color: #ffffff;
    border-radius: 0.1rem;
    background: #f7a616;
    padding: 0 0.4rem;
    display: inline-block;
}

.generatePoster .generatePosterImg {
    width: 70.266%;
    margin: 0 auto;
}

.generatePoster .generatePosterImg img {
    -webkit-animation: zoomSlogan 2s infinite ease;
    -moz-animation: zoomSlogan 2s infinite ease;
    -o-animation: zoomSlogan 2s infinite ease;
    -ms-animation: zoomSlogan 2s infinite ease;
    animation: zoomSlogan 2s infinite ease;
}


/* 参与院校 */

.participatingInstitutionsBox {
    background: #efefef;
    padding-bottom: 0.5rem;
}

.participatingInstitutionsBlock {
    width: 94%;
    margin: 0.4rem 3% 0 3%;
    position: relative;
}

.participatingInstitutionsBlock .swiper-container {
    padding-bottom: 0.3rem;
}

.participatingInstitutionsList ul {
    overflow: hidden;
}

.participatingInstitutionsList ul li {
    width: 32%;
    margin-right: 2%;
    float: left;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(194, 125, 3, 0.34);
    border-radius: 10px;
    font-size: 0;
    margin-bottom: 0.15rem;
}

.participatingInstitutionsList ul li:nth-child(3n+3) {
    margin-right: 0;
}

.participatingInstitutionsBlock .swiper-container-horizontal>.swiper-pagination-bullets,
.participatingInstitutionsBlock .swiper-pagination-custom,
.participatingInstitutionsBlock .swiper-pagination-fraction {
    bottom: 0;
    font-size: 0;
    margin: 0 20%;
    width: 60%;
}

.participatingInstitutionsBlock .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 2px 0.04rem;
    border-radius: 50%;
    border: solid 1px #41210f;
    background: none;
    opacity: 1;
}

.participatingInstitutionsBlock .swiper-pagination-bullet-active {
    width: 11px;
    height: 11px;
    border: none;
    background: #41210f;
    opacity: 1;
    margin: 0 0.04rem;
}


/* 特别鸣谢 */

.specialThanksBox {
    padding-bottom: 0.4rem;
}

.specialThanksBlock {
    width: 94%;
    margin: 0.4rem 3% 0 3%;
}

.specialThanksBlock img {
    animation-duration: 1.5s;
}

.specialThanksList ul {
    overflow: hidden;
}

.specialThanksList ul li {
    width: 32%;
    margin-right: 2%;
    float: left;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(194, 125, 3, 0.34);
    border-radius: 10px;
    font-size: 0;
    margin-bottom: 0.15rem;
}

.specialThanksList ul li:nth-child(3n+3) {
    margin-right: 0;
}


/* 联系我们 */

.contactUsBox {
    background: url(../img/contactUsBg.png) no-repeat center bottom;
    background-size: cover;
    padding-bottom: 0.4rem;
}

.contactUsBlock {
    overflow: hidden;
    margin-top: 0.4rem;
    width: 94%;
    padding: 0 3%;
}

.contactUsBlock .contactUsCont {
    width: 65%;
    float: left;
    background: url(../img/contactUsLine.png) no-repeat right center;
    padding-top: 0.3rem;
    padding-bottom: 0.1rem
}

.contactUsBlock .contactUsCode {
    width: 35%;
    float: left;
}

.contactUsBlock .contactUsCont p {
    font-size: 0.26rem;
    line-height: 0.5rem;
    color: #333333;
    margin-bottom: 0.2rem;
    padding-left: 0.45rem;
}

.contactUsBlock .contactUsCont p:nth-child(1) {
    background: url(../img/contactUsICon01.png) no-repeat left 0.1rem;
    background-size: 0.3rem;
}

.contactUsBlock .contactUsCont p:nth-child(2) {
    background: url(../img/contactUsICon02.png) no-repeat left 0.1rem;
    background-size: 0.3rem;
    padding-right: 0.2rem;
    background-position-y: 0.16rem;
}

.contactUsCode img {
    width: 60%;
    margin-left: 20%;
    margin-top: 0.2rem;
}

.technicalSupport {
    font-size: 0.2rem;
    text-align: center;
    color: #414141;
    line-height: 0.4rem;
    margin: 0.1rem 0;
}

.technicalSupport a {
    font-size: 0.2rem;
    color: #414141;
}


/* 领队海报页面 */

.lingDuiPoster {
    font-size: 0;
}

.lingDuiPoster img {
    width: 100%;
}


/* 二级页面 */

.sharePic {
    font-size: 0.26rem;
    font-weight: bold;
    margin: 0.4rem;
    text-align: center;
    color: #dcaa3b;
}

.pageBox {
    width: 100%;
}

.videoTitleBox {
    overflow: hidden;
    margin: 0.2rem 0 0.2rem 0;
}

.videoTitleBox img {
    width: auto;
    /* width: 1.2rem; */
    height: 0.7rem;
    float: left;
    margin-top: 0.1rem;
    margin-right: 0.16rem;
}

.videoTitleBox .schoolTitle {
    width: calc(100% - 2rem);
    float: left;
    font-size: 0.3rem;
    line-height: 0.6rem;
    color: #5b5b5b;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.videoTitleBox .videoTitle {
    width: calc(100% - 2rem);
    float: left;
    font-size: 0.22rem;
    line-height: 0.3rem;
    color: #5b5b5b;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.videoDetailBox {
    font-size: 0;
}

.videoDetailBox video {
    font-size: 0;
}

.videoBox iframe {
    width: 100%;
    height: 200px;
    /* 设置后无法点击a标签等 */
    /* pointer-events: none; */
    /* position: relative;
    z-index: 11; */
}

.videoBox p {
    padding: 0 0.2rem;
    overflow: hidden;
    background: #f3f0ed;
}

.videoBox p span {
    font-size: 0.26rem;
    line-height: 0.8rem;
    display: inline-block;
    color: #5b5b5b;
}

.videoBox p span:nth-child(1) {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.videoBox p span:nth-child(2) {
    float: right;
}

.pageBox .swiper-slide {
    width: 100%;
}

.pageBox .swiper-pagination {
    font-size: 0;
    margin: 0.3rem 0;
    position: relative;
    border-bottom: 1px solid #F3E5CD;
}

.pageBox .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0.8rem;
    left: 0;
    /* width: 100%; */
    font-size: 0;
}

.pageBox .swiper-pagination-bullet {
    width: 0.6rem;
    border-radius: 0%;
    height: 0.05rem;
    outline: none;
    font-size: 0.26rem;
    margin: 0 0.06rem;
}

.pageBox .swiper-pagination-bullet-active {
    background: #ffc600;
}

.backIndexBox {
    font-size: 0;
    text-align: center;
    margin: 0.5rem 0;
}

.backIndexBox a {
    display: inline-block;
    text-align: center;
    font-size: 0.28rem;
    line-height: 0.6rem;
    color: #ffffff;
    background: #ffc600;
    text-align: center;
    padding: 0 0.3rem;
    border-radius: 0.3rem;
    text-decoration: none;
}

.backIndexBox a:hover,
.backIndexBox a:visited,
.backIndexBox a:link,
.backIndexBox a:active {
    text-decoration: none;
}

.newsMainBox {
    background: #EDEDED;
}

.newsMainBlcok {
    background: #ffffff;
    padding: 0.2rem 4% 0.2rem 4%;
    border-top-left-radius: 0.4rem;
    border-top-right-radius: 0.4rem;
    box-shadow: inset 0px 3px 3px 0px #c5c5c5;
}

.newsTitleBox {
    margin-top: 0.1rem;
}

.newsTitleBox .newsTitleName {
    text-align: center;
    font-size: 0.30rem;
    line-height: 0.6rem;
    color: #ffc600;
    font-weight: bold;
}

.newsTitleBox span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffc600;
    margin: 0 auto;
}

.newsList li {
    overflow: hidden;
    padding: 0.15rem 0;
    border-bottom: 1px solid #F3E5CD;
}

.newsList li .newsContLeft {
    width: 62%;
    margin-left: 2%;
    margin-right: 6%;
    float: left;
}

.newsList li .newsContRight {
    width: 30%;
    float: left;
    font-size: 0;
}

.newsList li .newsContLeft .newsContTitle {
    font-size: 0.26rem;
    line-height: 0.36rem;
    color: #5d5d5d;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 0.1rem;
}

.newsList li .newsContLeft .newsContTime {
    float: right;
    margin-top: 0.2rem;
    font-size: 0.22rem;
    color: #828181;
}

.newsList li .newsContRight img {
    font-size: 0;
    width: 100%;
}

.noMore {
    height: 0.6rem;
    text-align: center;
    color: #b8b8b8;
    font-size: 0.26rem;
    line-height: 0.6rem;
    margin-top: 0.2rem;
}

@media (min-width:789px) {
    html,
    body {
        width: 750px;
        margin: 0 auto;
        /* background: #eeeeee; */
    }
    .videoBox iframe {
        width: 100%;
        height: 400px;
    }
}