/* @font-face {
    font-family: 'SourceHanSansCN-Normal';
    font-display: swap;
    src: url('//at.alicdn.com/t/webfont_s49der0rpy.eot');
    src: url('//at.alicdn.com/t/webfont_s49der0rpy.eot?#iefix') format('embedded-opentype'),
        url('//at.alicdn.com/t/webfont_s49der0rpy.woff2') format('woff2'),
        url('//at.alicdn.com/t/webfont_s49der0rpy.woff') format('woff'),
        url('//at.alicdn.com/t/webfont_s49der0rpy.ttf') format('truetype'),
        url('//at.alicdn.com/t/webfont_s49der0rpy.svg#NotoSansHans-DemiLight') format('svg');
}

@font-face {
    font-family: "SourceHanSerifSCSemiBold";
    src: url("../lib/SourceHanSerifSC-SemiBold/SourceHanSerifSC-SemiBold.woff2") format("woff2"),
         url("../lib/SourceHanSerifSC-SemiBold/SourceHanSerifSC-SemiBold.woff") format("woff"),
         url("../lib/SourceHanSerifSC-SemiBold/SourceHanSerifSC-SemiBold.ttf") format("truetype"),
         url("../lib/SourceHanSerifSC-SemiBold/SourceHanSerifSC-SemiBold.eot") format("embedded-opentype"),
         url("../lib/SourceHanSerifSC-SemiBold/SourceHanSerifSC-SemiBold.svg") format("svg"),
         url("../lib/SourceHanSerifSC-SemiBold/SourceHanSerifSC-SemiBold.otf") format("opentype");
  } */


/* html,
body {
    font-family: "SourceHanSansCN-Normal";
    overflow-x: hidden;
}

.itemTitle p:nth-child(2) span {
    font-family: "SourceHanSerifSCSemiBold";
} */


/* 公共部分样式 */

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;
}

.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: 100vh;
    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: 66%;
    margin: 0rem 17%;
    position: absolute;
    top: 1.3rem;
    animation-duration: 1.6s;
    animation-delay: 0.5s;
}

.bannerSubTitle {
    width: 78%;
    margin: 0 11%;
    position: absolute;
    top: 4.3rem;
    animation-duration: 1.6s;
    animation-delay: 0.5s;
}

.bannerSlogan {
    width: 66%;
    margin: 0 17%;
    position: absolute;
    top: 9rem;
    -webkit-animation: zoomSlogan 2s infinite ease-out;
    -moz-animation: zoomSlogan 2s infinite ease-out;
    -o-animation: zoomSlogan 2s infinite ease-out;
    -ms-animation: zoomSlogan 2s infinite ease-out;
    animation: zoomSlogan 2s infinite ease-out;
}

.bannerOpen {
    width: 42%;
    margin: 0 29%;
    position: absolute;
    top: 10rem;
}

.bannerDown {
    width: 7%;
    margin: 0 46.5%;
    position: absolute;
    top: 11.2rem;
    -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);
    }
}


/* 沙赛历程 */

.yaShaProgressTitle {
    width: 51%;
    margin: 0 24.5%;
}


/* 第一版 */


/* #scrollLoop {
    width: 100%;
    height: 600px;
    z-index: 2;
    cursor: pointer;
    background-image: url(../img/yaShaProgress.jpg);
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: repeat-x;
    animation-play-state: running;
    -webkit-animation: special 100s linear infinite;
    -moz-animation: special 100s linear infinite;
    -ms-animation: special 100s linear infinite;
    -o-animation: special 100s linear infinite;
    animation: special 100s linear infinite;
}

@-webkit-keyframes special {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

@-moz-keyframes special {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

@-ms-keyframes special {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

@-o-keyframes special {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

@keyframes special {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
} */


/* 第二版 */


