.main-nav-sec {
  height: 280px;
  background: url(/assets/images/ziyuan-bg.png) no-repeat bottom;
  background-size: 100% 395px;
}

.search_wrap {
  margin: 0 auto;
  width: 829px;
  position: relative;
}

.search-box {
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-radius: 10px;
}

.search-input_wrap {
  position: relative;
  z-index: 10;
  width: 737px;
  height: 60px;
  padding: 10px 24px;
  float: left;
}

.search-input {
  width: 100%;
  height: 40px;
  padding: 0;
  font-size: 18px;
  border: none;
}

.search-btn {
  float: right;
  width: 92px;
  height: 60px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(319deg, #402cf4 0%, #59c3f9 100%);
  border-radius: 0 10px 10px 0;
}
.search-type-bg {
    background: #024AC2;
}
.search-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 搜索建议 */
.search-suggest-list {
  position: absolute;
  top: 0;
  right: 92px;
  left: 0px;
  z-index: 9;
  display: none;
  padding: 60px 0 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 6px 0px rgba(223, 223, 223, 0.5);
}

.search-suggest-item {
  padding: 10px 24px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest-item:hover {
  background: #f9f9f9;
}

.search-suggest-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.search-suggest-item a {
  display: block;
  color: #333;
}

.search-suggest-item a > span {
  color: #6593ee;
}

/* 搜索历史记录 */
.search-history-list {
  position: absolute;
  top: 0;
  right: 92px;
  left: 0px;
  z-index: 9;
  display: none;
  padding: 60px 0 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 6px 0px rgba(223, 223, 223, 0.5);
}

.search-history-top {
  padding: 10px 24px;
  font-size: 14px;
  color: #6593ee;
  border-top: 1px solid #e5e5e5;
}

.search-history-clearall {
  cursor: pointer;
}

.search-history-item {
  position: relative;
  padding: 10px 60px 10px 24px;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-history-item:hover {
  background: #f9f9f9;
}

.search-history-item a {
  color: #333;
}

.search-history-item:hover .search-history-close {
  position: absolute;
  right: 30px;
  top: 9px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(/assets/images/close_3.png) no-repeat;
  background-size: 20px;
}

.btom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 14px;
  width: 635px;
  height: 48px;
  background: linear-gradient(
    90deg,
    rgba(0, 107, 233, 0),
    rgba(0, 84, 221, 0.3),
    rgba(0, 57, 206, 0)
  );
}

.btom-item {
  position: relative;
  padding: 0 28px;
  height: 48px;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 48px;
  text-align: center;
}

.btom-item + .btom-item::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 1px;
  height: 18px;
  content: "";
  background-color: #fff;
}

.search-type-item {
  position: relative;
  height: 52px;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  -webkit-transition: all ease-in-out 200ms;
  -moz-transition: all ease-in-out 200ms;
  -ms-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
  cursor: pointer;
  text-align: center;
  line-height: 52px;
}
.search-type-item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 41px;
  height: 4px;
  content: "";
  background-color: #ffdf00;
  border-radius: 2px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all ease-in-out 200ms;
  -moz-transition: all ease-in-out 200ms;
  -ms-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
}

