/*-------------index.html-------------*/
.page_mobile{
    display: none;
}
.page_container{
    min-width: 1200px;
    letter-spacing: 1px;
    font-size: 16px;
    color: #333;
    line-height: 32px;
    background-color: #eef0fd;
}
/*header*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width:100%;
    height:80px;
    line-height:80px;
    margin:auto;
    background-color:#fff;
}
.h_mian{
    width:1200px;
    margin:auto;
}
.h_logo{
    float: left;
    width: 54px;
    margin-right: 25px;
}
.h_logo img{
    width: 54px;
}
.h_nav{
    float:left;
}
.h_nav li{
    position: relative;
    float:left;
    text-align:center;
    color:#333;
    cursor:pointer;
    margin-right: 25px;
}
.h_nav a{
    color:#333;
    display:inline-block;
}
.h_login{
    float:right;
}
.h_login a{
    display:inline-block;
    min-width:80px;
    height:35px;
    color: #fff;
    line-height:35px;
    text-align:center;
    border-radius:30px;
    margin-left: 5px;
    padding: 0 15px;
    background-color: #444bfc;
}

.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: 80px;
}
.banner{
    width: 100%;
    height: 500px;
    background: url("../images/banner.jpg") no-repeat center;
}

.entrance_main{
    width: 100%;
    padding: 20px 0;
    background-color: #f5f6fa;
}
.entrance{
    position: relative;
    width: 1200px;
    margin: 0 auto;
}
.e_1{
    position: relative;
    float: left;
    width: 378px;
    height: 92px;
    padding-right: 22px;
    text-align: center;
    background: url(../images/entrance_bg.png) no-repeat;
    background-size: 100% 100%;
}
.e_1 a{
    display: inline-block;
    width: 100%;
    color: #fff;
    padding: 17px 0;
}
.e_1 span:first-child{
    display: block;
    width: 162px;
    height: 33px;
    line-height: 33px;
    background-color: #fff;
    border-radius: 4px;
    color: #444bfc;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}
.e_1:before{
    content: ' ';
    position: absolute;
    top: 33px;
    left: 0;
    display: inline-block;
    width: 0;
    height: 0;
    border: 14px transparent solid;
    border-left: 22px #f4f6f9 solid;
}
.e_1:first-child:before {
    display: none;
}


.subject_select{
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}
.subject_item{
    float: left;
    width: 156px;
    height: 194px;
    text-align: center;
    margin-right: 18px;
    border-radius: 10px;
    background: url("../images/subject_bg.png")  no-repeat;
    background-size: 100% 100%;
    box-shadow: 0 0 5px #ff9113;
}
.subject_item:last-child{
    margin-right: 0;
}
.subject_item:hover{
    transform: scale(1.15); /* 放大至原来的1.1倍 */
    transition: transform 0.8s ease; /* 平滑过渡效果 */
}
.subject_item a{
    padding-top: 75px;
    background: url("../images/subject_icon.png")  no-repeat;
    background-size: 36px 36px;
    background-position: center 28px;
}
.subject_item:nth-child(2) a{background-image: url("../images/subject_icon2.png");}
.subject_item:nth-child(3) a{background-image: url("../images/subject_icon3.png");}
.subject_item:nth-child(4) a{background-image: url("../images/subject_icon4.png");}
.subject_item:nth-child(5) a{background-image: url("../images/subject_icon5.png");}
.subject_item:nth-child(6) a{background-image: url("../images/subject_icon6.png");}
.subject_item:nth-child(7) a{background-image: url("../images/subject_icon7.png");}

.subject_item p:first-child{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 3px #c66b04;
}
.subject_item p:nth-child(2){
    width: 124px;
    height: 30px;
    color: #ff9113;
    line-height: 30px;
    text-align: center;
    border-radius: 30px;
    margin-top: 25px;
    font-size: 15px;
    background-color: #fff;
}


