:root {
  --adm-radius-s: 4px;
  --adm-radius-m: 8px;
  --adm-radius-l: 12px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #1677ff;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-danger: #ff3141;
  --adm-color-white: #ffffff;
  --adm-color-text: #333333;
  --adm-color-text-secondary: #666666;
  --adm-color-weak: #999999;
  --adm-color-light: #cccccc;
  --adm-color-border: #eeeeee;
  --adm-color-box: #f5f5f5;
  --adm-color-background: #ffffff;
  --adm-font-size-main: var(--adm-font-size-5);
  --adm-font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',
    helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
    'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  --adm-border-color: var(--adm-color-border);
}
html[data-prefers-color-scheme='dark'] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: #808080;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-border-color: var(--adm-color-border);
}
:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
}
a,
button {
  cursor: pointer;
}
a {
  color: var(--adm-color-primary);
  transition: opacity ease-in-out 0.2s;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: unset;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: unset;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  right: -100vw;
  bottom: -100vh;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  pointer-events: none;
}

.adm-toast-mask .adm-toast-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.adm-toast-mask .adm-toast-main {
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 204px;
  max-height: 70%;
  overflow: auto;
  color: white;
  word-break: break-all;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  pointer-events: all;
  font-size: var(--adm-font-size-7);
  line-height: 1.5;
  box-sizing: border-box;
}
.adm-toast-mask .adm-toast-main-text {
  padding: 12px;
  min-width: 0px;
}
.adm-toast-mask .adm-toast-main-icon {
  padding: 35px 12px;
  min-width: 150px;
}
.adm-toast-mask .adm-toast-main-icon .adm-toast-icon {
  text-align: center;
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1;
}
.adm-toast-loading {
  --size: 48px;
  margin: 0 auto 8px;
}

.adm-spin-loading {
  --color: var(--adm-color-weak);
  --size: 32px;
  width: var(--size);
  height: var(--size);
}
.adm-spin-loading-svg {
  width: 100%;
  height: 100%;
  animation: adm-spin-loading-rotate 0.8s infinite linear;
}
.adm-spin-loading-svg > .adm-spin-loading-fill {
  stroke: var(--color);
}
@keyframes adm-spin-loading-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index);
  display: block;
  width: 100%;
  height: 100%;
}
.adm-mask-aria-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.adm-mask-content {
  z-index: 1;
}

.adm-auto-center {
  display: flex;
  justify-content: center;
}
.adm-auto-center-content {
  flex: 0 1 auto;
}

