From ca35f8845550c680adf6d5b103d295785087f180 Mon Sep 17 00:00:00 2001 From: xtaodada Date: Fri, 13 Oct 2023 22:58:17 +0800 Subject: [PATCH] :sparkles: Support starrail activity - YitaiBattle --- plugins/starrail/activity.py | 48 + resources/starrail/activity/css/yitai.css | 8106 +++++++++++++++++++++ resources/starrail/activity/yitai.html | 208 + 3 files changed, 8362 insertions(+) create mode 100644 resources/starrail/activity/css/yitai.css create mode 100644 resources/starrail/activity/yitai.html diff --git a/plugins/starrail/activity.py b/plugins/starrail/activity.py index c23c7f5..88fed40 100644 --- a/plugins/starrail/activity.py +++ b/plugins/starrail/activity.py @@ -128,6 +128,54 @@ class PlayerActivityPlugins(Plugin): query_selector="#container", ) + @handler.command("yitai_battle", block=False) + @handler.message(filters.Regex("^以太战线信息查询(.*)"), block=False) + async def yitai_battle_command_start(self, update: Update, context: CallbackContext) -> Optional[int]: + user = update.effective_user + message = update.effective_message + logger.info("用户 %s[%s] 查询以太战线信息命令请求", user.full_name, user.id) + try: + uid = await self.get_uid(user.id, context.args, message.reply_to_message) + async with self.helper.genshin(user.id) as client: + render_result = await self.yitai_battle_render(client, uid) + except AttributeError as exc: + logger.error(ACTIVITY_DATA_ERROR) + logger.exception(exc) + await message.reply_text(ACTIVITY_ATTR_ERROR) + return + except NotHaveData as e: + reply_message = await message.reply_text(e.MSG) + if filters.ChatType.GROUPS.filter(reply_message): + self.add_delete_message_job(message) + self.add_delete_message_job(reply_message) + return + await message.reply_chat_action(ChatAction.UPLOAD_PHOTO) + await render_result.reply_photo(message, filename=f"{user.id}.png", allow_sending_without_reply=True) + + async def yitai_battle_render(self, client: "StarRailClient", uid: Optional[int] = None) -> RenderResult: + if uid is None: + uid = client.player_id + + act_data = await client.get_starrail_activity(uid) + try: + yitai_battle_data = act_data.yitai_battle + if not (yitai_battle_data.exists_data and yitai_battle_data.info.exists_data): + raise NotHaveData + except ValueError: + raise NotHaveData + data = { + "uid": mask_number(uid), + "data": yitai_battle_data.info, + } + + return await self.template_service.render( + "starrail/activity/yitai.html", + data, + {"width": 960, "height": 1000}, + full_page=True, + query_selector="#DIV_1", + ) + @handler.command("treasure_dungeon", block=False) @handler.message(filters.Regex("^地城探宝信息查询(.*)"), block=False) async def treasure_dungeon_command_start(self, update: Update, context: CallbackContext) -> Optional[int]: diff --git a/resources/starrail/activity/css/yitai.css b/resources/starrail/activity/css/yitai.css new file mode 100644 index 0000000..b7d04f2 --- /dev/null +++ b/resources/starrail/activity/css/yitai.css @@ -0,0 +1,8106 @@ +#DIV_1 { + block-size: 554px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 950px; + inline-size: 960px; + margin-block-start: 12px; + margin-top: 12px; + outline-color: rgb(51, 51, 51); + perspective-origin: 480px 277px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 480px 277px; + width: 960px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 12px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 480px 277px; +} + +/*#DIV_1*/ + +#DIV_1:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_1:after*/ + +#DIV_1:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_1:before*/ + +#DIV_2 { + background-color: rgb(16, 22, 51); + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/bg@pc.b661f645.png"); + background-position: 50% 0%; + background-repeat: no-repeat; + background-size: 100%; + block-size: 554px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-start-end-radius: 32px; + border-top-color: rgb(51, 51, 51); + border-top-right-radius: 32px; + bottom: 0px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 100%; + inline-size: 960px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + outline-color: rgb(51, 51, 51); + padding-block-end: 24px; + padding-block-start: 24px; + padding-bottom: 24px; + padding-inline-end: 40px; + padding-inline-start: 40px; + padding-left: 40px; + padding-right: 40px; + padding-top: 24px; + perspective-origin: 480px 277px; + position: relative; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform-origin: 480px 277px; + width: 960px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgb(16, 22, 51) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/bg@pc.b661f645.png") no-repeat scroll 50% 0% / 100% padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + border-radius: 0px 32px 0px 0px; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + padding: 24px 40px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 480px 277px; +} + +/*#DIV_2*/ + +#DIV_2:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_2:after*/ + +#DIV_2:before { + block-size: 548.4px; + border-block-end-color: rgba(255, 255, 255, 0.2); + border-block-end-style: solid; + border-block-end-width: 0.8px; + border-block-start-color: rgba(255, 255, 255, 0.2); + border-block-start-style: solid; + border-block-start-width: 0.8px; + border-bottom-color: rgba(255, 255, 255, 0.2); + border-bottom-style: solid; + border-bottom-width: 0.8px; + border-inline-end-color: rgba(255, 255, 255, 0.2); + border-inline-end-style: solid; + border-inline-end-width: 0.8px; + border-inline-start-color: rgba(255, 255, 255, 0.2); + border-inline-start-style: solid; + border-inline-start-width: 0.8px; + border-left-color: rgba(255, 255, 255, 0.2); + border-left-style: solid; + border-left-width: 0.8px; + border-right-color: rgba(255, 255, 255, 0.2); + border-right-style: solid; + border-right-width: 0.8px; + border-start-end-radius: 32px; + border-top-color: rgba(255, 255, 255, 0.2); + border-top-right-radius: 32px; + border-top-style: solid; + border-top-width: 0.8px; + bottom: 2px; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + content: '""'; + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 548.4px; + inline-size: 954.4px; + inset-block-end: 2px; + inset-block-start: 2px; + inset-inline-end: 2px; + inset-inline-start: 2px; + left: 2px; + outline-color: rgb(51, 51, 51); + perspective-origin: 478px 275px; + pointer-events: none; + position: absolute; + right: 2px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 2px; + transform-origin: 478px 275px; + width: 954.4px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0.8px solid rgba(255, 255, 255, 0.2); + border-top: 0.8px solid rgba(255, 255, 255, 0.2); + border-right: 0.8px solid rgba(255, 255, 255, 0.2); + border-bottom: 0.8px solid rgba(255, 255, 255, 0.2); + border-left: 0.8px solid rgba(255, 255, 255, 0.2); + border-width: 0.8px; + border-color: rgba(255, 255, 255, 0.2); + border-style: solid; + border-radius: 0px 32px 0px 0px; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0.8px solid rgba(255, 255, 255, 0.2); + -webkit-border-before: 0.8px solid rgba(255, 255, 255, 0.2); + -webkit-border-end: 0.8px solid rgba(255, 255, 255, 0.2); + -webkit-border-start: 0.8px solid rgba(255, 255, 255, 0.2); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 478px 275px; +} + +/*#DIV_2:before*/ + +#P_3 { + block-size: 24px; + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + box-sizing: border-box; + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 600; + height: 24px; + inline-size: 880px; + line-height: 24px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgb(255, 255, 255); + perspective-origin: 440px 12px; + text-align: center; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + transform-origin: 440px 12px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 600 16px / 24px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); + -webkit-transform-origin: 440px 12px; +} + +/*#P_3*/ + +#P_3:after { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 600; + line-height: 24px; + outline-color: rgb(255, 255, 255); + text-align: center; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 600 16px / 24px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#P_3:after*/ + +#P_3:before { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 600; + line-height: 24px; + outline-color: rgb(255, 255, 255); + text-align: center; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 600 16px / 24px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#P_3:before*/ + +#DIV_4 { + align-items: center; + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/person_bg@pc.38edf7f2.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 56px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 56px; + inline-size: 880px; + margin-block-end: 24px; + margin-block-start: 16px; + margin-bottom: 24px; + margin-top: 16px; + outline-color: rgb(51, 51, 51); + padding-block-end: 1px; + padding-block-start: 1px; + padding-bottom: 1px; + padding-inline-end: 1px; + padding-inline-start: 1px; + padding-left: 1px; + padding-right: 1px; + padding-top: 1px; + perspective-origin: 440px 28px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 28px; + width: 880px; + -webkit-box-align: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/person_bg@pc.38edf7f2.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 16px 0px 24px; + outline: rgb(51, 51, 51) none 0px; + padding: 1px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 28px; +} + +/*#DIV_4*/ + +#DIV_4:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_4:after*/ + +#DIV_4:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_4:before*/ + +#IMG_5 { + align-self: flex-end; + block-size: 60px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 60px; + inline-size: 93px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + object-fit: cover; + outline-color: rgb(51, 51, 51); + perspective-origin: 46.5px 30px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 46.5px 30px; + width: 93px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 46.5px 30px; +} + +/*#IMG_5*/ + +#IMG_5:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_5:after*/ + +#IMG_5:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_5:before*/ + +#DIV_6 { + block-size: 32px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 32px; + inline-size: 225px; + margin-inline-start: 12px; + margin-left: 12px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 112.5px 16px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 112.5px 16px; + width: 225px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 0px 0px 12px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 112.5px 16px; +} + +/*#DIV_6*/ + +#DIV_6:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_6:after*/ + +#DIV_6:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_6:before*/ + +#DIV_7 { + align-items: center; + block-size: 20px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 20px; + inline-size: 225px; + outline-color: rgb(51, 51, 51); + perspective-origin: 112.5px 10px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 112.5px 10px; + width: 225px; + -webkit-box-align: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 112.5px 10px; +} + +/*#DIV_7*/ + +#DIV_7:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_7:after*/ + +#DIV_7:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_7:before*/ + +#IMG_8 { + block-size: 18px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 18px; + inline-size: 18px; + margin-inline-end: 4px; + margin-right: 4px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 9px 9px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 9px 9px; + width: 18px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 4px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 9px 9px; +} + +/*#IMG_8*/ + +#IMG_8:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_8:after*/ + +#IMG_8:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_8:before*/ + +#SPAN_9 { + block-size: 20px; + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + font-weight: 600; + height: 20px; + inline-size: 42px; + line-height: 20px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgba(255, 255, 255, 0.9); + perspective-origin: 21px 10px; + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + transform-origin: 21px 10px; + width: 500px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 14px / 20px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); + -webkit-transform-origin: 21px 10px; +} + +/*#SPAN_9*/ + +#SPAN_9:after { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + font-weight: 600; + line-height: 20px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 14px / 20px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#SPAN_9:after*/ + +#SPAN_9:before { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + font-weight: 600; + line-height: 20px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 14px / 20px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#SPAN_9:before*/ + +#DIV_10 { + background-color: rgba(255, 255, 255, 0.15); + block-size: 6px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 6px; + inline-size: 223px; + margin-block-start: 6px; + margin-inline-start: 2px; + margin-left: 2px; + margin-top: 6px; + outline-color: rgb(51, 51, 51); + perspective-origin: 111.5px 3px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 111.5px 3px; + width: 223px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(255, 255, 255, 0.15) none repeat scroll 0% 0% / auto padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 6px 0px 0px 2px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 111.5px 3px; +} + +/*#DIV_10*/ + +#DIV_10:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_10:after*/ + +#DIV_10:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_10:before*/ + +#P_11 { + background-color: rgb(246, 250, 255); + block-size: 6px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 6px; + inline-size: 55.75px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgb(51, 51, 51); + perspective-origin: 27.875px 3px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 27.875px 3px; + width: 55.75px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgb(246, 250, 255) none repeat scroll 0% 0% / auto padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 27.875px 3px; +} + +/*#P_11*/ + +#P_11:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#P_11:after*/ + +#P_11:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#P_11:before*/ + +#DIV_12 { + block-size: 38px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 38px; + inline-size: 70px; + margin-inline-end: 13px; + margin-inline-start: 465px; + margin-left: 465px; + margin-right: 13px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 35px 19px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 35px 19px; + width: 70px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 13px 0px 465px; + outline: rgb(51, 51, 51) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 35px 19px; +} + +/*#DIV_12*/ + +#DIV_12:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_12:after*/ + +#DIV_12:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_12:before*/ + +#P_13 { + block-size: 24px; + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + box-sizing: border-box; + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: RPG_CN_Condensed; + font-size: 16px; + height: 24px; + inline-size: 70px; + line-height: 24px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgb(255, 255, 255); + perspective-origin: 35px 12px; + text-align: right; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + transform-origin: 35px 12px; + width: 70px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 24px RPG_CN_Condensed; + margin: 0px; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); + -webkit-transform-origin: 35px 12px; +} + +/*#P_13*/ + +#P_13:after { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: RPG_CN_Condensed; + font-size: 16px; + line-height: 24px; + outline-color: rgb(255, 255, 255); + text-align: right; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 24px RPG_CN_Condensed; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#P_13:after*/ + +#P_13:before { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: RPG_CN_Condensed; + font-size: 16px; + line-height: 24px; + outline-color: rgb(255, 255, 255); + text-align: right; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 24px RPG_CN_Condensed; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#P_13:before*/ + +#P_14 { + block-size: 14px; + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + font-weight: 600; + height: 14px; + inline-size: 70px; + line-height: 14px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgba(255, 255, 255, 0.65); + perspective-origin: 35px 7px; + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + transform-origin: 35px 7px; + width: 70px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 600 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); + -webkit-transform-origin: 35px 7px; +} + +/*#P_14*/ + +#P_14:after { + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + font-weight: 600; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.65); + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 600 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); +} + +/*#P_14:after*/ + +#P_14:before { + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + font-weight: 600; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.65); + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 600 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); +} + +/*#P_14:before*/ + +#DIV_15 { + block-size: 340px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 0px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 340px; + inline-size: 880px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + outline-color: rgb(51, 51, 51); + perspective-origin: 440px 170px; + position: relative; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform-origin: 440px 170px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 170px; +} + +/*#DIV_15*/ + +#DIV_15:after { + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/split.eb4a784f.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 10px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 292px; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + content: '""'; + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 10px; + inline-size: 880px; + inset-block-end: 292px; + inset-block-start: 38px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + outline-color: rgb(51, 51, 51); + perspective-origin: 440px 5px; + pointer-events: none; + position: absolute; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 38px; + transform-origin: 440px 5px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/split.eb4a784f.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 5px; +} + +/*#DIV_15:after*/ + +#DIV_15:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_15:before*/ + +#DIV_16 { + block-size: 22px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 22px; + inline-size: 208px; + outline-color: rgb(51, 51, 51); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 104px 11px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 104px 11px; + width: 208px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 104px 11px; +} + +/*#DIV_16*/ + +#DIV_16:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_16:after*/ + +#DIV_16:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_16:before*/ + +#DIV_17 { + block-size: 22px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 0px; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 22px; + inline-size: 208px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + outline-color: rgb(51, 51, 51); + perspective-origin: 104px 11px; + position: relative; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform-origin: 104px 11px; + user-select: none; + width: 208px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 104px 11px; +} + +/*#DIV_17*/ + +#DIV_17:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_17:after*/ + +#DIV_17:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_17:before*/ + +#DIV_18 { + align-items: center; + block-size: 22px; + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + bottom: 0px; + box-sizing: border-box; + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + cursor: pointer; + display: flex; + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 500; + height: 22px; + inline-size: 64px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + justify-content: center; + left: 0px; + line-height: 22px; + margin-inline-end: 32px; + margin-right: 32px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(255, 255, 255); + perspective-origin: 32px 11px; + position: relative; + right: 0px; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + top: 0px; + transform-origin: 32px 11px; + user-select: none; + width: 100px; + z-index: 2; + -webkit-box-align: center; + -webkit-box-pack: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + flex: 0 0 auto; + font: 500 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 32px 0px 0px; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); + -webkit-transform-origin: 32px 11px; +} + +/*#DIV_18*/ + +#DIV_18:after { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + cursor: pointer; + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 500; + line-height: 22px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 500 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#DIV_18:after*/ + +#DIV_18:before { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + cursor: pointer; + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 500; + line-height: 22px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 500 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#DIV_18:before*/ + +#SPAN_19 { + block-size: 22px; + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + box-sizing: border-box; + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + cursor: pointer; + display: -webkit-box; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 500; + height: 22px; + inline-size: 64px; + line-height: 22px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(255, 255, 255); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 32px 11px; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + transform-origin: 32px 11px; + user-select: none; + width: 100px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 500 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(255, 255, 255) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); + -webkit-transform-origin: 32px 11px; +} + +/*#SPAN_19*/ + +#SPAN_19:after { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + cursor: pointer; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 500; + line-height: 22px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 500 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#SPAN_19:after*/ + +#SPAN_19:before { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + cursor: pointer; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + font-weight: 500; + line-height: 22px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 500 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#SPAN_19:before*/ + +#DIV_20 { + align-items: center; + block-size: 22px; + border-block-end-color: rgba(255, 255, 255, 0.3); + border-block-start-color: rgba(255, 255, 255, 0.3); + border-bottom-color: rgba(255, 255, 255, 0.3); + border-inline-end-color: rgba(255, 255, 255, 0.3); + border-inline-start-color: rgba(255, 255, 255, 0.3); + border-left-color: rgba(255, 255, 255, 0.3); + border-right-color: rgba(255, 255, 255, 0.3); + border-top-color: rgba(255, 255, 255, 0.3); + bottom: 0px; + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.3); + column-rule-color: rgba(255, 255, 255, 0.3); + cursor: pointer; + display: flex; + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + height: 22px; + inline-size: 80px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + justify-content: center; + left: 0px; + line-height: 22px; + margin-inline-end: 32px; + margin-right: 32px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgba(255, 255, 255, 0.3); + perspective-origin: 40px 11px; + position: relative; + right: 0px; + text-decoration: none solid rgba(255, 255, 255, 0.3); + text-decoration-color: rgba(255, 255, 255, 0.3); + text-emphasis-color: rgba(255, 255, 255, 0.3); + top: 0px; + transform-origin: 40px 11px; + user-select: none; + width: 80px; + -webkit-box-align: center; + -webkit-box-pack: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.3); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.3); + border: 0px none rgba(255, 255, 255, 0.3); + border-top: 0px none rgba(255, 255, 255, 0.3); + border-right: 0px none rgba(255, 255, 255, 0.3); + border-bottom: 0px none rgba(255, 255, 255, 0.3); + border-left: 0px none rgba(255, 255, 255, 0.3); + border-color: rgba(255, 255, 255, 0.3); + flex: 0 0 auto; + font: 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 32px 0px 0px; + outline: rgba(255, 255, 255, 0.3) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.3); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.3); + -webkit-transform-origin: 40px 11px; +} + +/*#DIV_20*/ + +#DIV_20:after { + border-block-end-color: rgba(255, 255, 255, 0.3); + border-block-start-color: rgba(255, 255, 255, 0.3); + border-bottom-color: rgba(255, 255, 255, 0.3); + border-inline-end-color: rgba(255, 255, 255, 0.3); + border-inline-start-color: rgba(255, 255, 255, 0.3); + border-left-color: rgba(255, 255, 255, 0.3); + border-right-color: rgba(255, 255, 255, 0.3); + border-top-color: rgba(255, 255, 255, 0.3); + caret-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.3); + column-rule-color: rgba(255, 255, 255, 0.3); + cursor: pointer; + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + line-height: 22px; + outline-color: rgba(255, 255, 255, 0.3); + text-decoration: none solid rgba(255, 255, 255, 0.3); + text-decoration-color: rgba(255, 255, 255, 0.3); + text-emphasis-color: rgba(255, 255, 255, 0.3); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.3); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.3); + border: 0px none rgba(255, 255, 255, 0.3); + border-top: 0px none rgba(255, 255, 255, 0.3); + border-right: 0px none rgba(255, 255, 255, 0.3); + border-bottom: 0px none rgba(255, 255, 255, 0.3); + border-left: 0px none rgba(255, 255, 255, 0.3); + border-color: rgba(255, 255, 255, 0.3); + font: 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.3) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.3); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.3); +} + +/*#DIV_20:after*/ + +#DIV_20:before { + border-block-end-color: rgba(255, 255, 255, 0.3); + border-block-start-color: rgba(255, 255, 255, 0.3); + border-bottom-color: rgba(255, 255, 255, 0.3); + border-inline-end-color: rgba(255, 255, 255, 0.3); + border-inline-start-color: rgba(255, 255, 255, 0.3); + border-left-color: rgba(255, 255, 255, 0.3); + border-right-color: rgba(255, 255, 255, 0.3); + border-top-color: rgba(255, 255, 255, 0.3); + caret-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.3); + column-rule-color: rgba(255, 255, 255, 0.3); + cursor: pointer; + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + line-height: 22px; + outline-color: rgba(255, 255, 255, 0.3); + text-decoration: none solid rgba(255, 255, 255, 0.3); + text-decoration-color: rgba(255, 255, 255, 0.3); + text-emphasis-color: rgba(255, 255, 255, 0.3); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.3); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.3); + border: 0px none rgba(255, 255, 255, 0.3); + border-top: 0px none rgba(255, 255, 255, 0.3); + border-right: 0px none rgba(255, 255, 255, 0.3); + border-bottom: 0px none rgba(255, 255, 255, 0.3); + border-left: 0px none rgba(255, 255, 255, 0.3); + border-color: rgba(255, 255, 255, 0.3); + font: 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.3) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.3); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.3); +} + +/*#DIV_20:before*/ + +#SPAN_21 { + block-size: 22px; + border-block-end-color: rgba(255, 255, 255, 0.3); + border-block-start-color: rgba(255, 255, 255, 0.3); + border-bottom-color: rgba(255, 255, 255, 0.3); + border-inline-end-color: rgba(255, 255, 255, 0.3); + border-inline-start-color: rgba(255, 255, 255, 0.3); + border-left-color: rgba(255, 255, 255, 0.3); + border-right-color: rgba(255, 255, 255, 0.3); + border-top-color: rgba(255, 255, 255, 0.3); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.3); + column-rule-color: rgba(255, 255, 255, 0.3); + cursor: pointer; + display: -webkit-box; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + height: 22px; + inline-size: 80px; + line-height: 22px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgba(255, 255, 255, 0.3); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 40px 11px; + text-decoration: none solid rgba(255, 255, 255, 0.3); + text-decoration-color: rgba(255, 255, 255, 0.3); + text-emphasis-color: rgba(255, 255, 255, 0.3); + transform-origin: 40px 11px; + user-select: none; + width: 80px; + -webkit-box-orient: vertical; + -webkit-line-clamp: 1; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.3); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.3); + border: 0px none rgba(255, 255, 255, 0.3); + border-top: 0px none rgba(255, 255, 255, 0.3); + border-right: 0px none rgba(255, 255, 255, 0.3); + border-bottom: 0px none rgba(255, 255, 255, 0.3); + border-left: 0px none rgba(255, 255, 255, 0.3); + border-color: rgba(255, 255, 255, 0.3); + font: 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.3) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.3); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.3); + -webkit-transform-origin: 40px 11px; +} + +/*#SPAN_21*/ + +#SPAN_21:after { + border-block-end-color: rgba(255, 255, 255, 0.3); + border-block-start-color: rgba(255, 255, 255, 0.3); + border-bottom-color: rgba(255, 255, 255, 0.3); + border-inline-end-color: rgba(255, 255, 255, 0.3); + border-inline-start-color: rgba(255, 255, 255, 0.3); + border-left-color: rgba(255, 255, 255, 0.3); + border-right-color: rgba(255, 255, 255, 0.3); + border-top-color: rgba(255, 255, 255, 0.3); + caret-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.3); + column-rule-color: rgba(255, 255, 255, 0.3); + cursor: pointer; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + line-height: 22px; + outline-color: rgba(255, 255, 255, 0.3); + text-decoration: none solid rgba(255, 255, 255, 0.3); + text-decoration-color: rgba(255, 255, 255, 0.3); + text-emphasis-color: rgba(255, 255, 255, 0.3); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.3); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.3); + border: 0px none rgba(255, 255, 255, 0.3); + border-top: 0px none rgba(255, 255, 255, 0.3); + border-right: 0px none rgba(255, 255, 255, 0.3); + border-bottom: 0px none rgba(255, 255, 255, 0.3); + border-left: 0px none rgba(255, 255, 255, 0.3); + border-color: rgba(255, 255, 255, 0.3); + font: 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.3) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.3); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.3); +} + +/*#SPAN_21:after*/ + +#SPAN_21:before { + border-block-end-color: rgba(255, 255, 255, 0.3); + border-block-start-color: rgba(255, 255, 255, 0.3); + border-bottom-color: rgba(255, 255, 255, 0.3); + border-inline-end-color: rgba(255, 255, 255, 0.3); + border-inline-start-color: rgba(255, 255, 255, 0.3); + border-left-color: rgba(255, 255, 255, 0.3); + border-right-color: rgba(255, 255, 255, 0.3); + border-top-color: rgba(255, 255, 255, 0.3); + caret-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.3); + column-rule-color: rgba(255, 255, 255, 0.3); + cursor: pointer; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 16px; + line-height: 22px; + outline-color: rgba(255, 255, 255, 0.3); + text-decoration: none solid rgba(255, 255, 255, 0.3); + text-decoration-color: rgba(255, 255, 255, 0.3); + text-emphasis-color: rgba(255, 255, 255, 0.3); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.3); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.3); + border: 0px none rgba(255, 255, 255, 0.3); + border-top: 0px none rgba(255, 255, 255, 0.3); + border-right: 0px none rgba(255, 255, 255, 0.3); + border-bottom: 0px none rgba(255, 255, 255, 0.3); + border-left: 0px none rgba(255, 255, 255, 0.3); + border-color: rgba(255, 255, 255, 0.3); + font: 16px / 22px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.3) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.3); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.3); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.3); +} + +/*#SPAN_21:before*/ + +#DIV_22 { + background-color: rgb(238, 10, 36); + block-size: 3px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-end-end-radius: 3px; + border-end-start-radius: 3px; + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-start-end-radius: 3px; + border-start-start-radius: 3px; + border-top-color: rgb(51, 51, 51); + border-top-left-radius: 3px; + border-top-right-radius: 3px; + bottom: 15px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: none; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 3px; + inline-size: 40px; + inset-block-end: 15px; + inset-inline-start: 0px; + left: 0px; + outline-color: rgb(51, 51, 51); + position: absolute; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + user-select: none; + width: 40px; + z-index: 1; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgb(238, 10, 36) none repeat scroll 0% 0% / auto padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + border-radius: 3px; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_22*/ + +#DIV_22:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_22:after*/ + +#DIV_22:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + user-select: none; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_22:before*/ + +#DIV_23 { + background-color: rgb(13, 19, 56); + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/tab_bg@pc.4c5f3ce7.png"); + background-position: 50% 0%; + background-repeat: no-repeat; + background-size: 100%; + block-size: 297px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 297px; + inline-size: 880px; + margin-block-start: 21px; + margin-top: 21px; + outline-color: rgb(51, 51, 51); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 440px 148.5px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 148.5px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgb(13, 19, 56) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/tab_bg@pc.4c5f3ce7.png") no-repeat scroll 50% 0% / 100% padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 21px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 148.5px; +} + +/*#DIV_23*/ + +#DIV_23:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_23:after*/ + +#DIV_23:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_23:before*/ + +#DIV_24 { + block-size: 297px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 0px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 297px; + inline-size: 880px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + outline-color: rgb(51, 51, 51); + perspective-origin: 440px 148.5px; + position: relative; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform: matrix(1, 0, 0, 1, 0, 0); + transform-origin: 440px 148.5px; + transition-duration: 0.3s; + width: 880px; + will-change: left; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + transition: all 0.3s ease 0s; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transition: all 0.3s ease 0s; + -webkit-transform-origin: 440px 148.5px; +} + +/*#DIV_24*/ + +#DIV_24:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_24:after*/ + +#DIV_24:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_24:before*/ + +#DIV_25 { + block-size: 297px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 297px; + inline-size: 880px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 440px 148.5px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 148.5px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 148.5px; +} + +/*#DIV_25*/ + +#DIV_25:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_25:after*/ + +#DIV_25:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_25:before*/ + +#DIV_26 { + block-size: 297px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 297px; + inline-size: 880px; + outline-color: rgb(51, 51, 51); + perspective-origin: 440px 148.5px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 148.5px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 148.5px; +} + +/*#DIV_26*/ + +#DIV_26:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_26:after*/ + +#DIV_26:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_26:before*/ + +#DIV_27 { + align-items: center; + block-size: 297px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 297px; + inline-size: 880px; + justify-content: space-between; + outline-color: rgb(51, 51, 51); + padding-block-end: 32px; + padding-block-start: 37px; + padding-bottom: 32px; + padding-inline-end: 24px; + padding-inline-start: 24px; + padding-left: 24px; + padding-right: 24px; + padding-top: 37px; + perspective-origin: 440px 148.5px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 148.5px; + width: 880px; + -webkit-box-align: center; + -webkit-box-pack: justify; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + padding: 37px 24px 32px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 148.5px; +} + +/*#DIV_27*/ + +#DIV_27:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_27:after*/ + +#DIV_27:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_27:before*/ + +#DIV_28 { + align-items: center; + block-size: 228px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 0px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 228px; + inline-size: 393px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 196.5px 114px; + position: relative; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform-origin: 196.5px 114px; + width: 393px; + -webkit-box-align: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 196.5px 114px; +} + +/*#DIV_28*/ + +#DIV_28:after { + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/split-col.c17fe2fe.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 228px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 0px; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + content: '""'; + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 228px; + inline-size: 10px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: -30px; + inset-inline-start: 413px; + left: 413px; + outline-color: rgb(51, 51, 51); + perspective-origin: 5px 114px; + position: absolute; + right: -30px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform-origin: 5px 114px; + width: 10px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/split-col.c17fe2fe.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 5px 114px; +} + +/*#DIV_28:after*/ + +#DIV_28:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_28:before*/ + +#IMG_29 { + block-size: 228px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 0px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 228px; + inline-size: 228px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 114px 114px; + position: relative; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform-origin: 114px 114px; + width: 228px; + z-index: 1; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 114px 114px; +} + +/*#IMG_29*/ + +#IMG_29:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_29:after*/ + +#IMG_29:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_29:before*/ + +#DIV_30 { + align-items: center; + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/enemy_bg.d13ef453.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 114px; + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + bottom: 57px; + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + height: 114px; + inline-size: 212px; + inset-block-end: 57px; + inset-block-start: 57px; + inset-inline-end: 8px; + inset-inline-start: 173px; + left: 173px; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.65); + padding-inline-end: 35px; + padding-inline-start: 70px; + padding-left: 70px; + padding-right: 35px; + perspective-origin: 106px 57px; + position: absolute; + right: 8px; + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + top: 57px; + transform-origin: 106px 57px; + width: 212px; + -webkit-box-align: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/enemy_bg.d13ef453.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.65) none 0px; + padding: 0px 35px 0px 70px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); + -webkit-transform-origin: 106px 57px; +} + +/*#DIV_30*/ + +#DIV_30:after { + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.65); + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); +} + +/*#DIV_30:after*/ + +#DIV_30:before { + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.65); + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); +} + +/*#DIV_30:before*/ + +#DIV_31 { + block-size: 228px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 228px; + inline-size: 388px; + margin-inline-start: 50px; + margin-left: 50px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 194px 114px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 194px 114px; + width: 388px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 0px 0px 50px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 194px 114px; +} + +/*#DIV_31*/ + +#DIV_31:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_31:after*/ + +#DIV_31:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_31:before*/ + +#DIV_32 { + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/city_bg@pc.a70186b9.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 48px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 48px; + inline-size: 388px; + outline-color: rgb(51, 51, 51); + padding-block-end: 8px; + padding-block-start: 8px; + padding-bottom: 8px; + padding-inline-end: 16px; + padding-inline-start: 16px; + padding-left: 16px; + padding-right: 16px; + padding-top: 8px; + perspective-origin: 194px 24px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 194px 24px; + width: 388px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/city_bg@pc.a70186b9.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + padding: 8px 16px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 194px 24px; +} + +/*#DIV_32*/ + +#DIV_32:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_32:after*/ + +#DIV_32:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_32:before*/ + +#IMG_33, #IMG_38, #IMG_43, #IMG_48 { + block-size: 32px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 32px; + inline-size: 32px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 16px 16px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 16px 16px; + width: 32px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 16px 16px; +} + +/*#IMG_33, #IMG_38, #IMG_43, #IMG_48*/ + +#IMG_33:after, #IMG_38:after, #IMG_43:after, #IMG_48:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_33:after, #IMG_38:after, #IMG_43:after, #IMG_48:after*/ + +#IMG_33:before, #IMG_38:before, #IMG_43:before, #IMG_48:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_33:before, #IMG_38:before, #IMG_43:before, #IMG_48:before*/ + +#DIV_34, #DIV_39, #DIV_49 { + block-size: 32px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 32px; + inline-size: 60px; + margin-inline-start: 8px; + margin-left: 8px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 30px 16px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 30px 16px; + width: 60px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 0px 0px 8px; + outline: rgb(51, 51, 51) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 30px 16px; +} + +/*#DIV_34, #DIV_39, #DIV_49*/ + +#DIV_34:after, #DIV_39:after, #DIV_49:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_34:after, #DIV_39:after, #DIV_49:after*/ + +#DIV_34:before, #DIV_39:before, #DIV_49:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_34:before, #DIV_39:before, #DIV_49:before*/ + +#P_35, #P_40, #P_50 { + block-size: 18px; + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + height: 18px; + inline-size: 60px; + line-height: 18px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgba(255, 255, 255, 0.9); + perspective-origin: 30px 9px; + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + text-wrap: nowrap; + transform-origin: 30px 9px; + width: 60px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); + -webkit-transform-origin: 30px 9px; +} + +/*#P_35, #P_40, #P_50*/ + +#P_35:after, #P_40:after, #P_50:after { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#P_35:after, #P_40:after, #P_50:after*/ + +#P_35:before, #P_40:before, #P_50:before { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#P_35:before, #P_40:before, #P_50:before*/ + +#P_36, #P_41, #P_51 { + block-size: 14px; + border-block-end-color: rgba(255, 255, 255, 0.45); + border-block-start-color: rgba(255, 255, 255, 0.45); + border-bottom-color: rgba(255, 255, 255, 0.45); + border-inline-end-color: rgba(255, 255, 255, 0.45); + border-inline-start-color: rgba(255, 255, 255, 0.45); + border-left-color: rgba(255, 255, 255, 0.45); + border-right-color: rgba(255, 255, 255, 0.45); + border-top-color: rgba(255, 255, 255, 0.45); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.45); + color: rgba(255, 255, 255, 0.45); + column-rule-color: rgba(255, 255, 255, 0.45); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + height: 14px; + inline-size: 60px; + line-height: 14px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgba(255, 255, 255, 0.45); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 30px 7px; + text-decoration: none solid rgba(255, 255, 255, 0.45); + text-decoration-color: rgba(255, 255, 255, 0.45); + text-emphasis-color: rgba(255, 255, 255, 0.45); + text-overflow: ellipsis; + text-wrap: nowrap; + transform-origin: 30px 7px; + width: 60px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.45); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.45); + border: 0px none rgba(255, 255, 255, 0.45); + border-top: 0px none rgba(255, 255, 255, 0.45); + border-right: 0px none rgba(255, 255, 255, 0.45); + border-bottom: 0px none rgba(255, 255, 255, 0.45); + border-left: 0px none rgba(255, 255, 255, 0.45); + border-color: rgba(255, 255, 255, 0.45); + font: 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgba(255, 255, 255, 0.45) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.45); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.45); + -webkit-transform-origin: 30px 7px; +} + +/*#P_36, #P_41, #P_51*/ + +#P_36:after, #P_41:after, #P_51:after { + border-block-end-color: rgba(255, 255, 255, 0.45); + border-block-start-color: rgba(255, 255, 255, 0.45); + border-bottom-color: rgba(255, 255, 255, 0.45); + border-inline-end-color: rgba(255, 255, 255, 0.45); + border-inline-start-color: rgba(255, 255, 255, 0.45); + border-left-color: rgba(255, 255, 255, 0.45); + border-right-color: rgba(255, 255, 255, 0.45); + border-top-color: rgba(255, 255, 255, 0.45); + caret-color: rgba(255, 255, 255, 0.45); + color: rgba(255, 255, 255, 0.45); + column-rule-color: rgba(255, 255, 255, 0.45); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.45); + text-decoration: none solid rgba(255, 255, 255, 0.45); + text-decoration-color: rgba(255, 255, 255, 0.45); + text-emphasis-color: rgba(255, 255, 255, 0.45); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.45); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.45); + border: 0px none rgba(255, 255, 255, 0.45); + border-top: 0px none rgba(255, 255, 255, 0.45); + border-right: 0px none rgba(255, 255, 255, 0.45); + border-bottom: 0px none rgba(255, 255, 255, 0.45); + border-left: 0px none rgba(255, 255, 255, 0.45); + border-color: rgba(255, 255, 255, 0.45); + font: 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.45) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.45); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.45); +} + +/*#P_36:after, #P_41:after, #P_51:after*/ + +#P_36:before, #P_41:before, #P_51:before { + border-block-end-color: rgba(255, 255, 255, 0.45); + border-block-start-color: rgba(255, 255, 255, 0.45); + border-bottom-color: rgba(255, 255, 255, 0.45); + border-inline-end-color: rgba(255, 255, 255, 0.45); + border-inline-start-color: rgba(255, 255, 255, 0.45); + border-left-color: rgba(255, 255, 255, 0.45); + border-right-color: rgba(255, 255, 255, 0.45); + border-top-color: rgba(255, 255, 255, 0.45); + caret-color: rgba(255, 255, 255, 0.45); + color: rgba(255, 255, 255, 0.45); + column-rule-color: rgba(255, 255, 255, 0.45); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.45); + text-decoration: none solid rgba(255, 255, 255, 0.45); + text-decoration-color: rgba(255, 255, 255, 0.45); + text-emphasis-color: rgba(255, 255, 255, 0.45); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.45); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.45); + border: 0px none rgba(255, 255, 255, 0.45); + border-top: 0px none rgba(255, 255, 255, 0.45); + border-right: 0px none rgba(255, 255, 255, 0.45); + border-bottom: 0px none rgba(255, 255, 255, 0.45); + border-left: 0px none rgba(255, 255, 255, 0.45); + border-color: rgba(255, 255, 255, 0.45); + font: 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.45) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.45); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.45); +} + +/*#P_36:before, #P_41:before, #P_51:before*/ + +#DIV_37, #DIV_42, #DIV_47 { + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/city_bg@pc.a70186b9.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 48px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 48px; + inline-size: 388px; + margin-block-start: 12px; + margin-top: 12px; + outline-color: rgb(51, 51, 51); + padding-block-end: 8px; + padding-block-start: 8px; + padding-bottom: 8px; + padding-inline-end: 16px; + padding-inline-start: 16px; + padding-left: 16px; + padding-right: 16px; + padding-top: 8px; + perspective-origin: 194px 24px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 194px 24px; + width: 388px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/city_bg@pc.a70186b9.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 12px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + padding: 8px 16px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 194px 24px; +} + +/*#DIV_37, #DIV_42, #DIV_47*/ + +#DIV_37:after, #DIV_42:after, #DIV_47:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_37:after, #DIV_42:after, #DIV_47:after*/ + +#DIV_37:before, #DIV_42:before, #DIV_47:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_37:before, #DIV_42:before, #DIV_47:before*/ + +#DIV_44 { + block-size: 32px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 32px; + inline-size: 84px; + margin-inline-start: 8px; + margin-left: 8px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 42px 16px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 42px 16px; + width: 84px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 0px 0px 8px; + outline: rgb(51, 51, 51) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 42px 16px; +} + +/*#DIV_44*/ + +#DIV_44:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_44:after*/ + +#DIV_44:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_44:before*/ + +#P_45 { + block-size: 18px; + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + height: 18px; + inline-size: 84px; + line-height: 18px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgba(255, 255, 255, 0.9); + perspective-origin: 42px 9px; + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + text-wrap: nowrap; + transform-origin: 42px 9px; + width: 84px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); + -webkit-transform-origin: 42px 9px; +} + +/*#P_45*/ + +#P_45:after { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#P_45:after*/ + +#P_45:before { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#P_45:before*/ + +#P_46 { + block-size: 14px; + border-block-end-color: rgba(255, 255, 255, 0.45); + border-block-start-color: rgba(255, 255, 255, 0.45); + border-bottom-color: rgba(255, 255, 255, 0.45); + border-inline-end-color: rgba(255, 255, 255, 0.45); + border-inline-start-color: rgba(255, 255, 255, 0.45); + border-left-color: rgba(255, 255, 255, 0.45); + border-right-color: rgba(255, 255, 255, 0.45); + border-top-color: rgba(255, 255, 255, 0.45); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.45); + color: rgba(255, 255, 255, 0.45); + column-rule-color: rgba(255, 255, 255, 0.45); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + height: 14px; + inline-size: 84px; + line-height: 14px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + outline-color: rgba(255, 255, 255, 0.45); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 42px 7px; + text-decoration: none solid rgba(255, 255, 255, 0.45); + text-decoration-color: rgba(255, 255, 255, 0.45); + text-emphasis-color: rgba(255, 255, 255, 0.45); + text-overflow: ellipsis; + text-wrap: nowrap; + transform-origin: 42px 7px; + width: 84px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.45); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.45); + border: 0px none rgba(255, 255, 255, 0.45); + border-top: 0px none rgba(255, 255, 255, 0.45); + border-right: 0px none rgba(255, 255, 255, 0.45); + border-bottom: 0px none rgba(255, 255, 255, 0.45); + border-left: 0px none rgba(255, 255, 255, 0.45); + border-color: rgba(255, 255, 255, 0.45); + font: 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgba(255, 255, 255, 0.45) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.45); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.45); + -webkit-transform-origin: 42px 7px; +} + +/*#P_46*/ + +#P_46:after { + border-block-end-color: rgba(255, 255, 255, 0.45); + border-block-start-color: rgba(255, 255, 255, 0.45); + border-bottom-color: rgba(255, 255, 255, 0.45); + border-inline-end-color: rgba(255, 255, 255, 0.45); + border-inline-start-color: rgba(255, 255, 255, 0.45); + border-left-color: rgba(255, 255, 255, 0.45); + border-right-color: rgba(255, 255, 255, 0.45); + border-top-color: rgba(255, 255, 255, 0.45); + caret-color: rgba(255, 255, 255, 0.45); + color: rgba(255, 255, 255, 0.45); + column-rule-color: rgba(255, 255, 255, 0.45); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.45); + text-decoration: none solid rgba(255, 255, 255, 0.45); + text-decoration-color: rgba(255, 255, 255, 0.45); + text-emphasis-color: rgba(255, 255, 255, 0.45); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.45); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.45); + border: 0px none rgba(255, 255, 255, 0.45); + border-top: 0px none rgba(255, 255, 255, 0.45); + border-right: 0px none rgba(255, 255, 255, 0.45); + border-bottom: 0px none rgba(255, 255, 255, 0.45); + border-left: 0px none rgba(255, 255, 255, 0.45); + border-color: rgba(255, 255, 255, 0.45); + font: 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.45) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.45); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.45); +} + +/*#P_46:after*/ + +#P_46:before { + border-block-end-color: rgba(255, 255, 255, 0.45); + border-block-start-color: rgba(255, 255, 255, 0.45); + border-bottom-color: rgba(255, 255, 255, 0.45); + border-inline-end-color: rgba(255, 255, 255, 0.45); + border-inline-start-color: rgba(255, 255, 255, 0.45); + border-left-color: rgba(255, 255, 255, 0.45); + border-right-color: rgba(255, 255, 255, 0.45); + border-top-color: rgba(255, 255, 255, 0.45); + caret-color: rgba(255, 255, 255, 0.45); + color: rgba(255, 255, 255, 0.45); + column-rule-color: rgba(255, 255, 255, 0.45); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.45); + text-decoration: none solid rgba(255, 255, 255, 0.45); + text-decoration-color: rgba(255, 255, 255, 0.45); + text-emphasis-color: rgba(255, 255, 255, 0.45); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.45); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.45); + border: 0px none rgba(255, 255, 255, 0.45); + border-top: 0px none rgba(255, 255, 255, 0.45); + border-right: 0px none rgba(255, 255, 255, 0.45); + border-bottom: 0px none rgba(255, 255, 255, 0.45); + border-left: 0px none rgba(255, 255, 255, 0.45); + border-color: rgba(255, 255, 255, 0.45); + font: 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.45) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.45); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.45); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.45); +} + +/*#P_46:before*/ + +#DIV_52 { + block-size: 0px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 0px; + inline-size: 880px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 440px 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 0px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 0px; +} + +/*#DIV_52*/ + +#DIV_52:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_52:after*/ + +#DIV_52:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_52:before*/ + +#DIV_53 { + block-size: 0px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 0px; + inline-size: 880px; + outline-color: rgb(51, 51, 51); + perspective-origin: 440px 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 0px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 0px; +} + +/*#DIV_53*/ + +#DIV_53:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_53:after*/ + +#DIV_53:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_53:before*/ + +#DIV_54 { + block-size: 46px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 46px; + inline-size: 880px; + outline-color: rgb(51, 51, 51); + padding-block-start: 16px; + padding-top: 16px; + perspective-origin: 440px 23px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 23px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + padding: 16px 0px 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 23px; +} + +/*#DIV_54*/ + +#DIV_54:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_54:after*/ + +#DIV_54:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_54:before*/ + +#DIV_55 { + align-items: center; + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/link_bg.2161538f.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 30px; + border-block-end-color: rgba(255, 255, 255, 0.85); + border-block-start-color: rgba(255, 255, 255, 0.85); + border-bottom-color: rgba(255, 255, 255, 0.85); + border-inline-end-color: rgba(255, 255, 255, 0.85); + border-inline-start-color: rgba(255, 255, 255, 0.85); + border-left-color: rgba(255, 255, 255, 0.85); + border-right-color: rgba(255, 255, 255, 0.85); + border-top-color: rgba(255, 255, 255, 0.85); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); + column-rule-color: rgba(255, 255, 255, 0.85); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 30px; + inline-size: 309px; + justify-content: center; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.85); + padding-block-end: 6px; + padding-block-start: 6px; + padding-bottom: 6px; + padding-inline-end: 6px; + padding-inline-start: 6px; + padding-left: 6px; + padding-right: 6px; + padding-top: 6px; + perspective-origin: 154.5px 15px; + text-align: center; + text-decoration: none solid rgba(255, 255, 255, 0.85); + text-decoration-color: rgba(255, 255, 255, 0.85); + text-emphasis-color: rgba(255, 255, 255, 0.85); + transform-origin: 154.5px 15px; + width: 309px; + -webkit-box-align: center; + -webkit-box-pack: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.85); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.85); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/link_bg.2161538f.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgba(255, 255, 255, 0.85); + border-top: 0px none rgba(255, 255, 255, 0.85); + border-right: 0px none rgba(255, 255, 255, 0.85); + border-bottom: 0px none rgba(255, 255, 255, 0.85); + border-left: 0px none rgba(255, 255, 255, 0.85); + border-color: rgba(255, 255, 255, 0.85); + font: 14px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.85) none 0px; + padding: 6px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.85); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.85); + -webkit-transform-origin: 154.5px 15px; +} + +/*#DIV_55*/ + +#DIV_55:after { + border-block-end-color: rgba(255, 255, 255, 0.85); + border-block-start-color: rgba(255, 255, 255, 0.85); + border-bottom-color: rgba(255, 255, 255, 0.85); + border-inline-end-color: rgba(255, 255, 255, 0.85); + border-inline-start-color: rgba(255, 255, 255, 0.85); + border-left-color: rgba(255, 255, 255, 0.85); + border-right-color: rgba(255, 255, 255, 0.85); + border-top-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); + column-rule-color: rgba(255, 255, 255, 0.85); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.85); + text-align: center; + text-decoration: none solid rgba(255, 255, 255, 0.85); + text-decoration-color: rgba(255, 255, 255, 0.85); + text-emphasis-color: rgba(255, 255, 255, 0.85); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.85); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.85); + border: 0px none rgba(255, 255, 255, 0.85); + border-top: 0px none rgba(255, 255, 255, 0.85); + border-right: 0px none rgba(255, 255, 255, 0.85); + border-bottom: 0px none rgba(255, 255, 255, 0.85); + border-left: 0px none rgba(255, 255, 255, 0.85); + border-color: rgba(255, 255, 255, 0.85); + font: 14px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.85) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.85); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.85); +} + +/*#DIV_55:after*/ + +#DIV_55:before { + border-block-end-color: rgba(255, 255, 255, 0.85); + border-block-start-color: rgba(255, 255, 255, 0.85); + border-bottom-color: rgba(255, 255, 255, 0.85); + border-inline-end-color: rgba(255, 255, 255, 0.85); + border-inline-start-color: rgba(255, 255, 255, 0.85); + border-left-color: rgba(255, 255, 255, 0.85); + border-right-color: rgba(255, 255, 255, 0.85); + border-top-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); + column-rule-color: rgba(255, 255, 255, 0.85); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.85); + text-align: center; + text-decoration: none solid rgba(255, 255, 255, 0.85); + text-decoration-color: rgba(255, 255, 255, 0.85); + text-emphasis-color: rgba(255, 255, 255, 0.85); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.85); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.85); + border: 0px none rgba(255, 255, 255, 0.85); + border-top: 0px none rgba(255, 255, 255, 0.85); + border-right: 0px none rgba(255, 255, 255, 0.85); + border-bottom: 0px none rgba(255, 255, 255, 0.85); + border-left: 0px none rgba(255, 255, 255, 0.85); + border-color: rgba(255, 255, 255, 0.85); + font: 14px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.85) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.85); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.85); +} + +/*#DIV_55:before*/ + +#SPAN_56 { + block-size: 14px; + border-block-end-color: rgba(255, 255, 255, 0.85); + border-block-start-color: rgba(255, 255, 255, 0.85); + border-bottom-color: rgba(255, 255, 255, 0.85); + border-inline-end-color: rgba(255, 255, 255, 0.85); + border-inline-start-color: rgba(255, 255, 255, 0.85); + border-left-color: rgba(255, 255, 255, 0.85); + border-right-color: rgba(255, 255, 255, 0.85); + border-top-color: rgba(255, 255, 255, 0.85); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); + column-rule-color: rgba(255, 255, 255, 0.85); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 14px; + inline-size: 297px; + line-height: 14px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgba(255, 255, 255, 0.85); + overflow-x: hidden; + overflow-y: hidden; + perspective-origin: 148.5px 7px; + text-align: center; + text-decoration: none solid rgba(255, 255, 255, 0.85); + text-decoration-color: rgba(255, 255, 255, 0.85); + text-emphasis-color: rgba(255, 255, 255, 0.85); + text-overflow: ellipsis; + text-wrap: nowrap; + transform-origin: 148.5px 7px; + width: 297px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.85); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.85); + border: 0px none rgba(255, 255, 255, 0.85); + border-top: 0px none rgba(255, 255, 255, 0.85); + border-right: 0px none rgba(255, 255, 255, 0.85); + border-bottom: 0px none rgba(255, 255, 255, 0.85); + border-left: 0px none rgba(255, 255, 255, 0.85); + border-color: rgba(255, 255, 255, 0.85); + font: 14px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.85) none 0px; + overflow: hidden; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.85); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.85); + -webkit-transform-origin: 148.5px 7px; +} + +/*#SPAN_56*/ + +#SPAN_56:after { + border-block-end-color: rgba(255, 255, 255, 0.85); + border-block-start-color: rgba(255, 255, 255, 0.85); + border-bottom-color: rgba(255, 255, 255, 0.85); + border-inline-end-color: rgba(255, 255, 255, 0.85); + border-inline-start-color: rgba(255, 255, 255, 0.85); + border-left-color: rgba(255, 255, 255, 0.85); + border-right-color: rgba(255, 255, 255, 0.85); + border-top-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); + column-rule-color: rgba(255, 255, 255, 0.85); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.85); + text-align: center; + text-decoration: none solid rgba(255, 255, 255, 0.85); + text-decoration-color: rgba(255, 255, 255, 0.85); + text-emphasis-color: rgba(255, 255, 255, 0.85); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.85); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.85); + border: 0px none rgba(255, 255, 255, 0.85); + border-top: 0px none rgba(255, 255, 255, 0.85); + border-right: 0px none rgba(255, 255, 255, 0.85); + border-bottom: 0px none rgba(255, 255, 255, 0.85); + border-left: 0px none rgba(255, 255, 255, 0.85); + border-color: rgba(255, 255, 255, 0.85); + font: 14px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.85) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.85); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.85); +} + +/*#SPAN_56:after*/ + +#SPAN_56:before { + border-block-end-color: rgba(255, 255, 255, 0.85); + border-block-start-color: rgba(255, 255, 255, 0.85); + border-bottom-color: rgba(255, 255, 255, 0.85); + border-inline-end-color: rgba(255, 255, 255, 0.85); + border-inline-start-color: rgba(255, 255, 255, 0.85); + border-left-color: rgba(255, 255, 255, 0.85); + border-right-color: rgba(255, 255, 255, 0.85); + border-top-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); + column-rule-color: rgba(255, 255, 255, 0.85); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.85); + text-align: center; + text-decoration: none solid rgba(255, 255, 255, 0.85); + text-decoration-color: rgba(255, 255, 255, 0.85); + text-emphasis-color: rgba(255, 255, 255, 0.85); + text-wrap: nowrap; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.85); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.85); + border: 0px none rgba(255, 255, 255, 0.85); + border-top: 0px none rgba(255, 255, 255, 0.85); + border-right: 0px none rgba(255, 255, 255, 0.85); + border-bottom: 0px none rgba(255, 255, 255, 0.85); + border-left: 0px none rgba(255, 255, 255, 0.85); + border-color: rgba(255, 255, 255, 0.85); + font: 14px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.85) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.85); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.85); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.85); +} + +/*#SPAN_56:before*/ + +#DIV_101 { + block-size: 244px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-gap: 12px; + column-rule-color: rgb(51, 51, 51); + display: grid; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + grid-template-columns: 410px 410px; + grid-template-rows: 53px 53px 53px; + height: 244px; + inline-size: 880px; + outline-color: rgb(51, 51, 51); + padding-block-end: 24px; + padding-block-start: 37px; + padding-bottom: 24px; + padding-inline-end: 24px; + padding-inline-start: 24px; + padding-left: 24px; + padding-right: 24px; + padding-top: 37px; + perspective-origin: 440px 122px; + row-gap: 12px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 440px 122px; + width: 880px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + padding: 37px 24px 24px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 440px 122px; +} + +/*#DIV_1*/ + +#DIV_101:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_1:after*/ + +#DIV_101:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_1:before*/ + +#DIV_102, #DIV_106, #DIV_1010, #DIV_1014, #DIV_1018 { + align-items: center; + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/level_bg@pc.656d6564.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 53px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 53px; + inline-size: 410px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + padding-inline-end: 16px; + padding-inline-start: 16px; + padding-left: 16px; + padding-right: 16px; + perspective-origin: 205px 26.5px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 205px 26.5px; + width: 410px; + -webkit-box-align: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/level_bg@pc.656d6564.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + padding: 0px 16px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 205px 26.5px; +} + +/*#DIV_2, #DIV_6, #DIV_10, #DIV_14, #DIV_18*/ + +#DIV_102:after, #DIV_106:after, #DIV_1010:after, #DIV_1014:after, #DIV_1018:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_2:after, #DIV_6:after, #DIV_10:after, #DIV_14:after, #DIV_18:after*/ + +#DIV_102:before, #DIV_106:before, #DIV_1010:before, #DIV_1014:before, #DIV_1018:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#DIV_2:before, #DIV_6:before, #DIV_10:before, #DIV_14:before, #DIV_18:before*/ + +#IMG_103 { + block-size: 36px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 36px; + inline-size: 36px; + margin-inline-end: 4px; + margin-right: 4px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 18px 18px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 18px 18px; + width: 36px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 4px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 18px 18px; +} + +/*#IMG_3, #IMG_7, #IMG_11, #IMG_15, #IMG_19*/ + +#IMG_103:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_3:after, #IMG_7:after, #IMG_11:after, #IMG_15:after, #IMG_19:after*/ + +#IMG_103:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +} + +/*#IMG_3:before, #IMG_7:before, #IMG_11:before, #IMG_15:before, #IMG_19:before*/ + +#SPAN_104 { + block-size: 18px; + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + height: 18px; + inline-size: 36px; + line-height: 18px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgba(255, 255, 255, 0.9); + perspective-origin: 18px 9px; + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + transform-origin: 18px 9px; + width: 36px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); + -webkit-transform-origin: 18px 9px; +} + +/*#SPAN_4, #SPAN_8, #SPAN_12, #SPAN_16, #SPAN_20*/ + +#SPAN_104:after { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#SPAN_4:after, #SPAN_8:after, #SPAN_12:after, #SPAN_16:after, #SPAN_20:after*/ + +#SPAN_104:before { + border-block-end-color: rgba(255, 255, 255, 0.9); + border-block-start-color: rgba(255, 255, 255, 0.9); + border-bottom-color: rgba(255, 255, 255, 0.9); + border-inline-end-color: rgba(255, 255, 255, 0.9); + border-inline-start-color: rgba(255, 255, 255, 0.9); + border-left-color: rgba(255, 255, 255, 0.9); + border-right-color: rgba(255, 255, 255, 0.9); + border-top-color: rgba(255, 255, 255, 0.9); + caret-color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); + column-rule-color: rgba(255, 255, 255, 0.9); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-weight: 600; + line-height: 18px; + outline-color: rgba(255, 255, 255, 0.9); + text-decoration: none solid rgba(255, 255, 255, 0.9); + text-decoration-color: rgba(255, 255, 255, 0.9); + text-emphasis-color: rgba(255, 255, 255, 0.9); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.9); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.9); + border: 0px none rgba(255, 255, 255, 0.9); + border-top: 0px none rgba(255, 255, 255, 0.9); + border-right: 0px none rgba(255, 255, 255, 0.9); + border-bottom: 0px none rgba(255, 255, 255, 0.9); + border-left: 0px none rgba(255, 255, 255, 0.9); + border-color: rgba(255, 255, 255, 0.9); + font: 600 12px / 18px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.9) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.9); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.9); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.9); +} + +/*#SPAN_4:before, #SPAN_8:before, #SPAN_12:before, #SPAN_16:before, #SPAN_20:before*/ + +#SPAN_105 { + block-size: 18px; + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + box-sizing: border-box; + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + display: block; + font-family: RPG_CN_Condensed; + font-size: 16px; + height: 18px; + inline-size: 27.2375px; + line-height: 18px; + margin-inline-start: 274.763px; + margin-left: 274.763px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(255, 255, 255); + perspective-origin: 13.6125px 9px; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + transform-origin: 13.6187px 9px; + width: 27.2375px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 18px RPG_CN_Condensed; + margin: 0px 0px 0px 274.763px; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); + -webkit-transform-origin: 13.6187px 9px; +} + +/*#SPAN_5, #SPAN_9, #SPAN_17*/ + +#SPAN_105:after { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: RPG_CN_Condensed; + font-size: 16px; + line-height: 18px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 18px RPG_CN_Condensed; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#SPAN_5:after, #SPAN_9:after, #SPAN_17:after*/ + +#SPAN_105:before { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: RPG_CN_Condensed; + font-size: 16px; + line-height: 18px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 18px RPG_CN_Condensed; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#SPAN_5:before, #SPAN_9:before, #SPAN_17:before*/ + +#SPAN_1013, #SPAN_1021 { + block-size: 18px; + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + box-sizing: border-box; + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + display: block; + font-family: RPG_CN_Condensed; + font-size: 16px; + height: 18px; + inline-size: 27.2375px; + line-height: 18px; + margin-inline-start: 274.763px; + margin-left: 274.763px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(255, 255, 255); + perspective-origin: 13.6125px 9px; + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + transform-origin: 13.6187px 9px; + width: 27.2375px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 18px RPG_CN_Condensed; + margin: 0px 0px 0px 274.763px; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); + -webkit-transform-origin: 13.6187px 9px; +} + +/*#SPAN_13, #SPAN_21*/ + +#SPAN_1013:after, #SPAN_1021:after { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: RPG_CN_Condensed; + font-size: 16px; + line-height: 18px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 18px RPG_CN_Condensed; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#SPAN_13:after, #SPAN_21:after*/ + +#SPAN_1013:before, #SPAN_1021:before { + border-block-end-color: rgb(255, 255, 255); + border-block-start-color: rgb(255, 255, 255); + border-bottom-color: rgb(255, 255, 255); + border-inline-end-color: rgb(255, 255, 255); + border-inline-start-color: rgb(255, 255, 255); + border-left-color: rgb(255, 255, 255); + border-right-color: rgb(255, 255, 255); + border-top-color: rgb(255, 255, 255); + caret-color: rgb(255, 255, 255); + color: rgb(255, 255, 255); + column-rule-color: rgb(255, 255, 255); + font-family: RPG_CN_Condensed; + font-size: 16px; + line-height: 18px; + outline-color: rgb(255, 255, 255); + text-decoration: none solid rgb(255, 255, 255); + text-decoration-color: rgb(255, 255, 255); + text-emphasis-color: rgb(255, 255, 255); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(255, 255, 255); + -webkit-text-stroke-color: rgb(255, 255, 255); + border: 0px none rgb(255, 255, 255); + border-top: 0px none rgb(255, 255, 255); + border-right: 0px none rgb(255, 255, 255); + border-bottom: 0px none rgb(255, 255, 255); + border-left: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + font: 16px / 18px RPG_CN_Condensed; + outline: rgb(255, 255, 255) none 0px; + -webkit-border-after: 0px none rgb(255, 255, 255); + -webkit-border-before: 0px none rgb(255, 255, 255); + -webkit-border-end: 0px none rgb(255, 255, 255); + -webkit-border-start: 0px none rgb(255, 255, 255); + -webkit-text-emphasis: none rgb(255, 255, 255); +} + +/*#SPAN_13:before, #SPAN_21:before*/ +#DIV_201 { + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/enemy_bg.d13ef453.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 114px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: 57px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + flex-direction: column; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 114px; + inline-size: 212px; + inset-block-end: 57px; + inset-block-start: 57px; + inset-inline-end: 8px; + inset-inline-start: 173px; + justify-content: center; + left: 173px; + outline-color: rgb(51, 51, 51); + padding-inline-end: 34px; + padding-inline-start: 68px; + padding-left: 68px; + padding-right: 34px; + perspective-origin: 106px 57px; + position: absolute; + right: 8px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 57px; + transform-origin: 106px 57px; + width: 212px; + -webkit-box-orient: vertical; + -webkit-box-pack: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/enemy_bg.d13ef453.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex-flow: column nowrap; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + padding: 0px 34px 0px 68px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 106px 57px; +}/*#DIV_1*/ + +#DIV_201:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_1:after*/ + +#DIV_201:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_1:before*/ + +#P_202 { + block-size: 14px; + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + box-sizing: border-box; + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + font-weight: 600; + height: 14px; + inline-size: 110px; + line-height: 14px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-bottom: 0px; + margin-top: 0px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgba(255, 255, 255, 0.65); + perspective-origin: 55px 7px; + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + transform-origin: 55px 7px; + width: 110px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 600 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); + -webkit-transform-origin: 55px 7px; +}/*#P_2*/ + +#P_202:after { + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + font-weight: 600; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.65); + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 600 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); +}/*#P_2:after*/ + +#P_202:before { + border-block-end-color: rgba(255, 255, 255, 0.65); + border-block-start-color: rgba(255, 255, 255, 0.65); + border-bottom-color: rgba(255, 255, 255, 0.65); + border-inline-end-color: rgba(255, 255, 255, 0.65); + border-inline-start-color: rgba(255, 255, 255, 0.65); + border-left-color: rgba(255, 255, 255, 0.65); + border-right-color: rgba(255, 255, 255, 0.65); + border-top-color: rgba(255, 255, 255, 0.65); + caret-color: rgba(255, 255, 255, 0.65); + color: rgba(255, 255, 255, 0.65); + column-rule-color: rgba(255, 255, 255, 0.65); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 10px; + font-weight: 600; + line-height: 14px; + outline-color: rgba(255, 255, 255, 0.65); + text-decoration: none solid rgba(255, 255, 255, 0.65); + text-decoration-color: rgba(255, 255, 255, 0.65); + text-emphasis-color: rgba(255, 255, 255, 0.65); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgba(255, 255, 255, 0.65); + -webkit-text-stroke-color: rgba(255, 255, 255, 0.65); + border: 0px none rgba(255, 255, 255, 0.65); + border-top: 0px none rgba(255, 255, 255, 0.65); + border-right: 0px none rgba(255, 255, 255, 0.65); + border-bottom: 0px none rgba(255, 255, 255, 0.65); + border-left: 0px none rgba(255, 255, 255, 0.65); + border-color: rgba(255, 255, 255, 0.65); + font: 600 10px / 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgba(255, 255, 255, 0.65) none 0px; + -webkit-border-after: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-before: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-end: 0px none rgba(255, 255, 255, 0.65); + -webkit-border-start: 0px none rgba(255, 255, 255, 0.65); + -webkit-text-emphasis: none rgba(255, 255, 255, 0.65); +}/*#P_2:before*/ + +#DIV_203 { + block-size: 24px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + flex-wrap: wrap; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 24px; + inline-size: 110px; + margin-block-start: 8px; + margin-top: 8px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 55px 12px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 55px 12px; + width: 110px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex-flow: row wrap; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 8px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 55px 12px; +}/*#DIV_3*/ + +#DIV_203:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_3:after*/ + +#DIV_203:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_3:before*/ + +#DIV_204 { + background-color: rgb(24, 32, 68); + block-size: 24px; + border-block-end-color: rgba(255, 255, 255, 0.16); + border-block-end-style: solid; + border-block-end-width: 0.8px; + border-block-start-color: rgba(255, 255, 255, 0.16); + border-block-start-style: solid; + border-block-start-width: 0.8px; + border-bottom-color: rgba(255, 255, 255, 0.16); + border-bottom-left-radius: 50%; + border-bottom-right-radius: 50%; + border-bottom-style: solid; + border-bottom-width: 0.8px; + border-end-end-radius: 50%; + border-end-start-radius: 50%; + border-inline-end-color: rgba(255, 255, 255, 0.16); + border-inline-end-style: solid; + border-inline-end-width: 0.8px; + border-inline-start-color: rgba(255, 255, 255, 0.16); + border-inline-start-style: solid; + border-inline-start-width: 0.8px; + border-left-color: rgba(255, 255, 255, 0.16); + border-left-style: solid; + border-left-width: 0.8px; + border-right-color: rgba(255, 255, 255, 0.16); + border-right-style: solid; + border-right-width: 0.8px; + border-start-end-radius: 50%; + border-start-start-radius: 50%; + border-top-color: rgba(255, 255, 255, 0.16); + border-top-left-radius: 50%; + border-top-right-radius: 50%; + border-top-style: solid; + border-top-width: 0.8px; + bottom: 0px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 24px; + inline-size: 24px; + inset-block-end: 0px; + inset-block-start: 0px; + inset-inline-end: 0px; + inset-inline-start: 0px; + left: 0px; + margin-inline-end: 12px; + margin-right: 12px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 12px 12px; + position: relative; + right: 0px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: 0px; + transform-origin: 12px 12px; + width: 24px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgb(24, 32, 68) none repeat scroll 0% 0% / auto padding-box border-box; + border: 0.8px solid rgba(255, 255, 255, 0.16); + border-top: 0.8px solid rgba(255, 255, 255, 0.16); + border-right: 0.8px solid rgba(255, 255, 255, 0.16); + border-bottom: 0.8px solid rgba(255, 255, 255, 0.16); + border-left: 0.8px solid rgba(255, 255, 255, 0.16); + border-width: 0.8px; + border-color: rgba(255, 255, 255, 0.16); + border-style: solid; + border-radius: 50%; + flex: 0 0 auto; + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 12px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0.8px solid rgba(255, 255, 255, 0.16); + -webkit-border-before: 0.8px solid rgba(255, 255, 255, 0.16); + -webkit-border-end: 0.8px solid rgba(255, 255, 255, 0.16); + -webkit-border-start: 0.8px solid rgba(255, 255, 255, 0.16); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 12px 12px; +}/*#DIV_4*/ + +#DIV_204:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_4:after*/ + +#DIV_204:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_4:before*/ + +#IMG_205 { + block-size: 24px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + bottom: -0.6px; + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 24px; + inline-size: 24px; + inset-block-end: -0.6px; + inset-block-start: -1px; + inset-inline-end: -0.6px; + inset-inline-start: -1px; + left: -1px; + object-fit: cover; + outline-color: rgb(51, 51, 51); + perspective-origin: 12px 12px; + position: absolute; + right: -0.6px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + top: -1px; + transform-origin: 12px 12px; + width: 24px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 12px 12px; +}/*#IMG_5*/ + +#IMG_205:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#IMG_5:after*/ + +#IMG_205:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#IMG_5:before*/ + +#DIV_301 { + align-items: center; + block-size: 12px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: flex; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 12px; + inline-size: 48px; + margin-block-start: 2px; + margin-top: 2px; + outline-color: rgb(51, 51, 51); + perspective-origin: 24px 6px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 24px 6px; + width: 48px; + -webkit-box-align: center; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 2px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 24px 6px; +}/*#DIV_1*/ + +#DIV_301:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_1:after*/ + +#DIV_301:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#DIV_1:before*/ + +.star { + background-image: url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/star.629dced2.png"); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: contain; + block-size: 12px; + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + box-sizing: border-box; + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + display: block; + flex-shrink: 0; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + height: 12px; + inline-size: 12px; + margin-inline-end: 4px; + margin-right: 4px; + min-block-size: auto; + min-height: auto; + min-inline-size: auto; + min-width: auto; + outline-color: rgb(51, 51, 51); + perspective-origin: 6px 6px; + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + transform-origin: 6px 6px; + width: 12px; + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + background: rgba(0, 0, 0, 0) url("https://act.hoyolab.com/app/community-game-records-sea/rpg/images/star.629dced2.png") no-repeat scroll 50% 50% / contain padding-box border-box; + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + flex: 0 0 auto; + font: italic 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + margin: 0px 4px 0px 0px; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); + -webkit-transform-origin: 6px 6px; +}/*#I_2, #I_3*/ + +.star:after { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: italic 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#I_2:after, #I_3:after*/ + +.star:before { + border-block-end-color: rgb(51, 51, 51); + border-block-start-color: rgb(51, 51, 51); + border-bottom-color: rgb(51, 51, 51); + border-inline-end-color: rgb(51, 51, 51); + border-inline-start-color: rgb(51, 51, 51); + border-left-color: rgb(51, 51, 51); + border-right-color: rgb(51, 51, 51); + border-top-color: rgb(51, 51, 51); + caret-color: rgb(51, 51, 51); + color: rgb(51, 51, 51); + column-rule-color: rgb(51, 51, 51); + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + font-size: 14px; + outline-color: rgb(51, 51, 51); + text-decoration: none solid rgb(51, 51, 51); + text-decoration-color: rgb(51, 51, 51); + text-emphasis-color: rgb(51, 51, 51); + -webkit-locale: "en"; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -webkit-text-fill-color: rgb(51, 51, 51); + -webkit-text-stroke-color: rgb(51, 51, 51); + border: 0px none rgb(51, 51, 51); + border-top: 0px none rgb(51, 51, 51); + border-right: 0px none rgb(51, 51, 51); + border-bottom: 0px none rgb(51, 51, 51); + border-left: 0px none rgb(51, 51, 51); + border-color: rgb(51, 51, 51); + font: italic 14px -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif; + outline: rgb(51, 51, 51) none 0px; + -webkit-border-after: 0px none rgb(51, 51, 51); + -webkit-border-before: 0px none rgb(51, 51, 51); + -webkit-border-end: 0px none rgb(51, 51, 51); + -webkit-border-start: 0px none rgb(51, 51, 51); + -webkit-text-emphasis: none rgb(51, 51, 51); +}/*#I_2:before, #I_3:before*/ diff --git a/resources/starrail/activity/yitai.html b/resources/starrail/activity/yitai.html new file mode 100644 index 0000000..4827633 --- /dev/null +++ b/resources/starrail/activity/yitai.html @@ -0,0 +1,208 @@ + + + + + Title + + + +
+
+
+

