/*-------------index.html-------------*/
.page_pc{
    display: none;
}
.page_container{
    font-size:15px;
    line-height: 28px;
    color: #333;
    overflow: hidden;
    padding-bottom: 60px;
    background: url("../images/page_bg.png") no-repeat;
    background-size: 100% auto;
    background-color: #e6efff;
    background-position: left bottom;
}

/*header*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 50px;
    background-color: #fff;
}
.nav{
    width: 100%;
}
.nav_list{
    display: flex;
    width: 94%;
    padding: 0 3%;
    line-height: 50px;
    justify-content: space-between;
}
.nav_item{
    position: relative;
    text-align: center;
}
.nav_item a{
    width: 100%;
    color: #333;
}
.nav_menu{
    display: none;
    position: absolute;
    top: 60px;
    left: calc((100% - 80px) / 2);
    width: 80px;
    line-height: 40px;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    box-shadow:-5px 5px 10px -4px #ddd,5px 5px 10px -4px #ddd;
}
.nav_menu a{
    display: inline-block;
    width: 100%;
    color: #333;
}
.nav_menu:before{
    content: ' ';
    display: inline-block;
    position: absolute;
    top: -17px;
    left: 30px;
    width: 0;
    height: 0;
    border: 10px transparent solid;
    border-bottom: 10px #fff solid;
}

/*center*/
.center{
    width: 100%;
    margin-top: 50px;
}
.banner{
    position: relative;
    width: 100%;
}
.banner img{
    width: 100%;
    height: auto;
}
.b_text{
    position: absolute;
    top: 46%;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 14px;
    text-shadow: 0 0 6px #0031b8;
}
.b_signup{
    position: absolute;
    top: 68%;
    left: 0;
    width: 94%;
    padding: 0 3%;
    text-align: center;
}
.b_signup a{
    width: 45%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 0 1%;
    border-radius: 70px;
    border: 2px #d6fbfe solid;
    background-image: linear-gradient( to right,#6695f6,#6db8fe);
}

.c_box{
    width: 100%;
    margin-top: 32px;
}
.c_title{
    width: 100%;
    text-align: center;
}
.c_title span{
    position: relative;
    display: inline-block;
    line-height: 36px;
    color: #2a6bd9;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    padding:0 46px;

}
.c_title span::before{
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 60px;
    height: 100%;
    background: url(../images/title_bg_left.png) no-repeat;
    background-size: 60px auto;
    background-position-y: center;
}
.c_title span::after{
    content: ' ';
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    width: 60px;
    height: 100%;
    background: url(../images/title_bg_right.png) no-repeat;
    background-size: 60px auto;
    background-position-y: center;
}


.bg_content,.details_content,.cost_content{
    width: 88%;
    margin: 0 auto;
    margin-top: 15px;
    padding: 15px 3%;
    border-radius: 6px;
    border: 2px #fff solid;
    background-image: linear-gradient(25deg,#fff 0,#f3f7ff 64%,#c0e2fe 100%);
}


/*news*/
.news_content{
    position: relative;
    width: 94%;
    margin: 0 auto;
    margin-top: 15px;
    overflow: hidden;
}
.swiper-container {
    width: 100%;
    height: 100%;
    --swiper-navigation-size: 25px;/* ���ð�ť��С */
}
.swiper-slide {
    width: 100%;
    background-color: #fff;
}
.news_item{
    width: 100%;
    padding-bottom: 6px;
}
.news_item a{
    width: 100%;
    height: auto;
    color: #333;
    overflow: hidden;
}
.news_item img{
    margin-bottom: 6px;
}
.news_title{
    height: 48px;
    padding:0 10px;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    word-break: break-all;
}
.view_more{
    display: none;
    width: 88px;
    height: 28px;
    color: #fff;
    margin-left: 10px;
    text-align: center;
    margin-top: 9px;
    font-size: 14px;
    border-radius: 30px;
    line-height: 28px;
    background-color: cornflowerblue;
}

.page_module{
    width: 100%;
    margin-top: 32px;
    padding: 30px 0;
    background: url("../images/page_module_m.png") no-repeat;
    background-size: 100% 100%;
}
.page_module .c_org{
    margin-top: 0;
}
.page_module .c_title span{
    color: #fff;
}
/*org*/
.org_content{
    width: 88%;
    margin: 0 auto;
    margin-top: 15px;
    padding: 15px 3%;
    border-radius: 6px;
    border: 2px #fff solid;
    background-image: linear-gradient(25deg,#f1f6ff 0,#f3f7ff 64%,#c0e2fe 100%);
}
.org_item{
    width: 90%;
    padding: 15px 5%;
    margin-bottom: 12px;
    border-radius: 10px;
    background-color: #fff;
}
.org_item:last-child{
    margin-right: 0;
}
.org_item p:first-child{
    color: #2a6bd9;
    font-size: 17px;
    font-weight: bold;
}

.zb_intro{
    position: relative;
    width: 96%;
    height: auto;
    padding: 46px 2% 10px 2%;
    text-indent: 32px;
    border: 2px #fff solid;
    border-radius: 10px;
    background-image: linear-gradient(25deg, #fff 0, #f3f7ff 55%, #c0e2fe 100%);
}
.zb_intro p:first-child{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-indent: 0;
    margin-bottom: 8px;
    border-bottom: 2px #fff solid;
    border-right: 2px #fff solid;
    background-image: linear-gradient(to right, #8ce8ff, #3f62db);
}
/*time*/
.time_content{
    width: 88%;
    margin: 0 auto;
    margin-top: 15px;
    padding: 15px 3%;
    border-radius: 6px;
    border: 2px #fff solid;
    background-image: linear-gradient(25deg,#f1f6ff 0,#f3f7ff 64%,#c0e2fe 100%);
}
.time_main{
    width: 94%;
    color: #fff;
    margin: 0 auto;
}
.time_item{
    position: relative;
    width: 240px;
    line-height: 36px;
    padding: 8px 15px;
    margin-bottom: 12px;
    margin-left: 40px;
    background: url("../images/time_bgm.png") no-repeat;
    background-size: 100% 100%;
}
.time_item::before{
    content: ' ';
    position: absolute;
    top: 0;
    left: -40px;
    display: inline-block;
    width: 17px;
    height: 100%;
    background: url("../images/icon_07.png") no-repeat;
    background-size: 100% auto;
    background-position: left center;
}
.time_item p:first-child{
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 2px;
}
.time_item p:first-child span:first-child{
    font-size: 24px;
    font-style: italic;
    margin-right: 3px;
    background:transparent;
}
.time_item p:first-child span:last-child{
    background-image:linear-gradient(#fffdf9,#fddb8a);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/*award*/
.award_content{
    width: 94%;
    margin-top: 15px;
    padding: 20px 3%;
    background: url("../images/prize_bg_m.png") no-repeat;
    background-size: 100% 100%;
}
.prize_type{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.pt_item{
    width: 31.333333%;
    height: 46px;
    color: #2a6bd9;
    margin: 0 1%;
    line-height: 46px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    border-radius: 6px;
    background-color: #d0e4fe;
    border: 1px #fff solid;
}
.pt_active{
    color: #fff;
    background-color: #ff7c42;
}
.pt_item span{
    display: inline-block;
    height: 100%;
    padding-left: 26px;
    background: url(../images/prize_icon.png) no-repeat;
    background-size: 22px auto;
    background-position: left center;
}
.award_main{
    display: none;
    width: 100%;
    margin-top: 15px;
    padding-top: 20px;
    background-color: #faf9fe;
    border-radius: 10px;
}
.award_main_active{
    display: block;
}
.award_list{
    display: flex;
    width: 96%;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}
.award_item{
    width: 45%;
    border-radius: 10px;
    padding: 10px 1.5%;
    margin: 5px 1%;
    background: url("../images/prize_item_bg.png") no-repeat;
    background-size: 100% 100%;
}
.award_item p:first-child{
    font-size: 17px;
    font-weight: bold;
}
.award_item p:last-child{
    font-size: 12px;
    letter-spacing: 0;
}
.award_item p:first-child span{
    color: #e00000;
    margin-left: 8px;
    font-size: 14px;
}
.award_info{
    padding: 15px 3%;
}

/*details--cost*/
.details_content p,.cost_content p{
    position: relative;
    padding-left: 37px;
    margin-bottom: 15px;
    line-height: 30px;
}
.details_content p:last-child,.cost_content p:last-child{
    margin-bottom: 0;
}
.details_content p::before,.cost_content p::before{
    content: attr(data-id);
    position: absolute;
    left: 0;
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    border-radius: 50%;
    background-image: linear-gradient(to bottom,#8ce8ff,#3f62db);
}


/*slider*/
.report_content,.show_content{
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: transparent;
}
.report_list,.show_list{
    width:100%;
    margin: 0 auto;
    overflow: hidden;
}
.report_list ul,.show_list ul{
    position:relative;
}
.report_list ul li,.show_list ul li{
    float: left;
    width: 150px;
    margin-right: 15px;
    text-align: center;
}
.report_list ul li a,.show_list ul li a{
    width: 100%;
}
.report_list ul li:last-child,.show_list ul li:last-child{
    margin-right: 0;
}
.report_list ul li p,.show_list ul li p{
    width: 100%;
    height: 20px;
    color: #fff;
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.report_list img,.show_list img{
    width: 150px;
    border: 1px #dcdddd solid;
    border-radius: 6px;
}


/*contact*/
.footer{
    width: 100%;
    margin-top: 32px;
}
.f_main{
    width: 88%;
    margin: 0 auto;
    margin-top: 15px;
    padding: 15px 3%;
    border-radius: 6px;
    text-align: center;
    line-height: 36px;
    border: 2px #fff solid;
    background-image: linear-gradient(25deg,#fff 0,#f3f7ff 64%,#c0e2fe 100%);
}
.f_right{
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.f_right img{
    width: 110px;
    height: 110px;
    background-color: #fff;
}

.sign_up_bottom{
    width: 90%;
    padding: 30px 5%;
}
.sign_up_bottom a{
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 17px;
    letter-spacing: 2px;
    font-weight: bold;
    border-radius: 30px;
    text-align: center;
    border: 2px #d6fbfe solid;
    background-image: linear-gradient( to right,#6695f6,#6db8fe);
}


.piaochuang{
    position: fixed;
    right: 0;
    bottom: calc((100vh - 112px) / 2);
    z-index: 12;
    width: 20px;
    height: 81px;
    font-size: 11px;
    padding: 31px 15px 0 15px;
    line-height: 14px;
    text-align: center;
    background: url(../images/piaochuang.png) no-repeat;
    background-size: 100% auto;
}
.slideLeft{
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;

    animation-duration: 1s;
    -webkit-animation-duration: 1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

}
@keyframes slideLeft {
    0% {
        transform: translateX(150%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
}

.slideRight{
    animation-name: slideRight;
    -webkit-animation-name: slideRight;

    animation-duration: 1s;
    -webkit-animation-duration: 1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

}
@keyframes slideRight {
    0% {
        transform: translateX(0%);
        opacity: 0;
    }
    100% {
        transform: translateX(150%);
        opacity: 1;
    }
}
@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(150%);
        opacity: 1;
    }
}