._flex-align-center_jfosf_1,._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1._searchInputBox_jfosf_1 ._inputBox_jfosf_1,._header_jfosf_1 ._unLogin_jfosf_1,._header_jfosf_1 ._nav_jfosf_1 ._userCenter_jfosf_1,._header_jfosf_1 ._nav_jfosf_1,._auth-box_jfosf_1{display:flex;align-items:center}._flex-align-center_jfosf_1._justify-end_jfosf_5,._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1._searchInputBox_jfosf_1 ._justify-end_jfosf_5._inputBox_jfosf_1,._header_jfosf_1 ._justify-end_jfosf_5._unLogin_jfosf_1,._header_jfosf_1 ._nav_jfosf_1 ._userCenter_jfosf_1,._header_jfosf_1 ._justify-end_jfosf_5._nav_jfosf_1,._auth-box_jfosf_1{justify-content:flex-end}._icon-tab-box_jfosf_9 svg._tab_icon_jfosf_9,._dropdownBox_jfosf_9 svg._tab_icon_jfosf_9{color:#000000a6}._icon-tab-box_jfosf_9:hover svg._tab_icon_jfosf_9,._dropdownBox_jfosf_9:hover svg._tab_icon_jfosf_9{color:#222}._icon-clear_jfosf_16{color:#888;cursor:pointer}._icon-clear_jfosf_16:hover{color:#555}._hasLine_jfosf_24{position:relative;margin-bottom:8px;padding-bottom:8px}._hasLine_jfosf_24:after{content:"";position:absolute;left:16px;right:16px;bottom:0;height:1px;background:#ededed}._avatarBox_jfosf_39{width:32px;height:32px;cursor:pointer;position:relative;box-sizing:border-box;border-radius:50%}._avatarBox_jfosf_39 ._avatarImg_jfosf_47{background-size:100% 100%}._avatarBox_jfosf_39 img{width:32px;height:32px;border-radius:50%}._avatarBox_jfosf_39 ._authIcon_jfosf_55{position:absolute;bottom:-1px;right:-1px;line-height:initial}._avatarBox_jfosf_39 ._memberStudio_jfosf_61{position:absolute;bottom:0px;right:0px;background:rgba(40,40,40,.8);border:2px solid #ffffff;box-sizing:border-box;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);border-radius:16px;white-space:nowrap}._header_jfosf_1{font-size:14px;min-width:1200px;width:100%;height:56px;background:#FFF200;position:relative;z-index:1050}._header_jfosf_1 a{color:inherit;text-decoration:none}._header_jfosf_1 .hightlight{color:#f4523b;font-weight:400}._header_jfosf_1 ._nav_jfosf_1{height:56px;margin:0 30px;position:relative}._header_jfosf_1 ._nav_jfosf_1 a,._header_jfosf_1 ._nav_jfosf_1 a:visited,._header_jfosf_1 ._nav_jfosf_1 a:link{color:#333}._header_jfosf_1 ._nav_jfosf_1 ._nav_logo_jfosf_104{line-height:0;display:block;width:120px;height:20px;position:absolute;top:18px;left:0}._header_jfosf_1 ._nav_jfosf_1 ._nav_logo_relative_jfosf_113{position:relative;top:0;left:0}._header_jfosf_1 ._nav_jfosf_1 ._header-menu-bar_jfosf_118{height:56px;margin:0 auto}._header_jfosf_1 ._nav_jfosf_1 ._searchNav_jfosf_122{width:67px;height:56px;text-align:center;line-height:56px;cursor:pointer}._header_jfosf_1 ._nav_jfosf_1 ._searchNav_jfosf_122:hover svg{color:#222}._header_jfosf_1 ._nav_jfosf_1 ._userCenter_jfosf_1{width:100%;height:56px;float:right;padding-left:24px}._header_jfosf_1 ._nav_jfosf_1 ._menu-box_jfosf_138{margin-left:160px;text-align:center;display:block;opacity:1;flex-shrink:0}._header_jfosf_1 ._nav_jfosf_1 ._menu-box_jfosf_138._isSearch_jfosf_145{opacity:0;display:none}._header_jfosf_1 ._nav_jfosf_1 ._menu-box_jfosf_138 ._menu-list-content_jfosf_149{height:56px;margin:0 auto;display:inline-flex}._header_jfosf_1 ._nav_jfosf_1 ._searchInputHull_jfosf_1{height:34px;max-width:540px;min-width:154px;margin-right:12px;position:relative;flex:1 1}._header_jfosf_1 ._nav_jfosf_1 ._subNavDot_jfosf_162{display:inline-block;width:8px;height:8px;border-radius:50%;background:#ff4a3b;position:absolute;margin:0 0 2px 3px;top:20px}._header_jfosf_1 ._nav_jfosf_1 ._smallDot_jfosf_172{width:40px;height:20px;color:#fff;background:#FF1A25;border-radius:10px;box-sizing:border-box}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180{height:56px;padding:0 24px;text-align:center;position:relative;display:inline-flex;align-items:center;justify-content:center;cursor:pointer}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180:nth-child(even){background-color:coral!important}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180 ._header_title_jfosf_193{transition:none;position:relative}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180 ._header_title_jfosf_193._header_title_ai_jfosf_197{width:45px}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180 ._saleVip_jfosf_200{position:absolute;top:-13px;z-index:1}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._current_jfosf_205>span{color:#222;font-weight:500}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._navMore_jfosf_209{padding:0 20px}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._navMore_jfosf_209 ._subNavDot_jfosf_162{right:10px}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._enNavItem_jfosf_215{padding:0 15px}._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._enNavItem_jfosf_215 ._saleVip_jfosf_200{right:-44px}._header_jfosf_1 ._nav_jfosf_1 ._joinStudio_jfosf_221{width:104px;height:30px;margin-left:30px;border-radius:8px;background-color:transparent;border:1px solid #555555}._header_jfosf_1 ._nav_jfosf_1 ._joinStudio_jfosf_221:hover{color:#fff200;background-color:#282828}@media screen and (max-width: 1521px){._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180,._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._navMore_jfosf_209{padding:0 16px}}@media screen and (max-width: 1399px){._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180,._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._navMore_jfosf_209{padding:0 14px}._header_jfosf_1 ._nav_jfosf_1 ._menu-box_jfosf_138{margin-left:152px}}@media screen and (max-width: 1250px){._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180,._header_jfosf_1 ._nav_jfosf_1 ._navItem_jfosf_180._navMore_jfosf_209{padding:0 8px}._header_jfosf_1 ._nav_jfosf_1 ._line_jfosf_253{padding-right:8px;margin-right:8px}}._header_jfosf_1 ._dropdown_unlogBox_jfosf_258 [data-text=true]+div{z-index:2000!important}._header_jfosf_1 ._dropdown_unlogBox_jfosf_258:hover ._header_login_jfosf_261{color:#222}._header_jfosf_1 ._unLogin_jfosf_1{height:56px;cursor:pointer}._header_jfosf_1 ._unLogin_jfosf_1 ._header_login_jfosf_261{white-space:nowrap}._header_jfosf_1 ._header_reg_jfosf_271{color:#fff;margin-left:32px;padding:7px 24px;border-radius:8px;background-color:#222;flex-shrink:0}._header_jfosf_1 ._header_reg_jfosf_271:hover{background-color:#4e4e4e}._header_jfosf_1 ._loginItem_jfosf_282{position:relative}._header_jfosf_1 ._loginItem_jfosf_282 ._headerImage_jfosf_285{vertical-align:middle;border-radius:50%}._header_jfosf_1 ._loginItem_jfosf_282 ._headerImage_jfosf_285 ._subNavDot_jfosf_162{left:46px;top:11px}._header_jfosf_1 ._loginItem_jfosf_282 ._messageCount_jfosf_293{word-break:normal;min-width:16px;height:16px;background:#FF1A25;border-radius:10px;font-size:12px;color:#f9f9f9;vertical-align:middle;position:absolute;top:8px;left:34px;text-align:center}._header_jfosf_1 ._messageItem_jfosf_307{padding:0 20px;display:flex;align-items:center;height:56px;position:relative}._header_jfosf_1 ._messageDropdown_jfosf_315>div:last-child{position:relative}._dropdownBox_jfosf_9 [data-text=true]{width:100%}._dropdownBox_jfosf_9 [data-text=true]+div{border-radius:16px;margin:-8px 0 0!important;box-shadow:0 8px 32px #0003}._navList_jfosf_329:hover ._navItem_jfosf_180 ._header_title_jfosf_193{color:#222;font-weight:500}._navList_jfosf_329:hover ._headerUpload_jfosf_333 svg,._navList_jfosf_329:hover ._navItem_jfosf_180 svg{color:#222}._line_jfosf_253{position:relative;padding-right:14px;margin-right:13px}._line_jfosf_253:after{content:"";position:absolute;right:0px;top:22px;height:12px;display:inline-block;width:1px;background:rgba(0,0,0,.25)}._beta_icon_jfosf_354{display:flex;align-items:center;justify-content:center;border-radius:8px 8px 8px 0!important;background:rgba(0,0,0,.3);width:36px;height:16px;position:absolute;right:-24px;top:-14px;font-size:12px;color:#fff}section._dropdown_list_jfosf_369{cursor:pointer;min-width:182px;border-radius:16px;color:#444;z-index:12}section._dropdown_list_jfosf_369._discoverList_jfosf_376{padding:0 60px 0 0;width:812px;height:478px}section._dropdown_list_jfosf_369._enDiscoverList_jfosf_381{width:815px}section._dropdown_list_jfosf_369._enCopyRightList_jfosf_384{width:186px}section._dropdown_list_jfosf_369._enCopyRightList_jfosf_384 ._labelItem_jfosf_387{width:100%}section._dropdown_list_jfosf_369 ._labelItem_jfosf_387{min-width:100%;width:max-content;position:relative;box-sizing:border-box}section._dropdown_list_jfosf_369 ._labelItem_jfosf_387 ._labelTip_jfosf_396{display:inline-block;margin-left:5px;vertical-align:top}section._dropdown_list_jfosf_369 ._labelItem_jfosf_387 ._subNavDot_jfosf_162{top:12px}section._dropdown_list_jfosf_369 ._labelItem_jfosf_387 ._beta_jfosf_354{color:#fff200;margin-left:8px;vertical-align:middle}section._dropdown_list_jfosf_369 ._labelItem_jfosf_387:hover ._beta_jfosf_354{color:#fff}section._dropdown_list_jfosf_369 ._menu-row-line_jfosf_414{margin:8px 16px;height:1px;background-color:#ededed}section._dropdown_list_jfosf_369 ._specials-upload_jfosf_419{height:44px;background-image:url(https://img.zcool.cn/special-resource/bonus2024/assets/img/specials-upload.png?v=2);background-size:182px 44px;background-repeat:no-repeat;background-position:center center}section._dropdown_list_jfosf_369 ._specials-upload_jfosf_419:hover{background-color:transparent;background-image:url(https://img.zcool.cn/special-resource/bonus2024/assets/img/specials-upload-h.png?v=2)}._userCenterWrap_jfosf_431{height:56px;flex:1 1}._userCenterWrap_jfosf_431 ._headerUpload_jfosf_333{height:56px;position:relative;padding:13px 20px;text-align:center}._userCenterWrap_jfosf_431 ._headerUpload_jfosf_333:hover svg{color:#222}._userCenterWrap_jfosf_431 ._proBtn_jfosf_449{display:flex;justify-content:center;align-items:center;border-radius:8px;background:#222;font-size:14px;font-weight:500;color:#ffe099;white-space:nowrap;cursor:pointer;margin-right:18px}._userCenterWrap_jfosf_431 ._proBtn_jfosf_449:hover{background:#38352E}._userCenterWrap_jfosf_431 ._proBtn_jfosf_449 ._proBtnIcon_jfosf_465{margin-right:4px;width:20px;height:20px}._userCenterWrap_jfosf_431 ._proBtn618_jfosf_470{display:flex;align-items:center}._userCenterWrap_jfosf_431 ._proBtn618_jfosf_470 svg{color:#222}._userCenterWrap_jfosf_431 ._proBtn618_jfosf_470:hover{cursor:pointer}._userCenterWrap_jfosf_431 ._proBtn618_jfosf_470:hover svg{color:#38352e}@media screen and (max-width: 1521px){._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._searchInputHull_jfosf_1{margin-right:12px}._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._headerUpload_jfosf_333,._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._messageItem_jfosf_307{padding:0 16px}._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._loginItem_jfosf_282{padding-left:16px}._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._loginItem_jfosf_282 ._messageCount_jfosf_293{left:29px}._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._header_login_jfosf_261{padding-left:16px}}@media screen and (max-width: 1399px){._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._searchInputHull_jfosf_1{margin-right:12px}._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._headerUpload_jfosf_333,._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._messageItem_jfosf_307{padding:0 14px}._userCenterWrap_jfosf_431 ._userCenter_jfosf_1 ._loginItem_jfosf_282,._userCenterWrap_jfosf_431 ._header_login_jfosf_261{padding-left:14px}._userCenterWrap_jfosf_431 ._joinStudio_jfosf_221,._userCenterWrap_jfosf_431 ._header_reg_jfosf_271{margin-left:28px}}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1{position:relative;background-color:transparent;width:100%;height:100%}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1>div:last-child{width:100%;height:100%;display:block}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._searchInput_jfosf_1,._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._searchInput_jfosf_1 [data-text=true]{width:100%;height:100%}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._searchInput_jfosf_1 [data-text=true]+div{margin:3px 0 0!important;width:540px;right:0;border-radius:12px;box-shadow:0 8px 32px #0003}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._searchInput_jfosf_1 ._searchList_jfosf_550{box-shadow:none;box-sizing:border-box}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1._searchInputBox_jfosf_1 ._inputBox_jfosf_1{height:100%;background-color:#fff;border:1px solid transparent;border-radius:8px}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1._searchInputBox_jfosf_1 ._inputBox_jfosf_1:hover{border:1px solid #555555}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._search-icon_jfosf_563{margin-right:12px;color:#888}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._search-icon_jfosf_563:hover{color:#555}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 [data-text=true][aria-expanded=true] ._inputBox_jfosf_1{border:1px solid #555555}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 input ::-webkit-input-placeholder{color:#bbb}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 input :-moz-placeholder{color:#bbb}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 input ::-moz-placeholder{color:#bbb}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 input :-ms-input-placeholder{color:#bbb}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._headerInput_jfosf_589{position:relative;background:transparent;width:100%;height:100%;padding-left:12px;padding-right:12px;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:14px;border:0;outline:0;color:#444;flex:1 1;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._searchBarClear_jfosf_606{margin-right:16px;color:#bbb}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._searchBarClear_jfosf_606 svg{display:block}._searchInputHull_jfosf_1 ._searchInputBox_jfosf_1 ._searchBarClear_jfosf_606:hover{color:#888}._searchBarCamera_jfosf_617 ._iconCamera_jfosf_617{width:20px;height:20px;margin-right:16px;background:url(https://static.zcool.cn/git_z/z/images/new/svg/icon-image-xiangji.svg);display:block;position:relative}._searchBarCamera_jfosf_617 ._iconCamera_jfosf_617:hover{opacity:.65}._searchBarCamera_jfosf_617 ._newTag_jfosf_628{position:absolute;left:10px;top:-7px}._searchBarCamera_jfosf_617 ._uploadImageLayer_jfosf_633{width:540px;height:280px;border-radius:16px;box-shadow:0 8px 32px #0003;position:absolute;right:0;top:38px;cursor:auto;box-sizing:border-box}._searchBarCamera_jfosf_617 ._uploadImageLayer_jfosf_633 ._uploadbtn_jfosf_644{position:relative}._searchBarCamera_jfosf_617 ._uploadImageLayer_jfosf_633 input[type=file]{display:none}._searchBarCamera_jfosf_617 ._uploadImageLayer_jfosf_633 ._layerClose_jfosf_650{cursor:pointer}._searchBarCamera_jfosf_617 ._feildBox_jfosf_653{height:192px;border:1.5px dashed #d9d9d9;border-radius:12px}._studio_home_jfosf_659{border:1px solid #333;box-sizing:border-box;border-radius:15px;padding:0 15px;height:32px;display:flex;align-items:center}

