﻿@charset "utf-8";
body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,legend,input,textarea,button,select{
	margin:0;
	padding:0;
}
body,input,textarea,select,button,table{
	font-size:16px;
	line-height:1.25em;
	font-family:Arial,'microsoft yahei',Verdana,Helvetica,sans-serif;
}
/*取消按钮点击的时候有阴影*/
a,img,button,input,textarea{
	-webkit-tap-highlight-color:rgba(255,255,255,0);
	-ms-tap-highlight-color:rgba(255,255,255,0);
	-moz-tap-highlight-color:rgba(255,255,255,0);
	-o-tap-highlight-color:rgba(255,255,255,0);
}
button, input, textarea, select {
    border: medium none;
    outline: medium none;/*取消chrome下input和textarea的聚焦边框*/
	-webkit-appearance:none;
	-ms-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
}
body{
    min-width:320px;
    height: 100vh;
	font-size:1em;
	-webkit-text-size-adjust:none; 
	color: #333;
}
h1,h2,h3,h4,h5,h6 {
	font-size: inherit; 
	font-weight: normal;
}
header,footer,section,nav,menu,details,hgroup,figure,figcaption,article,aside{
	margin:0;
	padding:0;
	display:block;
}
img,fieldset{
	border:0;
}
img { 
	vertical-align:middle;
}
ul,ol{
	list-style:none;
}
table{
	border-collapse:collapse; 
	width: 100%;
}
a{
	color:#666;
	text-decoration:none;
}
.cl:after{
	clear:both;
	content:" ";
	display:block;
	font-size:0;
	height:0;
	visibility:hidden;
}
.cl{
	zoom:1
}
.rel{
    position: relative;
}
.abs{
	position: absolute;
}
.dis{
    display: block;
}
.hide{
    display: none;
}
.hr_gray {
    border: none;
    border-top: 1px solid #ccc;
}
/*arrow*/
.arr_right:after,.arr_left:after{
  content: "";
  width: 0.4rem;
  height:0.4rem;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  top: 50%;
  right:15px;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top:-0.25rem;
  }
  .arr_down:after{
  content: "";
  width: 8px;
  height:8px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  top: 48%;
  right:-0.85rem;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top:-0.25rem;
  }
  .arr_up:after{
  content: "";
  width: 8px;
  height:8px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  top: 50%;
  right:-0.85rem;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top:-0.15rem; 
}
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}
body {
	background-color: #fff;
}
.flex {
    display: flex;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-col{
    display: flex;
    flex-direction: column;
}
.flex-grow-0{
    flex-grow: 0;
}
.flex-grow-1{
    flex-grow: 1;
}
.flex-x-center{
    display: flex;
    justify-content: center;
}
.flex-x-end{
    display: flex;
    justify-content: flex-end;
}
.flex-y-center{
    display: flex;
    align-items: center;
}
.flex-y-start{
   display: flex;
   align-items: flex-start;
}
.flex-x-between{
   display: flex;
   justify-content: space-between;
}
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
/*index*/
.page{
    background: url(../images/banner_bg.png) center top no-repeat;
    height: 640px;
    max-width: 1920px;
    margin: 0 auto;
}
.header{
    width: 100%;
    height: 72px;
    background-color: rgba(21,21,21,.7);
    position: relative;
}
.inputBox1{
    width: 260px;
    height: 46px;
    position: absolute;
    right: 7%;
    top: 13px;
}
.inputBox1::after{
    content: '';
    width: 1px;
    height: 30px;
    background-color: #aba6a3;
    position: absolute;
    right: 48px;
    top: 8px;
}
.inputBox1 input{
    width: 260px;
    height: 46px;
    background: none;
    line-height: 46px;
    border-radius: 23px;
    border: 1px solid #aca7a3;
    padding: 0 48px 0 20px;
    font-size: 13px;
    color: #fff;
}
.inputBox1 input::-webkit-input-placeholder{
    font-size: 13px;
    color: #fff;
}
.inputBox1 input:-ms-input-placeholder{
    font-size: 13px;
    color: #fff;
}
.inputBox1 input:-moz-placeholder{
    font-size: 14px;
    color: #fff;
}
.inputBox1 .icon_search{
    width: 23px;
    height: 23px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.main_title{
    width: 58.4%;
    margin: 44px auto 0;
}
.main_title img{
    width: 100%;
}
.classificationBox{
    margin-bottom: 70px;
    margin-top: -15px;
}
.classificationBox ul li{
    height: 380px;
    position: relative;
}
.classificationBox ul li:nth-child(1),.classificationBox ul li:nth-child(6){
    width: 17.5%;
}
.classificationBox ul li:nth-child(2),.classificationBox ul li:nth-child(5){
    width: 14.9%;
}
.classificationBox ul li:nth-child(3),.classificationBox ul li:nth-child(4){
    width: 14%;
}
.classificationBox ul li a{
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}
.classificationBox ul li a img{
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 10px rgba(82,48,47,.73));
}
.classificationBox ul li a p{
    font-size: 18px;
    color: #410000;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 350px;
    transform: translateX(-50%);
    z-index: 100;
}
.classificationBox ul li a:hover p{
    color: #e81b16;
}
.classificationBox ul li a:hover img{
    filter: drop-shadow(0 15px 10px rgba(86,22,21,.7));
}
.classificationBox ul li:nth-child(1) a p,.classificationBox ul li:nth-child(6) a p{
    top: 370px;
}
.activity_introduction{
    width: 100%;
    padding: 20px 50px 30px;
    background-color: #fff;
}
.activity_introduction .sub_title{
    font-size: 18px;
    line-height: 2;
    color: #891e10;
    font-weight: bold;
    position: relative;
    padding: 10px 0;
}
.activity_introduction .sub_title::before{
    content: '';
    width: 40px;
    height: 3px;
    background-color: #fda299;
    position: absolute;
    left: 0;
    top: 0;
}
.activity_introduction p{
    font-size: 14px;
    color: #353535;
    line-height: 2;
    text-indent: 2em;
}
.footer {
    width: 100%;
    padding: 25px 0 20px;
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
    background: #830200;
}
.footer .list {
    margin-bottom: 10px;
}
.footer .list li{
  position: relative;
}
.footer .list li:not(:last-child){
  margin-right: 30px;
}
.footer .list li a{
  color: #fff;
}
.footer .list li:not(:last-child):after{
  content: '';
  width: 1px;
  height: 50%;
  background-color: #fff;
  position: absolute;
  right: -15px;
  top: 25%;
}
.footer p{
  text-align: center; 
  line-height: 1.8;
}
.footer ul li:not(:last-child){
  margin-right: 20px;
}
.footer ul li .bottom_s1{
  width: 18px;
  height: 20px;
  margin-right: 8px;
  margin-left: 40px;
}

/*index2*/
.page2{
    background: url(../images/banner_bg2.png) center top no-repeat;
    height: 458px;
    padding-top: 44px;
}
.page3{
    background: url(../images/banner_bg3.png) center top no-repeat;
    height: 626px;
    padding-top: 20px;
}
.main_title2{
    width: 58.4%;
    margin: 0 auto;
}
.main_title2 img{
    width: 100%;
}
.filterBox{
    width: 100%;
    background-color: rgba(0,0,0,.6);
    padding: 20px 0 0;
    margin: 40px 0;
}
.filterBox .filterList{
    width: 1040px;
    margin: 0 auto;
}
.filterBox .filterList h1{
    font-size: 12px;
    color: #fad684;
    text-align: center;
    width: 130px;
    font-weight: bold;
}
.filterBox .filterList .filter_text{
    width: 910px;
}
.filterBox .filterList li{
    position: relative;
    height: 50px;
}
.filterBox .filterList li::before{
    content: '';
    width: 1px;
    height: 20px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}
.filterBox .filterList a{
    width: 130px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    display: block;
    cursor: pointer;
}
.expandAll,.stow{
    text-decoration: underline;
}
.filterBox .filterList li:nth-child(n+8){
    display: none;
}
.stowUl li:nth-child(n+8){
    display: block!important;
}
.expandAll.disappear{
    display: none;
}

.activitiesPic .activitiesPic_inner li{
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 50px;
}

.activitiesPic .activitiesPic_inner li:nth-child(2n){
    margin-right: 0;
}

.activitiesPic .activitiesPic_inner li a{
    width: 100%;
}

.activitiesPic .activitiesPic_inner li a img{
    width: 265px;
    height: 150px;
    margin-right: 20px;
}

.activitiesPic .activitiesPic_inner li a .detail_info{
    width: calc(100% - 285px);
}

.activitiesPic .activitiesPic_inner li a .detail_info p:nth-child(1){
    font-size: 20px;
    color: #242424;
    line-height: 1.6;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.activitiesPic .activitiesPic_inner li a .detail_info p:nth-child(2){
    font-size: 14px;
    color: #999;
    margin-top: 20px;
    margin-left: 5px;
}
.paginationBox{
    margin: 10px 0 30px;
}
.paginationBox .pagination .prev a,.paginationBox .pagination .next a{
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #f1f2f7;
    margin-right: 10px;
    cursor: pointer;
}
.paginationBox .pagination .prev a img,.paginationBox .pagination .next a img{
    width: 10px;
    height: 10px;
    margin: 8px;
}
.paginationBox .pagination ul{
    margin-left: 5px;
}
.paginationBox .pagination ul li a{
    font-size: 13px;
    color: #8e595f;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #fff;
    display: block;
    text-align: center;
    margin-right: 10px;
}
.paginationBox .pagination ul li a img{
    width: 15px;
}
.paginationBox .pagination ul li.on a{
    background-color: #891e10;
    color: #fff;
}
.paginationBox .pagination ul li:last-child{
    margin-right: 0;
}
.paginationBox .pagination .select_label{
    width: 65px;
    height: 26px;
    background-color: #891e10;
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
    text-align: center;
    position: relative;
    cursor: pointer;

}
.paginationBox .pagination .select_label:after{
    content: "";
    width: 12px;
    height: 7px;
    background: url(../images/down.png) no-repeat center;
    background-size: 80%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    pointer-events: none;
}
.paginationBox .pagination .select_label select{
    width: 100%;
    height: 100%;
    background: none;
    text-align: center;
    font-size: 13px;
    color: #fff;
    padding: 0 20px 0 10px;
    cursor: pointer;
    outline: none;
    border: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
}
.paginationBox .pagination .select_label select option{
    font-size: 13px;
    color: #000;
    text-align: center;
}
.paginationBox .record{
    font-size: 13px;
    color: #8e595f;
    margin-left: 25px;
    letter-spacing: 1px;
}
/*index3*/
.videoInfo{
    margin: 85px 80px 40px;
}
.videoInfo .videoBox{
    width: 695px;
    height: 398px;
}
.videoInfo .videoBox #video{
    width: 100%;
    height: 100%;
}
.videoInfo .video_info{
    margin-left: 40px;
    width: calc(100% - 735px);
}
.videoInfo .video_info .video_title{
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin: 35px 0 25px;
    letter-spacing: 1px;
}
.videoInfo .video_info .info_detail li{
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #6d6d6d;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.videoInfo .video_info .info_detail li .left_title{
    color: #353535;
    width: 50px;
}
.videoInfo .video_info .info_detail li .right_text{
    width: calc(100% - 50px);
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    text-align: justify; */
}
.videoInfo .video_info .info_detail li .flex-y-start{
    margin-right: 10px;
}

.videoArea{
    width: 100%;
    padding: 25px 30px 5px;
    background-color: #fff;
}
.videoArea ul li{
    width: calc((100% - 75px) / 6);
    margin-right: 15px;
}
.videoArea ul li:nth-child(6n){
    margin-right: 0;
}
.videoArea ul li a{
    width: 100%;
    height: 130px;
    display: block;
    position: relative;
}
.videoArea ul li a .video_pic{
    width: 100%;
    height: 100%;
}
.videoArea ul li a .stop{
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.videoArea ul li p{
    font-size: 13px;
    color: #242424;
    height: 38px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 8px;
}
/*搜索*/
.search-box {
	color: #fff;
	width: auto;
	border-radius: 21px 0 0 21px;
	min-width: 80px;
	height: 42px;
	line-height: 42px;
	display: inline-block;
    position: absolute;
    right: 0;
    top: 20px;
	overflow: hidden;
	background-color: rgba(21,21,21,.7);
	cursor: pointer;
}

.search-box span {
	position: absolute;
	right: 0;
	top: 0;
	width: 80px;
	height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 13px;
	cursor: pointer;
}

.search-box span img{
    width: 16px;
    margin-right: 5px;
}

.search-box input {
	display: inline-block;
	background: 0 0;
	border: none;
	color: #fff;
	padding-left: 20px;
	line-height: 42px !important;
	height: 42px;
	box-sizing: border-box;
	font-size: 13px;
	width: 80px;
	transition: all .3s ease-in-out;
	text-transform: uppercase;
}
.search-box:hover input {
	display: inline-block;
	width: 230px;
	padding-right: 80px;
}

.search-box input:not(:placeholder-shown) {
	display: inline-block;
	width: 230px;
	padding-right: 80px;
}
/*2022-11-22*/
/* .footer{
    width: 100%;
    background-color: #830200;
    text-align: center;
    padding: 30px 0 25px;
}
.linkBox{
    width: 916px;
    margin: 0 auto 15px;
}
.linkBox a{
    display: block;
    width: 118px;
    height: 48px;
    margin-right: 15px;
    margin-bottom: 15px;
}
.linkBox a:nth-child(7n){
    margin-right: 0;
}
.linkBox a img{
    width: 100%;
    height: 100%;
}
.footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.footer ul li a {
    display: block;
    width: 80px;
    text-align: center;
    position: relative;
}
.footer ul li:not(:last-child) a:after {
    content: '';
    width: 1px;
    height: 12px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.footer a {
    color: #fff;
    font-size: 13px;
    line-height: 1.8;
}
.footer p a:not(:last-child) {
    margin-right: 30px;
}
.footer .bottom_s2 {
    margin-top: 15px;
}
.footer p a img {
    margin-right: 5px;
}
.footer_title{
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
} */

/*2022-11-27*/
.filterBox .filterList .active{
    text-decoration: underline;
  }

/*2022-12-05*/
/* .detail_info .left_info{
    width: calc(100% - 40px);
} */
.detail_info .heartPlace{
    width: 40px;
    text-align: center;
}
.detail_info .heartPlace img{
    width: 18px!important;
    height: 18px!important;
    margin: 0 auto;
}
.detail_info .heartPlace p{
    font-size: 12px;
    color: #999;
    transform-origin: center;
    transform: scale(0.85);
}

/*2022-12-07*/
.introductionBox{
  
    overflow: hidden;
    position: relative;
    text-align: justify;
}
.introductionBox .showAll{
    color: #fad684;
    background-color: #fff;
    width: 60px;
    height: 25px;
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
}
.introductionBox .showAll::before{
    content: '...';
    color: #6d6d6d;
    position: absolute;
    bottom: -2px;
    left: 5px;
}
.introductionBox .hidePiece{
    color: #fad684;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
} 

/*2022-12-08*/
.backBtn{
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    left: 20px;
    top: 20px;
    background:rgba(21,21,21,.7);
    border-radius: 50%;
    cursor: pointer;
}
.backBtn img{
    width: 24px;
    margin: 12px auto;
    display: block;
}
.backBtn p{
    font-size: 12px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
}
.video_title .zanBox{
    font-size: 12px;
    color: #6d6d6d;
    display: inline-block;
    text-align: center;
    font-weight: normal;
    vertical-align: middle;
    margin-left: 30px;
    cursor: pointer;
}
.video_title .zanBox img{
    width: 25px;
    margin-bottom: -3px;
}
.excellenceBtn{
    width: 88.8%;
    position: relative;
    margin: 8px auto;
}
.excellenceBtn img{
    width: 100%;
}
.excellenceBtn .clickBtn{
    width: 15.4%;
    height: 22.8%;
    background: linear-gradient(top,#f96056,#c10401);
    background: -webkit-linear-gradient(top,#f96056,#c10401);
    background: -moz-linear-gradient(top,#f96056,#c10401);
    background: -ms-linear-gradient(top,#f96056,#c10401);
    background: -o-linear-gradient(top,#f96056,#c10401);
    border-radius: 15px;
    border: 3px solid #fff;
    position: absolute;
    right: 13.5%;
    top: 33%;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(150,2,0,.74);
    cursor: pointer;
}
.excellence_navBox{
    width: 1250px;
    height: 80px;
    margin: 30px auto;
    position: relative;
}
.excellence_navBox ul{
    width: 100%;
    height: 100%;
    background: linear-gradient(top,#fffefd,#fcfbe3);
    background: -webkit-linear-gradient(top,#fffefd,#fcfbe3);
    background: -moz-linear-gradient(top,#fffefd,#fcfbe3);
    background: -ms-linear-gradient(top,#fffefd,#fcfbe3);
    background: -o-linear-gradient(top,#fffefd,#fcfbe3);
    box-shadow: 0 2px 27px #741f1f;
    position: relative;
    z-index: 100;
}
.excellence_navBox .flag{
    width: 32%;
    position: absolute;
    right: -170px;
    top: -40px;
}
.excellence_navBox li{
    flex: 1;
}
.excellence_navBox li a{
    font-size: 20px;
    color: #5c2626;
    line-height: 80px;
    cursor: pointer;
    height: 100%;
    display: block;
    text-align: center;
}
.excellence_navBox li.on{
    background-color: #fff;
    position: relative;
    box-shadow: 0 5px 18px rgba(169,131,128,.17);
}
.excellence_navBox li.on::after{
    content: '';
    width: 100%;
    height: 3px;
    background-color: #de0000;
    position: absolute;
    left: 0;
    bottom: 0;
}
.excellence_navBox li.on a{
    color: #de0000;
    font-weight: bold;
}
 .remindWord{
    width: 1250px;
    background-color: #fff;
    margin: 0 auto 25px;
    border-radius: 15px;
    box-shadow: 0 0 21px rgba(136,115,115,.18);
    padding: 25px 50px;
}
.remindWord p{
    font-size: 16px;
    color: #383838;
    text-indent: 2em;
    line-height: 2;
    text-align: justify;
}
.excellenceBox{
    width: 1250px;
    min-height: 450px;
    margin: 30px auto;
}

.excellenceBox .activitiesPic_title,.activitiesPic_organization .activitiesPic_title{
    font-size: 20px;
    font-weight: bold;
    color: #de0000;
    margin-bottom: 25px;
    position: relative;
}
.excellenceBox .activitiesPic_title img,.activitiesPic_organization .activitiesPic_title img{
    width: 100%;
}
.activitiesPic_inner{
    padding: 0 20px;
}
.forAllBtn{
    width: 100%;
    height: 36px;
    line-height: 36px;
    border-radius: 8px;
    background-color: #f7f7f7;
    display: block;
    text-align: center;
    font-size: 13px;
    color: #828282;
    cursor: pointer;
    margin-bottom: 25px;
}
.activitiesPic_organization{
    background: linear-gradient(top,#fff8ec,#fff);
    background: -webkit-linear-gradient(top,#fff8ec,#fff);
    background: -moz-linear-gradient(top,#fff8ec,#fff);
    background: -ms-linear-gradient(top,#fff8ec,#fff);
    background: -o-linear-gradient(top,#fff8ec,#fff);
    border-radius: 20px;
}
.activitiesPic_organization .activitiesPic_inner2 li{
    width: calc((100% - 100px) / 3);
    height: 50px;
    background-color: #fff;
    margin-right: 50px;
}
.activitiesPic_organization .activitiesPic_inner2 li:nth-child(3n){
    margin-right: 0;
}
.activitiesPic_organization .activitiesPic_inner2 li a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 0 25px;
}
.activitiesPic_organization .activitiesPic_inner2 li a p{
    font-size: 17px;
    color: #242424;
    line-height: 1.4;
}
.nameList{
    width: 100%;
}
.awardBox{
    width: 1250px;
    background-color: #fff;
    margin: 0 auto 25px;
    border-radius: 15px;
    box-shadow: 0 0 21px rgb(136 115 115 / 18%);
    padding: 30px 15px;
}
.awardBox .award_title{
    font-size: 22px;
    color: #000;
    text-align: center;
    font-weight: bold;
}
.awardBox .award_title2{
    font-size: 14px;
    color: #383838;
    text-align: center;
    margin-top: 10px;
}
.awardList .award_list{
    margin-top: 30px;
}
.awardList .award_list .award_title3{
   font-size: 20px;
   color: #000;
   font-weight: bold;
   text-align: center;
   margin-bottom: 40px;
}
.awardList .award_list ul{
    width: 70%;
    margin: 0 auto;
}
.awardList .award_list ul li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.awardList .award_list ul li p:nth-child(1){
    font-size: 16px;
    color: #000;
    width: 500px;
}
.awardList .award_list ul li p:nth-child(2){
    font-size: 16px;
    color: #999;
    width: calc(100% - 530px);
    margin-left: 30px;
}
.awardList .award_list .award_title4{
    font-size: 17px;
    color: #000;
    font-weight: bold;
    text-align: left;
    width: 70%;
    margin: 0 auto 20px;
 }
 .award_titleList{
    font-size: 16px;
    color: #000;
    width: 70%;
    margin: 0 auto 15px;
 }
 .award_titleList .award_title5{
     width: 30%;
     margin-right: 5%;
     margin-bottom: 20px;
 }
 .award_titleList .award_title5:nth-child(3n){
     margin-right: 0;
 }
/* index4 */
.page4{
    background: url(../images/banner_bg4.png) center top no-repeat;
    height: 780px;
}
.main_title3{
    width: 100%;
}
.main_title3 img{
    width: 100%;
    display: block;
}
.activitiesPic_inner.col4 li{
    width: calc((100% - 60px) / 4);
    margin-right: 20px !important;
    margin-bottom: 0 !important;
    margin-top: 20px;
}
.activitiesPic_inner.col4 li:nth-child(4n){
    margin-right: 0 !important;
}
.activitiesPic_inner.col4 li:nth-child(-n + 4){
    margin-top: 0;
}
.activitiesPic_inner.col4 li a img{
    height: 162px;
}
.activitiesPic_inner.col4 li .left_info{
    width: 100%;
}
.activities_type{
    width: calc(100% - 50px);
    height: 95px;
    margin: 0 auto;
    position: relative;
}
.activities_type .before{
    display: block;
    height: 0.5px;
    background: #dadada;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.activities_type .after{
    display: block;
    height: 0.5px;
    background: #dadada;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.activities_type p{
    min-width: 160px;
    text-align: center;
    color: #a91e1e;
    font-size: 23px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    white-space: nowrap;
    padding: 0 15px;
}
.activities_cont .activitiesPic_title{
    margin-bottom: 0;
}
.activities_cont .activitiesPic_inner{
    padding: 35px 25px;
    margin-bottom: -50px;
}
.activities_box .activitiesPic_inner{
    padding: 0 25px;
    position: relative;
}
.activitiesPic.activities_cont{
    position: relative;
}
/*2025-01-09*/
.list_href{
    color: #334bff;
    cursor: pointer;
}
.main_title4,.main_title4 img{
    width: 100%;
}
.s_bid2{
    width: 2.7%;
    display: block;
    margin: 10px auto 0;
}
.s_bannerList h2{
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}
.s_bannerList ul{
    width: 930px;
    margin: 10px auto;
}
.s_bannerList ul li{
    margin-right: 15px!important;
    margin-bottom: 15px!important;
    width: 120px;
    height: 50px;
}
.s_bannerList ul li:nth-child(7n){
    margin-right: 0!important;
}
.s_bannerList ul li a{
   display: block;
   width: 100%;
   height: 100%;
   cursor: pointer;
}
.s_bannerList ul li a img{
   width: 100%;
   height: 100%;
}
.detailPage{
    width: 100%;
    background: linear-gradient(top,#fbf2f2,#fffefe,#ffffff);
    background: -webkit-linear-gradient(top,#fbf2f2,#fffefe,#ffffff);
    background: -moz-linear-gradient(top,#fbf2f2,#fffefe,#ffffff);
    background: -ms-linear-gradient(top,#fbf2f2,#fffefe,#ffffff);
    background: -o-linear-gradient(top,#fbf2f2,#fffefe,#ffffff);
    padding: 35px 0;
}
.detail_page{
    width: 1250px;
    margin: 0 auto;
}
.detail_page .detail_listBox{
    width: 365px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 21px rgba(136,115,115,.18);
    margin-left: 35px;
}
.detail_page .detail_videoPlace{
    width: calc(100% - 400px);
}
.detail_page .detail_videoPlace .video_title{
    width: 100%;
    font-size: 22px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
}
.detail_page .detail_videoPlace .videoBox{
    width: 100%;
    height: 485px;
}
.detail_page .detail_videoPlace .videoBox video{
    width: 100%;
    height: 100%;
}
.detail_page .detail_videoPlace .icon_share{
    font-size: 18px;
    color: #000;
    margin-top: 25px;
    cursor: pointer;
}
.detail_page .detail_videoPlace .icon_share img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.list_tabItem{
    width: 100%;
    height: 55px;
    border-bottom: 1px solid #fbf2f2;
}
.list_tabItem .top_tabItem .top_tab_item{
    width: 50%;
    font-size: 19px;
    color: #5c2626;
    line-height: 55px;
    text-align: center;
    cursor: pointer;
}
.list_tabItem .top_tabItem .top_tab_item.active{
    font-size: 20px;
    font-weight: bold;
    position: relative;
}
.list_tabItem .top_tabItem .top_tab_item.active::before{
    content: '';
    width: 36px;
    height: 4px;
    background-color: #de0000;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.videoList .video_list{
    width: 100%;
    padding: 15px 20px;
}
.videoList .video_list.active2{
    background-color: #fdf8f8;
}
.videoList .video_list img{
    width: 128px;
    height: 72px;
    margin-right: 15px;
}
.videoList .video_list .video_list_info{
    width: calc(100% - 143px);
}
.videoList .video_list .video_list_info h2{
    font-size: 14px;
    color: #000;
    text-align: justify;
    line-height: 1.4;
}
.videoList .video_list .video_list_info p{
    font-size: 12px;
    color: #989898;
    margin-top: 5px;
    margin-left: 5px;
}
.video_list_new{
    width: 100%;
    padding: 15px 20px;
}
.video_list_new.active2{
    background-color: #fdf8f8;
}
.video_list_new img{
    width: 128px;
    height: 72px;
    margin-right: 15px;
}
.video_list_new .video_list_info{
    width: calc(100% - 143px);
    padding-top: 5px;
}
.video_list_new .video_list_info h2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    color: #000;
    text-align: justify;
    line-height: 1.8;
}
.lessonListInfo{
    margin-top: 10px;
}
.lessonListInfo .lesson_listInfo{
   font-size: 14px;
   color: #000;
   padding: 10px 20px;
   line-height: 38px;
   text-align: justify;
}
.lessonListInfo .lesson_listInfo span{
   color: #989898;
}
.activities_box:last-child{
    margin-bottom: 50px;
}
.list_tabBox{
    height: 555px;
    overflow-x: hidden;
    overflow-y: auto;
}