/* #scrollLoop {
    width: 100%;
    height: 500px;
    z-index: 2;
    cursor: pointer;
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: repeat-x;
    overflow: scroll;
}

#scrollLoop img {
    width: 900%;
    -webkit-animation: scrollLoop 100s infinite ease-out;
    -moz-animation: scrollLoop 100s infinite ease-out;
    -o-animation: scrollLoop 100s infinite ease-out;
    -ms-animation: scrollLoop 100s infinite ease-out;
    animation: scrollLoop 100s infinite ease-out;
}

@-webkit-keyframes scrollLoop {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-90%, 0);
        -moz-transform: translate(-90%, 0);
        -o-transform: translate(-90%, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
}

@keyframes scrollLoop {
    0% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-90%, 0);
        -moz-transform: translate(-90%, 0);
        -o-transform: translate(-90%, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 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: 900%;
    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.8rem 0;
    background: url(../img/yaShaProgressContBg.png) no-repeat center center;
    background-size: cover;
}

.yaShaProgressCont p {
    font-size: 0.28rem;
    line-height: 0.46rem;
    text-align: center;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: #151111 5px 3px 3px;
}


/* 官方视频 */

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


/* 标题样式 */

.itemTitleBox {
    padding-top: 0.4rem;
}

.itemTitleBox p span:nth-child(1) {
    font-size: 0.36rem;
    line-height: 0.7rem;
    margin-left: 0.2rem;
    font-weight: bold;
    color: #ffc600;
    display: inline-block;
    border-bottom: 1px solid #ffc600;
}

.itemTitleBox p span:nth-child(2) {
    font-size: 0.28rem;
    margin-left: 0.2rem;
    font-weight: bold;
    color: #ffc600;
    display: inline-block;
}

.itemTitleBox02 p span:nth-child(1) {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.itemTitleBox02 p span:nth-child(2) {
    color: #ffffff;
}

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

.officialVideoPicBox {
    width: 30%;
    margin-left: 6%;
    position: relative;
}

.officialVideoPicBox .officialVideoPic {
    width: 100%;
}

.officialVideoPicBox .playBtn {
    width: 36%;
    position: absolute;
    top: 30%;
    left: 32%;
}

.officialVideoDetailBox {
    width: 94%;
    height: 2rem;
    margin: -2.1rem 3% 0 3%;
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(194, 125, 3, 0.26);
    border-radius: 15px;
}

.officialVideoItemBox {
    margin-bottom: 0.4rem;
    animation-duration: 2s;
}

.officialVideoDetailBox .officialVideoItem {
    padding-left: 37%;
    position: relative;
}

.officialVideoItemTitle {
    height: 0.6rem;
    position: relative;
}

.officialVideoItemTitle p {
    color: #c27d03;
    font-size: 0.3rem;
    line-height: 0.6rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.06rem;
}

.officialVideoItemTitle img {
    width: 13%;
    display: inline-block;
    position: absolute;
    top: 0.22rem;
    margin-left: 0.2rem;
}

.officialVideoItemCont {
    width: 75%;
}

.officialVideoItemCont p:nth-child(1) {
    color: #c27d03;
    font-size: 0.24rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
}

.officialVideoItemCont p:nth-child(2) {
    background: url(../img/officialVideoItemIcon01.png) no-repeat left center;
    background-size: 0.24rem;
    font-size: 0.22rem;
    line-height: 0.4rem;
    padding-left: 0.3rem;
    color: #bbbbbb;
}

.officialVideoItemCont p:nth-child(3) {
    background: url(../img/officialVideoItemIcon02.png) no-repeat left center;
    background-size: 0.24rem;
    font-size: 0.22rem;
    line-height: 0.4rem;
    padding-left: 0.3rem;
    color: #bbbbbb;
}

.officialVideoItemRightBtn {
    width: 0.15rem;
    position: absolute;
    right: 0.4rem;
    top: 0.8rem;
}

.officialVideoItemDetail {
    width: auto;
    position: absolute;
    right: 0rem;
    top: 1.2rem;
    font-size: 0.16rem;
    background-color: #c27d03;
    border-radius: 7px 0px 0px 7px;
    padding: 0.05rem;
    color: #ffffff;
    display: inline-block;
}


/* 亚沙风采展示 */

.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: scroll;
    padding-bottom: 0.15rem;
}