.search-type-item:hover,
.search-type-item.active {
  /* position: relative;
  font-weight: bolder;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(
    1.2
  );  */
  /* 这里的1.2和js中有关联，修改时请在index.html中查找变量searchTypeItemScale进行相应修改 */
}
.search-type-item.active::after {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(
    0.8
  ); /* 这里的1.2和js中有关联，修改时请在index.html中查找变量searchTypeItemScale进行相应修改 */
}
.search-type-item a{
  color: #fff;
}
.search-type .search-type-item:not(:first-child).active  a{
  color: #ffdf00;
}
.list-bg-img{
  background: url(/assets/images/list-bg.png) no-repeat center bottom;
  background-size: cover;
}
._checkSort_li_now li:nth-child(2){
  margin-left: 0;
}
._checkSort_li_now li.now{
  background: linear-gradient(142deg, #3E5DFF 0%, #A3B7FF 100%);
}
._checkDownType li.now{
  background: linear-gradient(142deg, #703EFF 0%, #BBA3FF 100%);
}


._activityType li.now{
 background: linear-gradient(142deg, #3E5DFF 0%, #A3B7FF 100%);
}

._activityStatus li.now{
background: linear-gradient(142deg, #703EFF 0%, #BBA3FF 100%);
}
._activityProvince li.now{
background: linear-gradient(142deg, #ED691E 0%, #FFD29D 100%);
}


  .paixu{
        padding: 30px 0px;
    }
    .paixu span{
        display: inline-block;
        margin-right: 27px;
        text-align: center;
        padding-bottom: 10px;
        color: #666666;
        font-size: 23px;
        cursor: pointer;
        position: relative;
    }
    .paixu a:last-of-type span{
      margin-right: 0;
    }
    .paixu span.active{
        font-weight: 500;
        color: #333333;
        border-bottom: 3px solid #007cff;
    }
    .upspan{
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 6px solid #C9C8C8;
        position: absolute;
        top: 7px;
        right: -15px;
    }
    .paixu span.active i.upspan.active{
        border-bottom: 6px solid #0B97FE;
    }
    .downspan{
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid #C9C8C8;
        position: absolute;
        bottom: 14px;
        right: -15px;
    }
    .paixu span.active i.downspan.active{
        border-top: 6px solid #0B97FE;
    }
    .video-duration{
        position: absolute;
        background: rgba(0,0,0,0.4);
        border-radius: 12px;
        padding: 0 8px;
        color: #fff;
        font-size: 12px;
        right: 10px;
        bottom: 12px;
        line-height: 20px;
        z-index: 2;
    }
    .video-icon-new{
        position: absolute;
        left: 50%;
        top: 50%;
        width: 48px;
        height: 48px;
        margin-top: -24px;
        margin-left: -24px;
        z-index: 2;
    }
    .original-tag-new{
        position: absolute;
        bottom: 12px;
        left: 8px;
        z-index: 2;
    }
    .new-down-style{
        background: linear-gradient(31deg, #0070F4 0%, #0044F4 100%);
        border-radius: 5px 5px 5px 5px;
        font-size: 20px;
        font-weight: 500;
        color: #FFFFFF;
        padding: 8px 16px;
        cursor: pointer;
    }
    .video-list-block{
        margin: 0;
        margin-right: 36px;
        margin-bottom: 30px;
        border-radius: 8px;
        overflow: hidden;
    }
    .video-list-block:nth-child(4n){
        margin-right: 0;
    }
    .org-index-list{
        position: relative;
    }
    .new-all-down {
        position: absolute;
        min-height: auto;
        background-color: transparent;
        border: none;
        right: 0;
        margin: 0 !important;
        top: 0;
    }
    .show-down{
        display: none;
    }


.correct {
    display: inline-block;
    width: 10px;
    height: 3px;
    background: #fff;
    line-height: 0;
    font-size: 0;
    vertical-align: middle;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 15px;
}

.correct:after {
    content: '/';
    display: block;
    width: 20px;
    height: 3px;
    background: #fff;
    -webkit-transform: rotate(-90deg) translateY(-50%) translateX(50%);
}
.sifting-year-box .change-type{
    height: 30px;
    line-height: 30px;
}
.more-select{
    display: inline-block;
    font-size: 20px;
    margin-left: 10px;
    margin-right: 34px;
}
._batchDownload{
    font-size: 20px;
    color: #093BE7;
    display: inline-block;
    margin-right: 14px;
    cursor: pointer;
}
.hide-all-next{
    font-size: 20px;
    color: #333333;
    display: inline-block;
     cursor: pointer;
}
.pages .page a.on:hover{
    background: #024AC2 !important;
}
/* .pages .page a:hover{
    border: 1px solid #024AC2 !important;
} */
.pages .page a.on{
    background: #024AC2 !important;
}
.top-list{
    background:#F6F8FF;
}
.top-list-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.top-list-type{
    width: 132px;
    height: 186px;
    display: inline-block;
}
.top-list-type:last-child{
    margin-right: 0;
}
.tab-title{
    margin-top: 14px;
    font-size: 24px;
    font-weight: 400;
    color: #666666;
}
.top-list-type-active{
    background: #fff;
   border-bottom: 1px solid #093BE7;
}
 
.top-list-type-active .tab-title{
    font-weight: 600;
    color: #093BE7;
}
.tab-img-icon{
    margin-top: 23px;
}