.title-w, .title-b {
    display: block;
    text-align: center;
    font-weight: bold;
}
.title-w { color: #FFFFFF;}
.title-b { color: #505050;}
.t-orange { color: #fc37aa;}
.main {padding-bottom: 0 !important;}

/* 大赛简介 */
.intro {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    background-color: #f6f0f5;
}

.intro .intro-left {
    width: calc(50vw - 550px);
    background: linear-gradient(to right bottom, #4c4c4c, #000000);
}

.intro .intro-detail {
    width: 850px;
    min-height: 263px;
    padding: 50px;
    color: #FFFFFF;
    background: linear-gradient(to right bottom,#f99190,#e5329b,#8e4ad1);
    box-sizing: border-box;
}

.intro .intro-detail.active {
    display: none;
}

.intro .intro-list {
    position: absolute;
    right: calc(50vw - 550px);
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    width: 300px;
    padding: 20px 0 20px 15px;
    box-sizing: border-box;
}

.intro .intro-list .intro-title {
    color: #FFFFFF;
    margin: 10px 0;
    padding: 15px 20px;
    font-weight: 600;
    background: linear-gradient(to right bottom,#f15fb0,#ea4eb1);
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
}

.intro .intro-list .intro-title:hover {
    /*background-color: #f4db8b;*/
    background: linear-gradient(to right bottom,#ffb197 60%,#f55ea5);
}

.intro .intro-list .intro-title.active {
    /*background-color: #f4db8b;*/
    background: linear-gradient(to right bottom,#ffb197 60%,#f55ea5);
}
.intro .mobile-intro-list {
    display: none;
    box-sizing: border-box;
    cursor: pointer;
}

.intro .mobile-intro-list .mobile-intro-title {
    width: calc(100% / 3);
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    background: linear-gradient(to right bottom,#f15fb0,#ea4eb1);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
}

.intro .mobile-intro-list .mobile-intro-title.active {
    /*background-color: #f4db8b;*/
    background: linear-gradient(to right bottom,#ffb197 60%,#f55ea5);
}
@media only screen and (max-width: 1100px) and (min-width: 960px) {
    .intro .intro-list {
        right: 0;
    }
}
@media only screen and (max-width: 960px) {
    .intro {
        flex-direction: column;
    }
    .intro .intro-left {
        display: none;
    }
    .intro .intro-detail {
        width: 100%;
        min-height: 0;
        height: fit-content;
        padding: 20px;
    }
    .intro .mobile-intro-list {
        display: flex;
    }
    .intro .intro-list {
        display: none;
    }
}
@media only screen and (max-width: 580px) {
    .intro .mobile-intro-list .mobile-intro-title {
        font-size: 12px;
    }
}

/* 通道入口 */
.channel {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 3vw;
}
.channel .box {
    position: relative;
    width: 50%;
    overflow: hidden;
}
.channel .box .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.channel .box:nth-child(1) .bg {
    background: url(../images/channel-left-yellow.png) no-repeat;
    background-size: cover;
}
.channel .box:nth-child(2) .bg {
    background: url(../images/channel-right-grey.png) no-repeat;
    background-size: cover;
}
.channel .box:nth-child(3) .bg {
    background: url(../images/channel-left-grey.png) no-repeat;
    background-size: cover;
}
.channel .box:nth-child(4) .bg {
    background: url(../images/channel-right-yellow.png) no-repeat;
    background-size: cover;
}
/*.channel .box:nth-child(1) {*/
/*    background: url(../images/channel-left-yellow.png) no-repeat;*/
/*    background-size: cover;*/
/*}*/
/*.channel .box:nth-child(2) {*/
/*    background: url(../images/channel-right-grey.png) no-repeat;*/
/*    background-size: cover;*/
/*}*/
/*.channel .box:nth-child(3) {*/
/*    background: url(../images/channel-left-grey.png) no-repeat;*/
/*    background-size: cover;*/
/*}*/
/*.channel .box:nth-child(4) {*/
/*    background: url(../images/channel-right-yellow.png) no-repeat;*/
/*    background-size: cover;*/
/*}*/
.channel .box a {
    display: block;
    width: 100%;
    transition: all 1s;
}
.channel .box a:hover .title  {
    display: none;
}
.channel .box a:hover {
    transform: scale(1.5);
}
.channel .box a .name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 280px;
    font-weight: 600;
}
.channel .box a .name .subtitle {
    margin-top: 20px;
}
.channel .box a:hover .subtitle::after {
    content: '通道';
}
.channel .box:nth-child(4) a:hover .subtitle::after {
    content: '教师培训通道';
}
.channel .box.shadow {
    background: #afb1b0 !important;
}
@media only screen and (max-width: 960px) {
    .channel {
        display: block;
    }
    .channel .box {
        width: 100%;
    }
    .channel .box a .name {
        min-height: 180px;
    }
    .channel .box:nth-child(4) {
        background: url(../images/channel-left-grey.png) no-repeat 100%;
        background-size: cover;
    }
    .channel .box:nth-child(3) {
        background: url(../images/channel-right-yellow.png) no-repeat 100%;
        background-size: cover;
    }
}

/* 赛事进度 */
.progress_con {
    /* background-color: #F2F2F2; */
    overflow-x: auto;
    margin-bottom: 3vw;
}

.progress_con::-webkit-scrollbar-thumb {
    background-color: #FFB900;
}

.progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 170px;
    text-align: center;
    margin: auto;
    background-image: linear-gradient(90deg,#fc37aa 100%,transparent 0);
    background-position: center;
    background-size: 30px 2px;
    background-repeat: repeat-x;
}

.progress .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    flex: 1;
    height: 100%;
}

.progress .item .pr_con {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.progress .progress-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: #fff 5px solid;
}

.progress .progress-dot div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #A3A3A3;
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.progress .dot {
    position: absolute;
    left: -8px;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background-color: #000000;
    border-radius: 50%;
}

.progress .dot-l {
    left: calc(100% - 8px);
}

.progress .item .time {
    color: #a0a0a0;
}

.progress .item.active .time {
    color: #fc55a7;
}

.progress .item .name {
    color: #a0a0a0;
}

.progress .item.active .name {
    color: #000;
}

.progress .item.active .progress-dot {
    width: 22px;
    height: 22px;
}

.progress .item.active .progress-dot div {
    background: linear-gradient(to bottom, #f6d03d, #fab636);
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 960px) {
    /*.progress {*/
    /*    height: 135px;*/
    /*    background-size: 30px 3px;*/
    /*}*/
    .progress .item .pr_con { line-height: 1.2em;}
    .progress .progress-dot {
        width: 18px;
        height: 18px;
    }
    /*.progress .dot {*/
    /*    top: calc(50% - 6px);*/
    /*    width: 12px;*/
    /*    height: 12px;*/
    /*}*/
}
@media only screen and (max-width: 580px) {
    /*.progress {*/
    /*    height: 100px;*/
    /*}*/
    .progress .progress-dot {
        width: 18px;
        height: 18px;
    }
    .progress .dot {
        top: calc(50% - 4px);
        width: 8px;
        height: 8px;
    }
}

/* 非专项赛道 */

.nospecial {
    width: 100%;
    padding: 3vw;
    box-sizing: border-box;
}

.nospecial .nospecial-list {
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
    margin: 2vw auto 0;
}

.nospecial .nospecial-list a {
    display: block;
    width: 15%;
    margin: 10px 9px;
    padding: 10px 10px;
    text-align: center;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
}

.nospecial .nospecial-list a:hover {
    background: linear-gradient(to right bottom,#fec2a6 10%,#f372b3 45%,#ec4daa 90%);
}

.nospecial .nospecial-list a img {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
    object-fit: contain;
}
@media only screen and (max-width: 1100px) and (min-width: 960px) {
    .nospecial .nospecial-list {
        width: 100%;
    }
    .nospecial .nospecial-list a {
        width: 18%;
    }
}

@media only screen and (max-width: 960px) and (min-width: 660px) {
    .nospecial .nospecial-list {
        width: 100%;
    }
    .nospecial .nospecial-list a {
        width: 22%;
    }
}

@media only screen and (max-width: 660px) and (min-width: 500px) {
    .nospecial .nospecial-list {
        width: 100%;
    }
    .nospecial .nospecial-list a {
        width: 29%;
    }
}

@media only screen and (max-width: 500px) {
    .nospecial .nospecial-list {
        align-items: center;
        width: 100%;
    }
    .nospecial .nospecial-list a {
        width: calc(50% - 20px);
    }
}

/* 大赛简介 */
/*.introduction {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/
/*.introduction .box {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    width: 50%;*/
/*    min-height: 280px;*/
/*    padding: 30px 60px;*/
/*    background: linear-gradient(228.08deg, #FDB813 0%, #F5DF4D 100%);*/
/*    overflow: hidden;*/
/*}*/
/*.introduction > .title {*/
/*    position: relative;*/
/*    padding: 0;*/
/*    background: #ffffff;*/
/*}*/
/*.introduction > .title .line {*/
/*    position: absolute;*/
/*    width: 40%;*/
/*    height: 1px;*/
/*    top: 135px;*/
/*    background-color: #000000;*/
/*}*/
/*.introduction > .title .circle {*/
/*    position: absolute;*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    top: 128px;*/
/*    left: 40%;*/
/*    border-radius: 50%;*/
/*    border: 3px solid #FDB813;*/
/*}*/
/*.introduction .title .name {*/
/*    position: absolute;*/
/*    top: 105px;*/
/*    left: 45%;*/
/*    width: calc(60% - 20px);*/
/*    font-weight: bold;*/
/*    line-height: 1.2em;*/
/*}*/
/*.introduction .box .title {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 18px;*/
/*    font-weight: bold;*/
/*}*/
/*.introduction .box .circle-t {*/
/*    display: inline-block;*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    margin-right: 12px;*/
/*    border-radius: 50%;*/
/*    border: 2px solid #000000;*/
/*}*/
/*.introduction .box > div {*/
/*    width: 70%;*/
/*    line-height: 1.2em;*/
/*}*/
/*.introduction .box p { text-align: justify;}*/
/*.introduction .purpose { justify-content: flex-end;}*/
/*.introduction .purpose p { width: 100%;}*/
/*.introduction .features { background: #F2F2F2;}*/
/*.introduction .features .circle-t { border: 2px solid #FDB813;}*/
/*@media only screen and (max-width: 1135px) {*/
/*    .introduction .box > div { width: 80%;}*/
/*}*/
/*@media only screen and (max-width: 960px) {*/
/*    .introduction { display: block;}*/
/*    .introduction .box {*/
/*        width: 100%;*/
/*        height: auto;*/
/*        min-height: 200px;*/
/*    }*/
/*    .introduction > .title .line { top: 50%; left: 0;}*/
/*    .introduction > .title .circle { top: calc(50% - 7px);	}*/
/*    .introduction .title .name { top: 38%;}*/
/*    .introduction .box {*/
/*        display: block;*/
/*        padding: 30px;*/
/*    }*/
/*    .introduction .box.purpose { background: #F2F2F2;}*/
/*    .introduction .box.features {*/
/*        background: linear-gradient(228.08deg, #FDB813 0%, #F5DF4D 100%);*/
/*    }*/
/*    .introduction .box > div { width: 100%;}*/
/*}*/

/*关于大赛*/
.aboutEvent{
    /*height: 260px;*/
    padding: 3vw;
    background: url("../images/aboutEvent.png") no-repeat top left;
    background-size:cover;
}
.aboutEvent .title-w { margin-bottom: 3vw;}
.aboutEvent .eventList {
    display: flex;
    justify-content: space-around;
    width: 70%;
    margin: auto;
}
.aboutEvent .eventList .event {
    flex: 1;
    text-align: center;
    padding: 0 4px;
}
.aboutEvent .eventList .event a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}
.aboutEvent .eventList img{
    width:48px;
    height: 48px;
    margin-bottom: 10px;
}
.aboutEvent .event .img_active { display: none;}
.aboutEvent .event:hover .img { display: none;}
.aboutEvent .event:hover .img_active { display: block;}
.aboutEvent .event:hover span { color:#ffb900;}
.aboutEvent .event .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 810px) {
    .aboutEvent .eventList { width: 100%;}
    .aboutEvent .eventList .even { margin: 5px;}
    .aboutEvent .eventList img {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }
}

/*大赛新闻*/
.dynamicEvent { padding: 3vw 0;}
/*wkk*/
.Contest_Journalism {
    position: relative;
    display: flex;
    justify-content: center;
}

.Contest_Journalism .Contest_ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-height: 550px;
    max-width: 1100px;
}

.Contest_Journalism .Contest_ul li {
    list-style: none;
    max-width: 500px;
}

.Contest_Journalism .Contest_ul li a {
    height: 112px;
    display: flex;
    width: 500px;
    padding-top: 25px;
    text-decoration: none;
    justify-content: space-between;
    font-size: 19px;
    padding-left: 10px;
}

.Contest_Journalism .Contest_ul li:nth-child(2) a {
    margin-top: 30px;
}

.Contest_Journalism .Contest_ul li:nth-child(2) a,
.Contest_Journalism .Contest_ul li:nth-child(4) a,
.Contest_Journalism .Contest_ul li:nth-child(6) a {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-top: 61px;
}

.Contest_Journalism .Contest_img {
    position: absolute;
    width: 21px;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    margin: auto;
}

.Contest_Journalism .Contest_ul li span {
    margin-right: 20px;
    line-height: 28px;
    display: inline-block;
    color: #555550;
    max-width: 78%;
}

.Time_text {
    width: 76px;
    display: flex;
    flex-direction: column;
}

.Time_text span:nth-child(1) {
    color: #aaaaaa !important;
}

.Time_text span:nth-child(2) {
    color: #ccc !important;
}

@media only screen and (max-width: 1088px) {
    .Contest_Journalism .Contest_ul li a {
        width: 450px;
        padding-left: 10px;
    }
    .Contest_Journalism .Contest_ul li span {
        width: 100%;
    }
    .Time_text {
        width: 82px;
    }
}

@media only screen and (max-width: 960px) {
    .Contest_Journalism .Contest_ul li a {
        width: 400px;
        padding-left: 10px;
        font-size: 17px;
    }
    .Contest_Journalism .Contest_ul li span {
        width: 100%;
    }
    .Time_text {
        width: 82px;
    }
    .Contest_Journalism .Contest_ul li:nth-child(2) a {
        margin-top: 0px;
    }
    .Contest_Journalism .Contest_ul li:nth-child(2) a,
    .Contest_Journalism .Contest_ul li:nth-child(4) a,
    .Contest_Journalism .Contest_ul li:nth-child(6) a {
        flex-direction: row;
        justify-content: flex-start;
        padding-top: 21px;
    }
}

@media only screen and (max-width: 860px) {
    .Contest_Journalism .Contest_ul {
        display: block;
        margin-left: 50px;
    }
    .Contest_Journalism .Contest_ul li a {
        width: 100%;
        /* width: 318px; */
        height: auto;
        padding-left: 10px;
        font-size: 16px;
    }
    .Contest_Journalism .Contest_ul li span {
        max-width: 100%;
        width: 100%;
    }
    .Time_text {
        width: 82px;
    }
    .Contest_Journalism .Contest_img {
        left: 50px;
        right: auto;
    }
}

@media only screen and (max-width: 680px) {
    .Contest_Journalism .Contest_ul li a {
        /* width: 244px; */
        /* width: 320px; */
        height: auto;
        padding-left: 10px;
        font-size: 14px;
    }
    .Contest_Journalism .Contest_ul li span {
        width: 100%;
    }
    .Time_text {
        width: 82px;
    }
    .Contest_Journalism .Contest_img {
        left: 30px;
    }
}

@media only screen and (max-width: 500px) {
    .Contest_Journalism .Contest_ul li a {
        /* width: 275px; */
        font-size: 10px;
        padding-left: 10px;
    }
    /*.Contest_Journalism .Contest_ul li:nth-child(2) .Time_text,*/
    /*.Contest_Journalism .Contest_ul li:nth-child(4) .Time_text,*/
    /*.Contest_Journalism .Contest_ul li:nth-child(6) .Time_text {*/
    /*    width: 97px;*/
    /*    margin-left: 11px;*/
    /*}*/
    .Contest_Journalism .Contest_ul li span {
        margin-right: 14px;
        line-height: 19px;
        width: 100%;
    }
    .Contest_Journalism .Contest_img {
        width: 17px;
        height: 420px;
    }
    .Time_text {
        width: 83px;
    }
}

@media only screen and (max-width: 350px) {
    .Contest_Journalism .Contest_ul li a {
        /* width: 200px; */
        font-size: 10px;
        padding-left: 10px;
    }
}

@media only screen and (max-width: 305px) {
    .Contest_Journalism .Contest_ul li a {
        /* width: 180px; */
        font-size: 7px;
        padding-left: 10px;
    }
}
/*-- ↑↑ --wkk*/
.dynamicEvent .dynamic {
    margin: 3vw auto 0;
    width: 65%;
    display: flex;
    flex-wrap: wrap;
}
.dynamicEvent .dynamicItem {
    position: relative;
    height: 15vw;
    width: 30%;
    margin: 0 30px 30px 0;
    box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
}
.dynamicEvent .dynamicItem .img {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px 0px #ccc;
    overflow: hidden;
}
.dynamicEvent .dynamicItem img:hover{
    transform: scale(1.2);
    transform-origin: center;
}
.dynamicEvent .dynamicItem .info {
    position: absolute;
    width: 100%;
    height: 4em;
    bottom: 0;
    padding: 0.3em 1em;
    background-color: #FFFFFF;
}
.dynamicEvent .info .description {
    margin-top: 8px;
    font-size: 12px;
    color: #A3A3A3;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.dynamicEvent .dynamicItem:nth-child(2) .img,
.dynamicEvent .dynamicItem:nth-child(3) .img,
.dynamicEvent .dynamicItem:nth-child(6) .img {
    height: 62%;
}
.dynamicEvent .dynamicItem:nth-child(even) { margin-right: 0;}
.dynamicEvent .dynamicItem:nth-child(1),
.dynamicEvent .dynamicItem:nth-child(4),
.dynamicEvent .dynamicItem:nth-child(5) {
    width: calc(70% - 30px);
}
.dynamicEvent .dynamicItem:nth-child(1) .info,
.dynamicEvent .dynamicItem:nth-child(4) .info,
.dynamicEvent .dynamicItem:nth-child(5) .info {
    height: 2.6vw;
    padding: 0 15px;
    background-color: rgba(0,0,0,.5);
}
.dynamicEvent .dynamicItem:nth-child(1) .title,
.dynamicEvent .dynamicItem:nth-child(4) .title,
.dynamicEvent .dynamicItem:nth-child(5) .title {
    line-height: 2.6vw;
    color: #FFFFFF;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.dynamicEvent .dynamicItem:nth-child(2) .info .title,
.dynamicEvent .dynamicItem:nth-child(3) .info .title,
.dynamicEvent .dynamicItem:nth-child(6) .info .title {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.dynamicEvent .dynamicItem:nth-child(1) .description,
.dynamicEvent .dynamicItem:nth-child(4) .description,
.dynamicEvent .dynamicItem:nth-child(5) .description {
    display: none;
}
.showMore {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    height: 60px;
    width: 10em;
    line-height: 40px;
    text-align: center;
    color: #505050;
    box-shadow: 0 0 3px 0px #ccc;
}
@media only screen and (max-width:1100px) {
    .dynamicEvent .dynamic { width: 80%;}
}
@media only screen and (max-width:960px) {
    .dynamicItem:nth-child(n+4) { display: none;}
    .dynamicEvent .dynamic {
        flex-direction: column;
    }
    .dynamicEvent .dynamicItem {
        height: 40vw;
        width: 100% !important;
        margin:10px 0;
    }
    .dynamicEvent .dynamicItem .img {
        height: 70% !important;
    }
    .dynamicEvent .dynamicItem .info {
        padding: 10px !important;
        height: 30% !important;
    }
    .dynamicEvent .dynamicItem .info .title {
        line-height: 1.2em !important;
        white-space: nowrap !important;
        display: block !important;
    }
    .dynamicEvent .bottom { height: 4em;}
}
@media only screen and (max-width:800px) {
    .dynamicEvent { padding: 30px 0;}
}

/*专项赛道*/
#specialEvent {
    padding: 3vw;
    background: linear-gradient(to bottom, #F2F2F2 0, #F2F2F2 230px, #ffffff 230px, #ffffff 100%);
}
#specialEvent .slide-content {
    height: 24.2vw;
    margin-top: 2vw;
}
#specialEvent .wrap {
    /*width: 48vw;*/
    height: 100%;
    margin: auto;
}
#specialEvent ul {
    align-items: center;
    width: 100% !important;
}
#specialEvent .slide-item {
    position: relative;
    width: calc(48vw / 3);
    /*height: 24.2vw;*/
    /*height: 18.2vw;*/
    margin-left: 1vw;
}
#specialEvent .slide-item img {
    /*height: 18vw;*/
    height: 100%;
    margin: 1.1vw 0;
    object-fit: cover
}
#specialEvent .slide-item .name {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    background-color: rgba(0,0,0,.5);
    z-index: 99;
}
#specialEvent .slide-item:hover{
    transform: scale(1.1);
    transform-origin: center;
    z-index: 999;
}


.match-content{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.match-content .match-ul{
    width: 65%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.match-content .match-item{
    margin-top: 50px;
    width: 15vw;
    height: 22vw;
    /*display: flex;*/
    /*flex-direction: row;*/
    /*align-items: center;*/
}

.match-content .match-item .name{
    position: relative;
    top: -50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    background-color: rgba(0,0,0,.5);
    z-index: 99;
}

.match-content .match-item:hover{
    transform: scale(1.1);
    transform-origin: center;
    z-index: 999;
}

/* 赛事讲解 */
.video-content{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.video-content .video-ul{
    width: 1050px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.video-content .video-item{
    margin-top: 50px;
    width: 480px;
    height: 270px;
}

@media screen and (max-width: 650px) {
    .video-content .video-item{
        margin-top: 50px;
        width: 384px;
        height: 216px;
    }
}

@media screen and (max-width: 376px) {
    .video-content .video-item{
        margin-top: 50px;
        width: 345px;
        height: 195px;
    }
}


/* 获奖作品选 院校毕设作品展 */

.works {
    /* position: relative; */
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    background-color: #f0f0f0;
}

.works .works-title {}
.works .works-title .works-title-con {
    padding: 36px 25px 36px calc(50vw - 550px);
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    color: #333;
    background-color: #f0f0f0;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, .3);
    cursor: pointer;
}

.works .works-title .works-title-con.active {
    color: #fff;
    background: linear-gradient(to right bottom, #4c4c4c, #000000);
}

.works .works-title .works-title-con div {
    width: 4em;
}

.works .works-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    padding: 40px calc(50vw - 550px) 20px 35px;
    box-sizing: border-box;
}

.works .works-list.active {
    display: none;
}

.works .works-list .works-list-con {
    display: block;
    width: 18%;
    height: fit-content;
    margin: 5px 9px;
    padding: 10px 15px;
    text-align: center;
    background-color: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.works .works-page {
    position: absolute;
    top: 10px;
    right: calc(50vw - 550px);
    z-index: 99;
    display: flex;
    justify-content: space-around;
}

.works .works-page img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
}

@media only screen and (max-width: 1100px) and (min-width: 960px) {
    .works .works-page {
        right: 0;
    }
    .works .works-title .works-title-con {
        padding: 20px;
        height: 50%;
        line-height: 2;
    }
    .works .works-list {
        padding: 40px 10px 20px 10px;
    }
    .works .works-list .works-list-con {
        width: 17%;
        margin: 5px 12px;
    }
}

@media only screen and (max-width: 960px) {
    .works {
        display: block;
    }
    .works .works-title {
        display: flex;
        width: 100%;
    }
    .works .works-title .works-title-con {
        padding: 25px 15px;
        width: 50%;
    }
    .works .works-title .works-title-con div {
        width: 100%;
        text-align: center;
    }
    .works .works-list {
        padding: 20px;
        padding-top: 35px;
    }
    .works .works-list .works-list-con {
        width: 44%;
    }
    .works .works-page {
        right: 0;
    }
}

@media only screen and (max-width: 350px) {
    .works .works-list .works-list-con {
        width: 66%;
    }
    .works .works-list {
        justify-content: center;
    }
}

/*赛区列表*/
.areaEvent {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3vw;
    /* background-image: url(../images/areaEvent.png);
    background-size: cover; */
    background-color: #FC55A7;
    /*background-color: #f9bb03;*/
    text-align: center;
    color: #FFFFFF;
}

.areaEvent .areaList {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.areaEvent .areaList .areaItem {
    width: 15%;
    margin: 0 7px;
    /* padding: 0 20pt; */
    /* border-left: 2px dashed #FDB813; */
    line-height: 1.2em;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
}

.areaEvent .areaList .areaItem:nth-child(2),
.areaEvent .areaList .areaItem:nth-child(4) {
    background-color: #faf5c8;
}


/* .areaEvent .areaList .areaItem:last-child {
    border-right: 2px dashed #FDB813;
} */

.areaEvent .areaName {
    color: #333;
    min-height: 3em;
    padding-top: 10px;
    line-height: 2em;
    /*background: linear-gradient(to right bottom, #fab802, #fae008);*/
    background: linear-gradient(to right bottom,#ffb197 60%,#f55ea5);
}

.areaEvent .areaItem .subArea {
position: relative;
min-height: 2em;
}

.areaEvent .subName {
/*line-height: 42px;*/
    min-height: 3em;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    background-color: rgba(255, 255, 255, .2);
    cursor: default;
}

.areaEvent ol {
    position: absolute;
    width: 100%;
    z-index: 99;
    display: none;
}

.areaEvent ol li {
    width: 100%;
    background-color: #FFFFFF;
}

.areaEvent .subArea:hover .subName {
    background-color: #FC55A7;
    color: #000;
}

.areaEvent .subArea:hover ol {
    display: block;
}
@media only screen and (max-width:1240px) {
    .dynamicEvent .dynamic { width: 80%;}
    .areaEvent .areaList { flex-wrap: wrap;}
    .areaEvent .areaList .areaItem { width: 15%;}
}
@media only screen and (max-width:1024px) {
    .areaEvent .areaList .areaItem { width: 18%;}
}
@media only screen and (max-width:930px) {
    .areaEvent { padding: 30px;}
    .areaEvent .areaList { justify-content: flex-start;}
    .areaEvent .areaList .areaItem {
        width: 33%;
        margin: 10px 0;
        /*padding: 0 10px;*/
    }
    .areaEvent .areaList .areaItem:nth-child(3n+1) {
        border: none;
    }
}
@media only screen and (max-width:700px) {
    .areaEvent .areaList { margin-top: 10px;}
    .areaEvent .areaName { font-size: 13px;}
}

/* 往届回顾 */
#review {
    padding-bottom: 10px;
    background-color: #FFFFFF;
}
#review.slide .wrap {
    width: 72%;
    height: 25vw;
}
#review ul {
    height: 25vw;
    width: 100% !important;
}
#review .slide-item {
    position: relative;
    padding: 0 1.5vw;
    width: 25%;
}
#review .slide-item .slide-image {
    height: calc(100% - 5vw);
}
#review .slide-item .shadow {
    position: absolute;
    top: calc(100% - 5vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4vw);
    height: auto;
}
#review .prev { left: 5%;}
#review .next { right: 5%;}

/* 优秀指导教师 */
.teacher {
    position: relative;
    overflow: hidden;
}
.teacher .title-w {
    display: block;
    text-align: center;
    padding: 2vw 0;
    background-color: #000000;
}
.teacher .square-g {
    position: absolute;
    top: 200px;
    right: 20px;
    width: 25vw;
    height: 25vw;
    max-width: 600px;
    max-height: 600px;
    background: linear-gradient(180deg, #FFFFFF 0%, #e9e9e9 100%);
    transform: rotate(135deg);
    z-index: -999;
}
.teacher .teacher-box {
    position: relative;
    display: flex;
    width: 64%;
    margin: 5vw auto;
    padding: 2vw 2vw 2vw calc(16vw - 40px);
    background-color: #ffffff;
    box-shadow: 0px 0px 30px rgba(80, 80, 80, 0.2);
    border-radius: 24px;
}
.teacher .teacher-box .square-o {
    position: absolute;
    top: 45px;
    left: -45px;
    width: 16vw;
    height: 16vw;
    background: linear-gradient(180deg,#fff,#fc37aa);
    transform: rotate(135deg);
}
.teacher .teacher-img {
    position: absolute;
    height: 22vw;
    width: 16vw;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}
.teacher .teacher-info {
    position: relative;
    float: left;
    height: 17vw;
    flex: 1;
    padding: 1vw 2.5vw;
    color: #505050;
    z-index: 99;
}
.teacher .teacher-info .description { margin: 15px 0;}
.teacher .teacher-info .line {
    width: 30px;
    height: 2px;
    background-color: #FDB813;
}
.teacher .teacher-info .content {
    height: 6em;
    margin-top: 20px;
    padding: 0;
    line-height: 1.5em;
    color: #A3A3A3;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.teacher .teacher-info .more {
    position: absolute;
    bottom: -1vw;
    right: 2.5vw;
    color: #505050;
}
.teacher .teacher-list {
    float: left;
    right: 0;
    width: 20vw;
    height: 20vw;
}
.teacher .teacher-item {
    float: left;
    width: calc(100% / 3);
    height: calc(100% / 3);
    cursor: pointer;
}
.teacher .JQ-slide-nav a {
    position: absolute;
    height: 4vw;
    width: 7vw;
    z-index: 99;
    top: 60%;
    transform: translateY(-50%);
}
.teacher .prev { left: 4%;}
.teacher .next { right: 8%;}
@media only screen and (max-width:1200px) {
    .teacher .teacher-info .description {margin: 5px 0;}
    .teacher .teacher-info .content { margin-top: 5px;}
}
@media only screen and (max-width:1000px) {
    .teacher .teacher-list { display: none;}
    .teacher .teacher-info { height: 22vw;}
}
@media only screen and (max-width:770px) {
    .teacher .teacher-img {
        height: 170px;
        width: 130px;
    }
    .teacher .teacher-box { padding: 2vw 2vw 2vw 85px}
    .teacher .teacher-info { height: 175px;}
}

/* 新锐艺术家 */
.slide {
    position: relative;
    width: 100%;
    padding: 3vw 0;
    background-color: #F2F2F2;
}
.slide .wrap {
    height: 28vw;
    margin: 3vw auto;
}
.slide .wrap ul {
    display: flex;
    justify-content: center;
    height: 100%;
}
.slide .slide-item {
    position: relative;
    width: calc(65vw / 4);
    height: 100%;
}
.slide .slide-item .more {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(135, 135, 135, .72);
    z-index: 99;
    display: none;
}
.slide .slide-item:hover .more { display: flex;}
.slide .slide-img {
    height: 64%;
    width: 100%;
}
.slide .slide-info {
    width: 100%;
    height: 36%;
    padding: 1.2vw 1vw;
    background-color: #FFFFFF;
    overflow: hidden;
}
.slide .slide-info .line {
    width: 40px;
    height: 1px;
    margin: 5px 0;
    background-color: #000000;
}
.slide .slide-item:nth-child(even) .slide-info {
    position: absolute;
    top: 0;
}
.slide .slide-item:nth-child(even) .slide-img {
    position: absolute;
    bottom: 0;
}
.slide .slide-item:hover {
    cursor: pointer;
}
.slide .slide-item:hover .slide-info {
    cursor: pointer;
    /*background: linear-gradient(to right,#F3EB2F,#F8DF20);*/
    background: linear-gradient(to right bottom, rgb(254, 194, 166) 10%, rgb(243, 114, 179) 45%, rgb(236, 77, 170) 90%);
}
.slide .JQ-slide-nav a {
    position: absolute;
    height: 4vw;
    width: 7vw;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
}
.slide .prev { left: 8%;}
.slide .next { right: 8%;}
.slide-s .wrap {
    position: relative;
    width: 65%;
    overflow: hidden;
}
.slide-s .wrap ul {
    position: absolute;
    display: block;
    min-width: 100%;
}
.slide-s .slide-item {
    float: left;
}
#artist .slide-info .name { line-height: 1.2em;}
#artist .slide-info .description {
    line-height: 1.5em;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
@media only screen and (max-width:1170px) {
    #artist .slide-info .description { -webkit-line-clamp: 2;}
}
@media only screen and (max-width:950px) {
    #artist .slide-info .description { -webkit-line-clamp: 1;}
}
@media only screen and (max-width:650px) {
    #artist .slide-info .line { display: none;}
    #artist .slide-info .description { display: none;}
}

/*大赛合作*/
.cooperationEvent { padding-top: 3vw;}
.cooperationEvent .cooperation {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3vw;
}
.cooperationEvent .item{
    width: 50%;
    height: 11vw;
}

/* 赛事共享 */
#share {
    padding: 3vw 0;
    background-color: #FFFFFF;
}
#share .slide-content {
    height: 15vw;
    margin-top: 2vw;
}
#share .wrap {
    width: 80vw;
    height: 100%;
    margin: auto;
}
#share ul {
    width: 100% !important;
    align-items: center;
}
#share .slide-item {
    position: relative;
    width: calc(80vw / 3);
    padding: 1vw;
}
#share .slide-item:hover{
    transform: scale(1.1);
    transform-origin: center;
    z-index: 999;
}
#share .JQ-slide-nav a { top: 55%;}
#share .prev { left: 2%;}
#share .next { right: 2%;}

