/*!**********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-2.use[1]!./node_modules/sass-loader/dist/cjs.js!./static/viewComponents/SearchBox/src/style/SearchBoxService.scss ***!
  \**********************************************************************************************************************************************************************************/
@charset "UTF-8";
@media screen and (min-width: 768px) {
  .racetop-search-box {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .racetop-search-box::before {
    transition: all 0.5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    cursor: pointer;
  }
  .racetop-search-box .content-box {
    transition: all 0.5s ease-in-out;
    transform: translateX(100%);
    position: absolute;
    z-index: 1;
    height: calc(100% - 80px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 550px;
    background: #FFF;
    margin: 40px 0;
    border-radius: 16px 0 0px 16px;
    box-sizing: border-box;
    padding: 20px;
  }
  .racetop-search-box .content-box .search-box-title {
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    line-height: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 关闭按钮 */
    display: none;
  }
  .racetop-search-box .content-box .search-box-title .dailog-close-box {
    cursor: pointer;
  }
  .racetop-search-box .content-box .search-form {
    position: relative;
    transition: all 0.3s;
  }
  .racetop-search-box .content-box .search-form__item {
    display: flex;
    padding-left: 10px;
    border-bottom: 1px solid var(--theme-color);
    gap: 10%;
  }
  .racetop-search-box .content-box .search-form__item input {
    border: none;
    height: 30px;
    line-height: 26px;
    font-size: 16px;
    width: 80%;
  }
  .racetop-search-box .content-box .search-form__item .clear-icon {
    cursor: pointer;
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 1s;
  }
  .racetop-search-box .content-box .search-form__item .clear-icon svg {
    width: 24px;
    height: auto;
    display: block;
  }
  .racetop-search-box .content-box .search-form .loding-control {
    display: block;
    width: 0;
    background-color: #FFF;
    height: 3px;
    position: absolute;
    bottom: -1px;
    left: 40%;
    transition: all 1s;
  }
  @keyframes searchLoading {
    0% {
      left: 0;
      width: 0;
      bottom: -1px;
    }
    50% {
      left: 40%;
      width: 20%;
      bottom: -1px;
    }
    100% {
      left: 100%;
      width: 0;
      bottom: -1px;
    }
  }
  .racetop-search-box .content-box .search-form .loding-control.search_loading {
    animation: searchLoading 2s infinite;
  }
  .racetop-search-box .content-box .search-form:hover, .racetop-search-box .content-box .search-form:focus {
    box-shadow: 0 8px 8px rgba(254, 198, 41, 0.0784313725);
  }
  .racetop-search-box .content-box .search-form:hover .clear-icon, .racetop-search-box .content-box .search-form:focus .clear-icon {
    opacity: 1;
  }
  .racetop-search-box .content-box .search-line_title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .racetop-search-box .content-box .search-line_title-box span {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    font-style: normal;
  }
  .racetop-search-box .content-box .search-line_title-box .svg-box {
    cursor: pointer;
  }
  .racetop-search-box .content-box .search-line_title-box .svg-box svg {
    width: 24px;
    height: auto;
    display: block;
  }
  .racetop-search-box .content-box .search-line .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
  }
  .racetop-search-box .content-box .search-line .tag-list .tag {
    cursor: pointer;
    padding: 8px;
    background-color: #f7f8fa;
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #1d2129;
    white-space: nowrap;
  }
  .racetop-search-box .content-box .search-line .tag-list .tag span {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .racetop-search-box .content-box .search-line .tag-list .tag .hot-svg svg {
    display: block;
    width: 16px;
    height: 16px;
  }
  .racetop-search-box .content-box .search-line.hot-line .tag span {
    margin-top: 2px;
  }
  .racetop-search-box.active::before {
    opacity: 1;
  }
  .racetop-search-box.active .content-box {
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .racetop-search-box {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .racetop-search-box::before {
    transition: all 0.5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    cursor: pointer;
  }
  .racetop-search-box .content-box {
    transition: all 0.5s ease-in-out;
    transform: translateX(-100%);
    position: absolute;
    z-index: 1;
    height: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background: #FFF;
    box-sizing: border-box;
    padding: 20px;
  }
  .racetop-search-box .content-box .search-box-title {
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    line-height: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
  }
  .racetop-search-box .content-box .search-box-title .dailog-close-box {
    cursor: pointer;
  }
  .racetop-search-box .content-box .search-form {
    position: relative;
  }
  .racetop-search-box .content-box .search-form__item {
    display: flex;
    padding-left: 10px;
    border-bottom: 1px solid var(--theme-color);
    gap: 10%;
  }
  .racetop-search-box .content-box .search-form__item input {
    border: none;
    height: 30px;
    line-height: 26px;
    font-size: 16px;
    width: 80%;
  }
  .racetop-search-box .content-box .search-form__item .clear-icon {
    cursor: pointer;
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 1s;
  }
  .racetop-search-box .content-box .search-form__item .clear-icon svg {
    width: 24px;
    height: auto;
    display: block;
  }
  .racetop-search-box .content-box .search-form .loding-control {
    display: block;
    width: 0;
    background-color: #FFF;
    height: 3px;
    position: absolute;
    bottom: -1px;
    left: 40%;
    transition: all 1s;
  }
  @keyframes searchLoading {
    0% {
      left: 0;
      width: 0;
      bottom: -1px;
    }
    50% {
      left: 40%;
      width: 20%;
      bottom: -1px;
    }
    100% {
      left: 100%;
      width: 0;
      bottom: -1px;
    }
  }
  .racetop-search-box .content-box .search-form .loding-control.search_loading {
    animation: searchLoading 2s infinite;
  }
  .racetop-search-box .content-box .search-form:hover, .racetop-search-box .content-box .search-form:focus {
    box-shadow: 0 8px 8px rgba(254, 198, 41, 0.0784313725);
  }
  .racetop-search-box .content-box .search-form:hover .clear-icon, .racetop-search-box .content-box .search-form:focus .clear-icon {
    opacity: 1;
  }
  .racetop-search-box .content-box .search-line_title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .racetop-search-box .content-box .search-line_title-box span {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    font-style: normal;
  }
  .racetop-search-box .content-box .search-line_title-box .svg-box {
    cursor: pointer;
  }
  .racetop-search-box .content-box .search-line_title-box .svg-box svg {
    width: 24px;
    height: auto;
    display: block;
  }
  .racetop-search-box .content-box .search-line .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
  }
  .racetop-search-box .content-box .search-line .tag-list .tag {
    cursor: pointer;
    padding: 8px;
    background-color: #f7f8fa;
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #1d2129;
    white-space: nowrap;
  }
  .racetop-search-box .content-box .search-line .tag-list .tag span {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .racetop-search-box .content-box .search-line .tag-list .tag .hot-svg svg {
    display: block;
    width: 16px;
    height: 16px;
  }
  .racetop-search-box .content-box .search-line.hot-line .tag span {
    margin-top: 2px;
  }
  .racetop-search-box.active::before {
    opacity: 1;
  }
  .racetop-search-box.active .content-box {
    transform: translateX(0);
  }
}
/*!*************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-2.use[1]!./node_modules/sass-loader/dist/cjs.js!./static/common/toast/toast.scss ***!
  \*************************************************************************************************************************************************/
@media screen and (min-width: 769px) {
  .toast-list {
    position: fixed;
    z-index: 999;
    top: 150px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .toast-list .toast-item {
    min-width: 277px;
    padding: 20px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    animation: toastIn 0.6s ease-in-out;
  }
  .toast-list .toast-item span {
    display: block;
    text-align: left;
    font-family: Poppins, Poppins;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
  }
  .toast-list .toast-item--fadeout {
    animation: toastOut 0.6s ease-in-out;
    opacity: 0;
  }
  @keyframes toastIn {
    0% {
      transform: translate(0, -100%);
      opacity: 0;
    }
    100% {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
  @keyframes toastOut {
    0% {
      transform: translate(0, 0);
      opacity: 1;
    }
    100% {
      transform: translate(0, 20%);
      opacity: 0;
    }
  }
}
@media screen and (max-width: 768px) {
  .toast-list {
    position: fixed;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }
  .toast-list .toast-item {
    min-width: 277px;
    padding: 20px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    animation: toastIn 0.6s ease-in-out;
  }
  .toast-list .toast-item span {
    display: block;
    text-align: left;
    font-family: Poppins, Poppins;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
  }
  .toast-list .toast-item--fadeout {
    animation: toastOut 0.6s ease-in-out;
    opacity: 0;
  }
  @keyframes toastIn {
    0% {
      transform: translate(0, -100%);
      opacity: 0;
    }
    100% {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
  @keyframes toastOut {
    0% {
      transform: translate(0, 0);
      opacity: 1;
    }
    100% {
      transform: translate(0, 20%);
      opacity: 0;
    }
  }
}

/*# sourceMappingURL=entry-client.3f2339182f34cc1ab43d.css.map*/