.body{
    padding-top: 200px;
}
.cover{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.homeBtn button{
    padding: 10px 30px;
    border: 2px solid #008cff;
    color: #008cff;
    font-size: 20px;
    margin-bottom: 20px;
    display: inline-block;
    cursor: pointer;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.8);
}
.content-block{
    background-color: #282828;
}
.contentBox{
    width: 1280px;
    margin: 0 auto;
    background-color: #181718;
    border-radius: 10px;
    border-top:13px solid #a37927;
    padding: 66px 80px;
    box-sizing: border-box;
}
.contentBox .pageIntro{
    text-indent: 2em;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height:38px;
}
.contentBox .pageIntro.noindent{
    text-indent: 0em;
}
.contentBox .pageIntro .part1{
    min-width: 60px;
    white-space: nowrap;
}
.scheduleItem{
    position: relative;
    margin-right: 290px;
}
.schedule_num{
    display: block;
    height: 60px;
    margin: 80px 0px 90px 0px;
}
.scheduleItem::after{
    content: '';
    position:absolute;
    background-image: url(/static/competition/jiangxi/arrow_right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 19px;
    height: 40px;
    right: -7.292vw;
    top:50%;
    margin-top:-20px;
}
.scheduleItem:last-child::after{
    opacity: 0;
}
.scheduleItem:last-child{
    margin-right:0px;
}
.schedule_info{
    position: absolute;
    /* bottom: -20px; */
    width: 300px;
    text-align: center;
    left: 50%;
    margin-left: -150px;
}
.schedule_title{
    font-size: 22px;
    white-space: nowrap;
}
.schedule_date{
    font-size: 18px;
    margin: 15px 0 12px 0;
    white-space: nowrap;
}
.schedule_other{
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.awardItem{
    margin-top: 49px;
}
.awardImg{
    width: 233px;
    height: 234px;
    margin-right: 80px;
}
.award_tip_1{
    font-size: 17px;
    color:rgba(255,255,255,0.7);
}
.award_tip_2{
    font-size: 36px;
    color:#ffba31;
    margin: 32px 0px;
}
.award_tip_2 span{
    display: inline-block;
    font-size: 17px;
    margin-left: 15px;
}
.award_tip_3{
    font-size: 18px;
    color:rgba(255,255,255,1);
    line-height: 29px;
}
.award_tip_3 span{
    color: #e89139;
}
.award_tip{
    padding: 60px 0 0px 0px;
    text-align: center;
}
.award_tip span{
    display: inline-block;
    margin-right: 8px;
}
.expertBox_ver1{
    position:relative;
    width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}
.expertBox{
    position:relative;
    width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    box-sizing: border-box;
    gap: 25px;
}
.expertBox_bk{
    position:absolute;
    inset: 0;
    background-color: transparent;
}
.expertItem{
    position:relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: #181718;
    cursor: pointer;
}
.expertItem_ver1{
    margin-bottom: 30px;
    margin-top: 50px;
}
.bigExpertType{
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}
.bigExpertType .expert_avatar{
    height: 70%;
    min-height: 600px;
}
.bigExpertType .expert_info_box{
    /* position:absolute;
    top: 300px;
    left:0px;
    right: 0px; */
}
.bigExpertType .expert_info_box{
    display: flex;
    flex-direction: column;
    height: 30%;
    padding: 33px;
}
.bigExpertType .expert_info{
    flex:1;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 25px;
    overflow-y: auto;
    display: block;
    max-height: 300px;
    scrollbar-color: auto;
    scrollbar-width:auto;
    margin-top: 5px;
}
.expertBigBoxer{
    display: none;
}
/* 定义滚动条的整体样式 */
.bigExpertType .expert_info::-webkit-scrollbar,.expertBigBoxer_Info::-webkit-scrollbar {
    width: 4px; /* 设置滚动条的宽度 */
    height: 20px; /* 设置滚动条的高度 */
}

/* 定义滚动轨迹的样式 */
.bigExpertType .expert_info::-webkit-scrollbar-track, .expertBigBoxer_Info::-webkit-scrollbar-track {
    background: transparent; /* 设置滚动轨迹的背景颜色 */
}

/* 定义滑块的样式 */
.bigExpertType .expert_info::-webkit-scrollbar-thumb, .expertBigBoxer_Info::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3); /* 设置滑块的背景颜色 */
}

/* 当鼠标悬停在滚动条上时的滑块样式 */
.bigExpertType .expert_info::-webkit-scrollbar-thumb:hover, .expertBigBoxer_Info::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.4); /* 设置鼠标悬停时滑块的背景颜色 */
}

/* 定义滚动条两端的按钮样式 */
.bigExpertType .expert_info::-webkit-scrollbar-button, .expertBigBoxer_Info::-webkit-scrollbar-button {
    display: none; /* 可以选择隐藏滚动条两端的按钮 */
}