.c_box{
    width: 100%;
    margin-top: 82px;
}
.c_title{
    width: 100%;
    height: 50px;
    text-align: center;
}
.c_title p{
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 3px;
    background-image: linear-gradient(#d3d5fc, transparent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c_title span{
    position: relative;
    top: -29px;
    display: inline-block;
    line-height: 40px;
    color: #444bfc;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 7px;
    padding: 0 260px;
}
.c_title span::before{
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 244px;
    height: 100%;
    background: url("../images/title_left.png") no-repeat;
    background-size: 100% auto;
    background-position: left bottom;
}
.c_title span::after{
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 244px;
    height: 100%;
    background: url("../images/title_right.png") no-repeat;
    background-size: 100% auto;
    background-position: left bottom;
}
.mian_content{
    width: 1200px;
    margin: 0 auto;
    margin-top: 36px;
}
/*news*/
.news_content{
    min-height: 214px;
}
.news_slider{
    float: left;
    width: 460px;
}
.news_slider img{
    width: 460px;
    height: 214px;
}
.news_list_box{
    float: right;
    width: 710px;
    font-size: 16px;
}
.news_list{
    height: 214px;
    overflow: hidden;
}
.news_item{
    width: 100%;
    height: 42px;
}
.news_item a{
    width: 100%;
    height: 42px;
    line-height: 42px;
}
.n_right h4{
    position: relative;
    float: left;
    width: 80%;
    color: #4c514a;
    font-weight: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news_time{
    float: left;
    width: 20%;
    color: #4c514a;
    font-size: 14px;
    text-align: right;
    letter-spacing: 0;
}

/*organization*/
.c_org{
    width: 100%;
    padding-top: 56px;
    padding-bottom: 235px;
    background: url(../images/org_bg.png) no-repeat center;
}
.c_org .c_title p{
    background-image: linear-gradient(#3f49f5, transparent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c_org .c_title span{
    color: #eef0fd;
}
.org_content{
    width: 1176px;
    padding: 15px 12px;
    border-radius: 15px;
    background-color: #636fe7;
    background-image: linear-gradient(to bottom,#636fe7,#818bfa);
}
.org_list{
    float: left;
    width: 460px;
}
.org_item{
    width: 400px;
    padding:15px 30px;
    margin: 8px 0;
    color: #434bfc;
    border-radius: 15px;
    background-image: linear-gradient(to right,#6cfcf3,#effdaf);
}
.org_item p:first-child{
    font-weight: bold;
    font-size: 18px;
}
.org_intro{
    position: relative;
    float: right;
    width: 630px;
    padding: 48px 30px 30px 30px;
    margin-top: 14px;
    background-color: #fff;
    border-radius: 15px;
}
.org_intro::after{
    content: ' ';
    position: absolute;
    top: -12px;
    left: 460px;
    z-index: 1;
    width: 0;
    height: 0;
    border: 6px transparent solid;
    border-bottom: 6px #3341dd solid;
}
.zb_title{
    position: absolute;
    left: 0;
    top: -6px;
    z-index: 2;
    height: 44px;
    line-height: 44px;
    font-size: 17px;
    font-weight: bold;
    color: #3e3a39;
    letter-spacing: 2px;
    padding: 0 24px;
    background-color: #dae1ff;
    border-radius: 15px 0 15px 0;
}
.zb_intro{
    height: 380px;
    overflow: auto;
    padding-right: 8px;
    text-indent: 34px;
}
/*expert*/
.c_expert{
    margin-top: -70px;
}
.expert_content{
    position: relative;
    width: 1176px;
    padding: 15px 12px;
    border-radius: 15px;
    background-color: #fff;
    border-top: 6px #fff solid;
    background-image: linear-gradient(to bottom,#c2f9f6 0%,#fff 10%,#fff 100%);
}
.expert_content::before{
    content: ' ';
    position: absolute;
    top: -125px;
    right: -47px;
    display: inline-block;
    width: 237px;
    height: 242px;
    background: url(../images/expert_img.png) no-repeat;
    background-size: 100% 100%;
}
.wyh_list{
    padding:66px 66px 36px 66px;
}
.wyh_left{
    float: left;
    width: 512px;
    padding-right: 10px;
}
.wyh_right{
    float: left;
    width: 512px;
    padding-left: 10px;
}
.wyh_item{
    width: 100%;
    margin-bottom: 30px;
}
.wyh_item>p{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.mingdan li span{
    display: inline-block;
    width: 52px;
    margin-right: 12px;
    text-align: justify;
    text-justify:distribute-all-lines;
    text-align-last: justify;
}

.time_content{
    border-radius: 15px;
    overflow: hidden;
}
.time_item{
    position: relative;
    float: left;
    width: 486px;
    color: #fff;
    padding:45px 55px;
    font-size: 22px;
    margin-right: 7px;
    line-height: 36px;
    background-image: linear-gradient(to bottom,#2f3eda,#616efb);
}
.time_item:nth-child(2){
    min-height: 216px;
}
.time_item p{
    padding-left: 37px;
}
.time_item p:last-child{
    font-size: 16px;
}
.time_item:nth-child(3),.time_item:last-child{
    margin-right: 0;
}
.time_item:nth-child(3),.time_item:nth-child(4){
    background-image: linear-gradient(to bottom,#1775fc,#68b2fd);
}
.time_item::before{
    content: attr(data-id);
    display: inline-block;
    position: absolute;
    left: 55px;
    top: 50px;
    width: 28px;
    height: 28px;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    line-height: 28px;
    color: #434bfc;
    border-radius: 50%;
    background-color: #6afcf4;
}


/*prize*/
.c_prize{
    width: 100%;
    padding-bottom: 80px;
    padding-top: 206px;
    margin-top: 0;
    background: url("../images/prize_bg.png") no-repeat;
    background-position: center top;
}
.c_prize .c_title p{
    background-image: linear-gradient(#3f49f5, transparent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c_prize .c_title span{
    color: #eef0fd;
}
.prize_content{
    width: 1170px;
    padding: 15px 15px;
    border-radius: 15px;
    background-color: #636fe7;
    background-image: linear-gradient(to bottom,#636fe7,#818bfa);
}
.prize_cs,.prize_js{
    float: left;
    width: 572px;
    border-radius: 20px;
    background-color: #fff;
}
.prize_js{
    margin-left: 26px;
}
.prize_cs_title{
    width: 100%;
    height: 76px;
    text-align: center;
    line-height: 76px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px #f47d12;
    background: url("../images/prize_cs_bg.png") no-repeat;
    background-size: 100% 100%;
}
.prize_js_title{
    width: 100%;
    height: 76px;
    text-align: center;
    line-height: 76px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px #e72e17;
    background: url("../images/prize_js_bg.png") no-repeat;
    background-size: 100% 100%;
}
.prize_main{
    padding:12px 27px;
}
.prize_item{
    margin: 15px 0;
    padding-left: 50px;
    background: url("../images/icon_prize.png") no-repeat;
    background-size: 42px auto;
}
.prize_item p:first-child{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 6px;
    letter-spacing: 2px;
}
.prize_item span{
    color: #ff973a;
    font-size: 18px;
    font-weight: bold;
}

/*index_subject*/
.subject_content{
    width: 1170px;
    padding: 15px;
    border-radius: 15px;
    background-color: #fff;
}
.sub_info{
    position: relative;
    width: 990px;
    min-height: 520px;
    padding: 36px 90px;
    border-radius: 15px;
    background-color: #2e3dda;
    background-image: linear-gradient(to bottom,#2e3dda,#616efb);
}
.sub_tab{
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 2px #3060f6 solid;
    justify-content: center;
}
.tab_item_c{
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 10px;
    padding:0 30px;
    color: #333;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
}
.tab_item_active{
    color: #434bfc;
    background-color: #b0fffb;
}
.sub_info_con_c{
    display: none;
}
.sub_info_con_active{
    display: block;
}
/*.sub_intro{*/
/*    padding-right: 470px;*/
/*    background: url("../images/subject_img.png") no-repeat;*/
/*    background-size: 465px auto;*/
/*    background-position: right bottom;*/
/*}*/
.sub_title{
    min-width: 200px;
    height: 26px;
    padding: 5px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    background-image: linear-gradient(to right,#b0fffb 0%,transparent 40%);
}
.sub_title span:first-child{
    color: #ff860f;
    font-size: 17px;
}
.sub_title span:last-child{
    display: inline-block;
    font-size: 19px;
    color: #ff860f;
    -webkit-text-stroke: 0.5px #fff;
}
.sub_info p{
    color: #fff;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 30px;
}
.main_tips{
    color: #ff860f;
    font-weight: bold;
}
.current_bm{
    width: 100%;
    text-align: center;
}
.current_bm a{
    display: inline-block;
    width: 212px;
    height: 50px;
    border-radius: 30px;
    text-align: center;
    line-height: 50px;
    color: #3342de;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    background-color: #6cfcf3;
    background-image: linear-gradient(to right,#6cfcf3,#eefdb0);
}

/*university*/
.university_list{
    height: 500px;
    overflow-y: auto;
}
.university_list ul li{
    float: left;
    width: 148px;
    text-align: center;
    background-color: #efefef;
    margin: 0 10px 20px 10px;
    padding: 10px 15px;
    border-radius: 10px;
}
.university_list ul li a{
    width: 100%;
}
.university_list ul li p{
    width: 100%;
    height: 15px;
    line-height: 15px;
    font-size: 13px;
    letter-spacing: 0;
}
.university_list img{
    width: 80px;
    height: 80px;
}

/*prize*/
.c_description{
    width: 100%;
    padding-bottom: 235px;
    padding-top: 56px;
    background: url("../images/description_bg.png") no-repeat;
    background-position: center top;
}
.c_description .c_title p{
    background-image: linear-gradient(#3f49f5, transparent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c_description .c_title span{
    color: #eef0fd;
}
.description_content{
    width: 1170px;
    padding: 15px 15px;
    border-radius: 15px;
    background-color: #636fe7;
    background-image: linear-gradient(to bottom,#636fe7,#818bfa);
}
.description_info{
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 15px;
}

/*slider*/
.report_content,.show_content{
    width: 1200px;
    margin: 0 auto;
    margin-top: 36px;
}
.report_list,.show_list{
    width: 1200px;
    margin: 0 auto;
    margin-top: 45px;
    overflow: hidden;
}
.report_list ul,.show_list ul{
    position:relative;
}
.report_list ul li,.show_list ul li{
    float: left;
    width: 281px;
    margin-right: 25px;
}
.report_list ul li:last-child,.show_list ul li:last-child{
    margin-right: 0;
}
.report_list ul li a,.show_list ul li a{
    width: 100%;
}
.report_list ul li p,.show_list ul li p{
    width: 100%;
    color: #333;
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.report_list img,.show_list img{
    width: 281px;
    height: 204px;
    border-radius: 10px;
}

.sign_up_bottom{
    width: 100%;
    height: 122px;
    background-color: #fff;
}
.s_u_box{
    width: 1200px;
    margin: 0 auto;
}
.s_u_left{
    float: left;
    width: 846px;
    line-height: 30px;
    margin-top: 30px;
}
.s_u_left h3{
    font-weight: bold;
}
.s_u_left p{
    color: #747474;
}
.s_u_right{
    float: right;
    width: 300px;
    text-align: center;
    height: 70px;
    line-height: 70px;
    margin-top: 26px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
    letter-spacing: 5px;
    background-color: #2e55f7;
}
.s_u_right a{
    display: inline-block;
    width: 300px;
    height: 71px;
    color: #fff;
}
/*footer*/
.footer{
    width: 100%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 32px;
    background: #2b303b;
}
.f_main{
    width: 1200px;
    margin: 0 auto;
    color: #fff;
    padding: 35px 0;
}
.f_main a{
    color:#f5f7f9;
}
.f_left,.f_center{
    float: left;
    width: 400px;
    text-align: left;
    padding-right: 20px;
    line-height: 50px;
}
.f_qun{
    padding-left: 38px;
    background: url("../images/icon_01.png") no-repeat;
    background-size: 30px auto;
    background-position: left center;
}
.f_email{
    padding-left: 38px;
    background: url("../images/icon_02.png") no-repeat;
    background-size: 30px auto;
    background-position: left center;
}
.f_tel{
    padding-left: 38px;
    background: url("../images/icon_03.png") no-repeat;
    background-size: 30px auto;
    background-position: left center;
}
.f_right{
    float: right;
    width: 200px;
    text-align: center;
}
.ewm_item{
    float: left;
    width: 200px;
}
.f_right img{
    width: 110px;
    height: 110px;
}
.f_beian{
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.piaochuang{
    position: fixed;
    top:calc((100vh - 246px) / 2);
    right: 0;
    z-index: 2;
    width: 141px;
    height: 264px;
    background: url("../images/piaochuang.png") no-repeat;
    background-size: 100% 100%;
}
.pc_bm{
    width: 107px;
    height: 98px;
    margin-left: 17px;
    margin-top: 25px;
    border-radius: 8px;
}
.pc_qun{
    width: 107px;
    height: 99px;
    margin-left: 17px;
    margin-top: 8px;
    border-radius: 8px;
}