+ 以太战线 +

+
+ {% set gender_bg = ['', 'gender_1.019e84ed.png', 'gender_2.1ccf5d85.png'] %} + {% set rank_bg = ['', 'rank_1.467cdd9b.png', 'rank_2.bb4cfb69.png', 'rank_3.e10030df.png', 'rank_4.e2a47f70.png', 'rank_5.5cd5c289.png', 'rank_6.1908893a.png'] %} + +
+
+ + {{ data.basic.rating_name }} - {{ uid }} +
+
+

+

+
+
+
+

+ {{ data.basic.collect_cur }}/{{ data.basic.collect_max }} +

+

+ 以太灵收集进度 +

+
+
+
+
+
+
+ 决胜乐园 +
+
+
+
+
+
+
+
+
+
+
+ {% if data.fairy_land.is_open %} + {% set land_bg = 'land.ec6f60ce.png' %} + {% else %} + {% set land_bg = 'land_lock.370dc35d.png' %} + {% endif %} + + {% if data.fairy_land.is_open %} +
+

+ 已击败对手 +

+ {% set enemy = {108: 'enemy_108.f2f1a13a.png', 109: 'enemy_109.bca00e7a.png', 110: 'enemy_110.ae202ae9.png', 111: 'enemy_111.182fb3cb.png', 112: 'enemy_112.18b3f6b0.png', 113: 'enemy_113.d73aea7f.png'} %} +
+ {% for kill in data.fairy_land.kills %} +
+ +
+ {% endfor %} +
+
+ {% else %} +
+ 竞技场尚未开启 +
+ {% endif %} +
+
+ {% set city = data.fairy_land.cities[0] %} +
+ +
+