/* 数据统计 */
.dataStatistics {
    width: 100%;
    /*height: 289px;*/
    padding: 3vw 0;
    background-color: rgba(0, 0, 0, 0.89);
    box-shadow: 0 0 50px inset rgba(255,255,255,0.3);
}
.dataStatistics .dataList {
    display: flex;
    justify-content: space-around;
    height: 100%;
    margin: auto;
    padding: 0 20px;
}
.dataStatistics .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: #FFFFFF;
    min-width: 5em;
    text-align: center;
    line-height: 1.2em;
}
.dataStatistics .item .line {
    width: 1px;
    height: 2vw;
    margin: 0.4vw;
    background-color: #FFFFFF;
}
.dataStatistics .item .line_o {
    height: 1px;
    width: 2vw;
    margin: 0.8vw 0 0.4vw;
    background-color: #FC55A7;
}
.dataStatistics .item .icon {
    height: 2vw;
    /*width: 2vw;*/
    margin-bottom: 0.4vw;
}
.dataStatistics .item .icon img {
    height: 2vw;
    width: 2vw;
    object-fit: contain;
}
.dataStatistics .item .square {
    width: 0.8vw;
    height: 0.8vw;
    background: rgba(253, 184, 19, 1);
    transform: rotate(45deg);
}
@media only screen and (max-width:690px) {
    .dataStatistics { height: 200px;}
}