/* 定义滚动条角落的样式 */
.bigExpertType .expert_info::-webkit-scrollbar-corner, .expertBigBoxer_Info::-webkit-scrollbar-corner {
    background: transparent; /* 设置滚动条角落的背景颜色 */
}
.expert_avatar_ver1{
    display: block;
    width: 310px;
    object-fit: cover;
    height: 313px;
    background-color: #1e1d1e;
    background-size: cover;
    background-position: right;
    border-radius: 5px;
    margin-top: -15px;
}
.expert_avatar{
    display: block;
    width: 100%;
    object-fit: cover;
    height: 306px;
    background-color: #575557;
    background-size: cover;
    background-position: right;
}
.expert_name_ver1{
    color:#ffba31;
    font-size: 26px;
}
.expert_name{
    font-size: 24px;
    color: white;
    text-align: center;
    margin-bottom: 5px;
}
.expert_info_box_ver1{
    padding: 32px;
    background-color: #1e1d1e;
    flex: 1;
}
.expert_info_box{
    padding: 22px;
}
.expert_info_ver1{
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 28px;
    overflow-y: auto;
    text-indent: 2em;
    max-height: 182px;
    margin-top: 18px;
}
.expert_info{
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.pageBigInfo{
    font-size: 22px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}
.arrow_down{
    position: absolute;
    bottom: 25px;
    left: 50%;
    margin-left: -1.823vw;
    text-align: center;
    cursor: pointer;
}
.arrow_down img{
    width: 3.3vw;
    height: 1.571vw;
    display: block;
}
.arrow_down img:first-child{
    opacity: 0.4;
    animation: arrowdownAnimate1 0.6s infinite;
}
.arrow_down img:last-child{
    opacity: 0.8;
    animation: arrowdownAnimate 0.6s infinite;
}
@-webkit-keyframes arrowdownAnimate {
    0% {
        opacity: 0.8; /* 完全不透明 */
      }
      50% {
        opacity: 0.4; /* 半透明 */
      }
      100% {
        opacity: 0.8; /* 完全不透明 */
      }
}

@keyframes arrowdownAnimate {
    0% {
      opacity: 0.8; /* 完全不透明 */
    }
    50% {
      opacity: 0.4; /* 半透明 */
    }
    100% {
      opacity: 0.8; /* 完全不透明 */
    }
  }

  @-webkit-keyframes arrowdownAnimate1 {
    0% {
        opacity: 0.4; /* 完全不透明 */
      }
      50% {
        opacity: 0.8; /* 半透明 */
      }
      100% {
        opacity: 0.4; /* 完全不透明 */
      }
}

@keyframes arrowdownAnimate1 {
    0% {
      opacity: 0.4; /* 完全不透明 */
    }
    50% {
      opacity: 0.8; /* 半透明 */
    }
    100% {
      opacity: 0.4; /* 完全不透明 */
    }
}

.saichenganpai{
    margin-top: 106px;
}
.expertBigBoxer{
    position:fixed;
    inset:0;
    background-color: rgba(0, 0, 0, 0.85);
}
.expertBigBoxerbk{
    position:absolute;
    inset:0;
}
.expertBigBoxer_Content{
    position:absolute;
    top:100px;
    left:15px;
    right: 15px;
    background-color: #181718;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 15px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}
.expertBigBoxer_Avatar{
    width: 100%;
    object-fit: cover;
    max-height: 300px;
}
.expertBigBoxer_Info{
    padding-right:3px;
    margin-top: 15px;
    scrollbar-color: auto;
    scrollbar-width: auto;
    overflow-y: auto;
    box-sizing: border-box;
    max-height: 400px;
}
.expertBigBoxer_Name{
    padding: 2px 15px 12px 15px;
    font-size: 18px;
}
.expertBigBoxer_Desc{
    padding: 4px 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 25px;
    text-align: justify;
}
.expertBigBoxer_CloseBtn{
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 4px;
    /* height: 45px;
    width: 45px;
    background-image: url(/static/competition/jiangxi/close_btn_transparent.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; */
}
.expert_info_ver1{
    scrollbar-color: auto; /* 设置滚动条滑块和滚动条轨迹的颜色 */
    scrollbar-width: unset; /* 设置滚动条的宽度（可以设置为'auto', 'thin', 或 'none'） */
}

/* 定义滚动条的整体样式 */
.expert_info_ver1::-webkit-scrollbar {
    width: 4px; /* 设置滚动条的宽度 */
    height: 20px; /* 设置滚动条的高度 */
}

/* 定义滚动轨迹的样式 */
.expert_info_ver1::-webkit-scrollbar-track {
    background: transparent; /* 设置滚动轨迹的背景颜色 */
}

/* 定义滑块的样式 */
.expert_info_ver1::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3); /* 设置滑块的背景颜色 */
}

/* 当鼠标悬停在滚动条上时的滑块样式 */
.expert_info_ver1::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.4); /* 设置鼠标悬停时滑块的背景颜色 */
}

/* 定义滚动条两端的按钮样式 */
.expert_info_ver1::-webkit-scrollbar-button {
    display: none; /* 可以选择隐藏滚动条两端的按钮 */
}

/* 定义滚动条角落的样式 */
.expert_info_ver1::-webkit-scrollbar-corner {
    background: transparent; /* 设置滚动条角落的背景颜色 */
}
.pageEntry{
    color:#ffba31!important;
    cursor: pointer;
    margin-top: 38px;
    text-indent: 0;
    text-align: center;
    display: block;
}