+ 残响回廊 +

+ {% if city.has_challenge %} +
+ {% for _ in range(city.stars_cur) %} + + {% endfor %} +
+ {% else %} +

+ 暂无挑战数据 +

+ {% endif %} +
+
+ {% set city = data.fairy_land.cities[1] %} +
+ +
+

+ 流云渡 +

+ {% if city.has_challenge %} +
+ {% for _ in range(city.stars_cur) %} + + {% endfor %} +
+ {% else %} +

+ 暂无挑战数据 +

+ {% endif %} +
+
+ {% set city = data.fairy_land.cities[2] %} +
+ +
+

+ 空间站「黑塔」 +

+ {% if city.has_challenge %} +
+ {% for _ in range(city.stars_cur) %} + + {% endfor %} +
+ {% else %} +

+ 暂无挑战数据 +

+ {% endif %} +
+
+ {% set city = data.fairy_land.cities[3] %} +
+ +
+

+ 大矿区 +

+ {% if city.has_challenge %} +
+ {% for _ in range(city.stars_cur) %} + + {% endfor %} +
+ {% else %} +

+ 暂无挑战数据 +

+ {% endif %} +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 超链接对决 +
+
+
+
+
+
+
+
+ {% for battle in data.link_battle %} +
+ {{ battle.rank_name }} {{ battle.challenge_cur }}/{{ battle.challenge_max }} +
+ {% endfor %} +
+
+
+
+
+
+
+ + \ No newline at end of file