/* 官方认定 */

.official {
    padding: 3vw 0;
}

.official .logoList {
    width: 80%;
    margin: 1vw auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.official .logoList .item {
    width: 33%;
    height: 5vw;
    padding: 0 0.33vw;
    margin-bottom: 0.5vw;
}

.official .logoList .item:hover {
    box-shadow: 0px 0px 10px rgba(80, 80, 80, .5);
}

/* 合作单位 */
.cooperationUnit {
    padding: 3vw 0;
}
.cooperationUnit .logoList {
    width: 80%;
    margin: 1vw auto;
    display: flex;
    flex-wrap: wrap;
}
.cooperationUnit .logoList .item {
    width: 20%;
    height: 4vw;
    padding: 0 0.3vw;
    margin-bottom: 0.5vw;
}
.cooperationUnit .logoList .item:hover {
    box-shadow: 0px 0px 10px rgba(80, 80, 80, .5);

}

/* 友情链接 */
.otherInfo {
    display: flex;
    width: 100%;
    padding: 3vw 0;
    background: url(../images/bg_link.png) no-repeat;
    background-size: cover;
}
.otherInfo .title-w {
    text-align: left;
    margin-bottom: 1.5vw;
}
.otherInfo .content {
    width: 50%;
    padding-left: 12%;
}
.otherInfo .item {
    display: flex;
    align-items: center;
    margin-top: 0.5em;
    padding-bottom: 0.5em;
    line-height: 1.2em;
    color: #7e8187;
}
.otherInfo .item .icon {
    display: flex;
    align-items: center;
    height: 10px;
    width: 15px;
    margin-right: 10px;
}
.otherInfo .item .icon img {
    width: auto;
    margin: auto;
}
.otherInfo .item a { color: #7e8187;}
.otherInfo .item a:hover { color: #FFFFFF;}
.otherInfo .linkList .item { border-bottom: 1px solid #3c3f49;}
.otherInfo .linkList .item a {
    display: flex;
    width: 100%;
    align-items: center;
}
@media only screen and (max-width:890px) {
    .otherInfo {
        flex-direction: column;
        align-items: center;
    }
    .otherInfo .title-w { font-size: 14px;}
    .otherInfo .content {
        width: 80%;
        padding: 0;
        margin-bottom: 10px;
    }
}

/* 悬浮按钮 */
.hover-button {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 99;
}
.hover-button li {
    width: 50px;
    margin-bottom: 10px;
}
.hover-button li a {
    display: block;
    width: 100%;
}
.hover-button li a img {
    width: 100%;
    height: auto;
}

/* 系统公告 */
.system-notice{
    width:25%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
}
@media screen and (max-width:750px) {
    .system-notice{
        width:50%;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 99;
    }
}