.yashaStyleShowTitle ul {
    width: 160%;
}

.yashaStyleShowTitle ul li {
    width: 13%;
    float: left;
    margin-right: 1.5%;
    font-size: 0.3rem;
    text-align: center;
    line-height: 0.7rem;
    color: #ffffff;
    font-weight: bold;
}

.yashaStyleShowTitle ul .active {
    color: #ffc600;
}

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

.yashaStyleShowTitle ul li:nth-child(1) {
    background: url(../img/yashaStyleShowTitleBg03.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(2) {
    background: url(../img/yashaStyleShowTitleBg01.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(3) {
    background: url(../img/yashaStyleShowTitleBg02.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(4) {
    background: url(../img/yashaStyleShowTitleBg04.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(5) {
    background: url(../img/yashaStyleShowTitleBg05.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(6) {
    background: url(../img/yashaStyleShowTitleBg06.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(7) {
    background: url(../img/yashaStyleShowTitleBg07.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(8) {
    background: url(../img/yashaStyleShowTitleBg08.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.yashaStyleShowTitle ul li:nth-child(9) {
    background: url(../img/yashaStyleShowTitleBg09.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.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.15rem;
    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%;
    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.1rem;
    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;
}

.opinionLeadersBox {
    padding-bottom: 0.2rem;
}

.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: 60%;
    /* left: 0.4rem; */
    background: url(../img/opinionLeadersPicItemBlockBg.png) no-repeat right center;
    background-size: cover;
    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 ul {
    width: 1200%;
}

.opinionLeadersSmallPicList ul li {
    width: 2.228%;
    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;
    margin: 0.2rem 0;
}

.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;
}


/* 参与院校 */

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

.participatingInstitutionsBlock {
    width: 94%;
    margin: 0.4rem 3% 0 3%;
    position: relative;
    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-pagination {
    bottom: 0;
    font-size: 0;
    margin: 0 20%;
    width: 60%;
}

.participatingInstitutionsBlock .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.1rem;
    margin: 0 0.04rem;
    border-radius: 0.05rem;
}

.participatingInstitutionsBlock .swiper-pagination-bullet-active {
    background: #f7a61a;
}


/* 特别鸣谢 */

.specialThanksBox {
    padding-bottom: 0.4rem;
}

.specialThanksBlock {
    width: 88%;
    margin: 0.4rem 6% 0 6%;
}

.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;
}

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

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

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

.technicalSupport a {
    font-size: 0.26rem;
    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: 92%;
    margin: 0 4%;
}

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

.videoTitleBox img {
    width: auto;
    height: 0.6rem;
    float: left;
    margin-right: 0.16rem;
}

.videoTitleBox .videoTitle {
    float: left;
    font-size: 0.3rem;
    line-height: 0.6rem;
}

.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;
}

.videoDetailBox .videoDetailSwiper {
    padding-bottom: 0.5rem;
}

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

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

.videoDetailSwiper .swiper-pagination-bullet {
    width: 0.6rem;
    border-radius: 0%;
    height: 0.15rem;
    outline: none;
    font-size: 0.26rem;
}

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

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

.backIndexBox a {
    text-align: center;
    font-size: 0.28rem;
    color: #ffffff;
    background: #ffc600;
    text-align: center;
    padding: 0.1rem 0.3rem;
    border-radius: 0.1rem;
    text-decoration: none;
}

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

.newsTitleBox {
    margin-top: 0.1rem;
    border-bottom: 1px solid #F3E5CD;
}

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

.newsTitleBox span {
    display: block;
    width: 40px;
    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;
}

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