.search_dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 15;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
  }
  
  .search_dialog .search_dialog_content .search_input .clear_search_icon {
    width: 20px;
    height: 20px;
    background: url(../images/close_icon_black.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 10px;
    right: 55px;
    cursor: pointer;
    display: none;
  }
  
  .search_dialog .search_header .close {
    width: 32px;
    height: 32px;
    float: right;
    background: url('../../images/closesvg.svg') no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
    display: inline-block;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  
  .search_dialog .search_header .close:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .search_dialog .search_header {
    padding: 40px 40px;
  }
  
  .search_dialog .search_bottom_bg {
    background: url(../../images/search_bg.png) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
  }
  
  .no_thing {
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  
  
  .search_title_img {
    display: flex;
    justify-content: center;
    margin-bottom: 41px;
  }
  
  .search_title_img>img {
    width: 220px;
    height: 42px;
    text-align: center;
  }
  
  .search_dialog_content {
    width: 1200px;
    margin: 0 auto;
  }
  
  .sel_box {
    width: 255px;
    height: 44px;
    background: linear-gradient(176deg, #DCB061 0%, #CC9541 100%);
    box-shadow: 0px 0px 21px 0px rgba(81, 46, 0, 0.4200);
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
  }
  
  .sel_content {
    width: 170px;
    margin-left: 27px;
    height: 44px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    color: #441407;
  }
  
  .sel_content>span {
    font-size: 16px;
    font-weight: 400;
    color: #441407;
    line-height: 44px;
  }
  
  .sel_content>img {
    position: absolute;
    right: 16px;
    width: 18px;
    height: 11px;
    top: 50%;
    margin-top: -5.5px;
  }
  
  .sel_close {
    width: 20px;
    height: 20px;
    margin-left: 23px;
  }
  
  .sel_close>img {
    width: 100%;
    height: 100%;
  }
  
  .search_menu_list {
    width: 554px;
    height: 44px;
    background: linear-gradient(195deg, #FFA66F 0%, #C50000 100%);
    border-radius: 8px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .search_menu_list>div {
    margin-right:48px;
    font-size: 16px;
    font-weight: 400;
    color: #FFDE73;
    cursor: pointer;
    position: relative;
  }
  
  .search_top {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .search_top .scene_list_box {
    display: block;
    width: 255px;
    height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 50;
  }
  
  .search_menu_list>.active {
    font-weight: bold !important;
  }
  
  .search_menu_list>.active::before {
    width: 27px;
    height: 2px;
    background: #FFDE73;
    border-radius: 1px;
    position: absolute;
    content: '';
    bottom: -9px;
    margin: 0 0 0 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .search_input {
    width: 645px;
    height: 44px;
    background: rgba(0,0,0,0.45);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.45);
  }
  
  .search_icon {
    width: 19px;
    height: 19px;
    margin: 0 10px 0 17px;
  }
  
  .search_icon>img {
    width: 100%;
    height: 100%;
  }
  
  .search_input {
    display: flex;
    align-items: center;
  }
  
  .search_input>input {
    flex: 1;
    padding: 0 0 0 5px;
    outline: none;
    border: none;
    height: 36px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #CD9744;
  }
  
  .search_input>input::placeholder {
    color: #CD9744;
  }
  
  .search_input>button {
    width: 100px;
    height: 36px;
    background: linear-gradient(218deg, #FFA66F 0%, #C50000 100%);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    color: #FFDE73;
    border: none;
    margin: 4px 4px 4px 15px;
    cursor: pointer;
  }
  
  .search_input>button:hover {
    background: linear-gradient(0deg, #C50000 0%, #FFA66F 100%);
  }
  
  .search_list {
    margin-top: 39px;
    height: 400px;
  }
  
  .search_key_list {
    width: 100%;
  }
  
  .search_item {
    width: 180px;
    height: 180px;
    background: #D8D8D8;
    border-radius: 6px;
    position: relative;
    margin-right: 24px;
    margin-bottom: 20px;
    display: inline-block;
    cursor: pointer;
    float: left;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(46,1,1,0.2);
  }
  
  .search_item>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .search_item_title {
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0) -11%, rgba(0,0,0,0.56) 100%);
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  
  @keyframes demo1 {
    0% {
      transform: translateX(0);
    }
  
    100% {
      transform: translateX(-200%);
    }
  }
  
  
  .search_list>:nth-of-type(6n) {
    margin-right: 0;
  }
  
  .search_page {
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background-color: rgba(255, 255, 215, .3);
    border-radius: 18px;
  }
  
  .search_box {
    display: flex;
    justify-content: center;
    /* margin-top: 100px; */
  }
  
  .fir {
    width: 65px;
    height: 36px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    border-right: 2px solid rgba(212, 209, 192, .6);
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.5;
    cursor: pointer;
  }
  
  .to_left {
    width: 7px;
    display: inline-block;
    margin: 0 16px;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../../images/left.svg');
    background-size: 100% 100%;
  }
  
  .to_left>img {
    width: 100%;
    height: 11px;
  }
  
  .to_right {
    width: 7px;
    height: 100%;
    display: inline-block;
    margin: 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../../images/right.svg');
    background-size: 100% 100%;
  }
  
  .to_right>img {
    width: 100%;
    height: 11px;
  }
  
  .list-page {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #FCF5D3;
    cursor: pointer;
    line-height: 30px;
    /* margin: 0 3px; */
  }
  
  .end {
    width: 65px;
    height: 36px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    border-left: 2px solid rgba(212, 209, 192, .6);
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.5;
    cursor: pointer;
  }
  
  .search_page .active {
    background: linear-gradient(218deg, #FFA66F 0%, #C50000 100%);
    border-radius: 15px;
  }
  
  .sel_xl {
    width: 270px;
    max-height: 205px;
    background: #FFFFFF;
    box-shadow: 0px 5px 10px 0px rgba(33, 33, 33, 0.4000);
    border-radius: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
    display: none;
    overflow: hidden;
  }
  
  .sel_xl_trangle {
    position: absolute;
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 9px solid #fff;
    top: 55px;
    left: 50px;
    display: none;
  }
  
  .sel_information {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    max-height: 205px;
  }
  
  .sel_information::-webkit-scrollbar {
    width: 5px;
  }
  
  .sel_information::-webkit-scrollbar-thumb {
    width: 5px;
    height: 68px;
    background: #B1B1B1;
    border-radius: 3px;
  }
  
  .sel_information>p {
    width: 100%;
    height: 35px;
    font-size: 16px;
    color: #222222;
    line-height: 35px;
    padding-left: 24px;
    padding-right: 12px;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
  }
  
  .sel_information>p:hover {
    background: #F4F4F4;
    color: #AD0406;
  }
  
  .search_input>img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    display: none;
  }