{"id":9,"date":"2024-07-06T17:22:50","date_gmt":"2024-07-06T09:22:50","guid":{"rendered":"http:\/\/note.ui11.cc\/?p=9"},"modified":"2024-07-06T17:22:53","modified_gmt":"2024-07-06T09:22:53","slug":"%e5%8d%a0%e4%bd%8d%e7%ac%a6","status":"publish","type":"post","link":"https:\/\/note.ui11.cc\/index.php\/2024\/07\/06\/%e5%8d%a0%e4%bd%8d%e7%ac%a6\/","title":{"rendered":"\u5360\u4f4d\u7b26"},"content":{"rendered":"\n<p>\u5728\u4e0d\u540c\u7684\u4e0a\u4e0b\u6587\u4e2d\uff0c&#8221;\u5360\u4f4d\u7b26&#8221;\uff08Placeholder\uff09\u53ef\u4ee5\u6709\u4e0d\u540c\u7684\u542b\u4e49\u3002\u4ee5\u4e0b\u662f\u51e0\u79cd\u5e38\u89c1\u7684\u5360\u4f4d\u7b26\u6982\u5ff5\uff1a<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. \u6587\u672c\u5360\u4f4d\u7b26\uff08Text Placeholder\uff09<\/h3>\n\n\n\n<p>\u5728\u6587\u672c\u7f16\u8f91\u6216\u5904\u7406\u4e2d\uff0c\u5360\u4f4d\u7b26\u901a\u5e38\u6307\u4ee3\u4e00\u4e2a\u4e34\u65f6\u7684\u6587\u672c\u6216\u7b26\u53f7\uff0c\u7528\u4e8e\u8868\u793a\u5c06\u6765\u4f1a\u63d2\u5165\u5b9e\u9645\u5185\u5bb9\u7684\u4f4d\u7f6e\u3002\u4f8b\u5982\uff0c\u5728\u8bbe\u8ba1\u6587\u6863\u6a21\u677f\u65f6\uff0c\u53ef\u80fd\u4f1a\u4f7f\u7528\u5360\u4f4d\u7b26\u6765\u8868\u793a\u7528\u6237\u9700\u8981\u586b\u5199\u7684\u4fe1\u606f\uff0c\u5982\u59d3\u540d\u3001\u5730\u5740\u7b49\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. \u7f16\u7a0b\u4e2d\u7684\u5360\u4f4d\u7b26<\/h3>\n\n\n\n<p>\u5728\u7f16\u7a0b\u4e2d\uff0c\u5360\u4f4d\u7b26\u53ef\u4ee5\u6307\u4ee3\u4e00\u4e2a\u4e34\u65f6\u7684\u53d8\u91cf\u6216\u503c\uff0c\u7528\u4e8e\u5728\u4ee3\u7801\u4e2d\u5360\u4f4d\uff0c\u76f4\u5230\u5b9e\u9645\u7684\u503c\u88ab\u786e\u5b9a\u6216\u8ba1\u7b97\u51fa\u6765\u3002\u4f8b\u5982\uff0c\u5728\u5b57\u7b26\u4e32\u683c\u5f0f\u5316\u4e2d\uff0c\u5360\u4f4d\u7b26\u7528\u4e8e\u6307\u5b9a\u53d8\u91cf\u503c\u63d2\u5165\u7684\u4f4d\u7f6e\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>String name = \"Alice\";\nString message = \"Hello, %s!\";\nSystem.out.println(String.format(message, name)); \/\/ \u8f93\u51fa: Hello, Alice!<\/code><\/pre>\n\n\n\n<p>\u5728\u4e0a\u9762\u7684\u4f8b\u5b50\u4e2d\uff0c<code>%s<\/code>\u00a0\u662f\u4e00\u4e2a\u5360\u4f4d\u7b26\uff0c\u5b83\u5728\u00a0<code>String.format<\/code>\u00a0\u65b9\u6cd5\u4e2d\u88ab\u5b9e\u9645\u7684\u00a0<code>name<\/code>\u00a0\u53d8\u91cf\u503c\u66ff\u6362\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. \u6570\u636e\u5e93\u4e2d\u7684\u5360\u4f4d\u7b26<\/h3>\n\n\n\n<p>\u5728\u6570\u636e\u5e93\u64cd\u4f5c\u4e2d\uff0c\u5360\u4f4d\u7b26\u901a\u5e38\u7528\u4e8e SQL \u8bed\u53e5\u4e2d\uff0c\u8868\u793a\u4e00\u4e2a\u5c06\u88ab\u5b9e\u9645\u53c2\u6570\u503c\u66ff\u6362\u7684\u4f4d\u7f6e\u3002\u8fd9\u5728\u9884\u7f16\u8bd1 SQL \u8bed\u53e5\uff08\u5982\u4f7f\u7528 JDBC \u7684&nbsp;<code>PreparedStatement<\/code>\uff09\u65f6\u975e\u5e38\u6709\u7528\uff0c\u53ef\u4ee5\u9632\u6b62 SQL \u6ce8\u5165\u653b\u51fb\uff0c\u5e76\u63d0\u9ad8\u6027\u80fd<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>String sql = \"SELECT * FROM users WHERE name = ?\";\nPreparedStatement pstmt = connection.prepareStatement(sql);\npstmt.setString(1, \"Alice\");\nResultSet rs = pstmt.executeQuery();<\/code><\/pre>\n\n\n\n<p>\u5728\u4e0a\u9762\u7684\u4f8b\u5b50\u4e2d\uff0c<code>?<\/code>&nbsp;\u662f\u4e00\u4e2a\u5360\u4f4d\u7b26\uff0c\u5b83\u5728\u6267\u884c&nbsp;<code>PreparedStatement<\/code>&nbsp;\u65f6\u88ab&nbsp;<code>setString<\/code>&nbsp;\u65b9\u6cd5\u63d0\u4f9b\u7684\u5b9e\u9645\u503c\u66ff\u6362\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. HTML\u4e2d\u7684\u5360\u4f4d\u7b26<\/h3>\n\n\n\n<p>\u5728 HTML \u4e2d\uff0c\u5360\u4f4d\u7b26\u53ef\u4ee5\u6307\u4ee3\u4e00\u4e2a\u8f93\u5165\u5b57\u6bb5\u7684\u63d0\u793a\u6587\u672c\uff0c\u5f53\u7528\u6237\u5f00\u59cb\u8f93\u5165\u65f6\uff0c\u63d0\u793a\u6587\u672c\u4f1a\u6d88\u5931\u3002\u8fd9\u901a\u5e38\u901a\u8fc7&nbsp;<code>placeholder<\/code>&nbsp;\u5c5e\u6027\u5b9e\u73b0\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;input type=\"text\" name=\"username\" placeholder=\"Enter your username\"><\/code><\/pre>\n\n\n\n<p><span style=\"font-size: revert; color: rgb(20, 21, 26); background-color: rgb(255 255 255\/var(--tw-bg-opacity)) ; font-family: -apple-system, blinkmacsystemfont, &quot;Helvetica Neue&quot;, helvetica, &quot;segoe ui&quot;, arial, roboto, &quot;PingFang SC&quot;, miui, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, sans-serif; white-space: normal;\">\u5728\u4e0a\u9762\u7684\u4f8b\u5b50\u4e2d\uff0c\u5f53\u7528\u6237\u672a\u8f93\u5165\u4efb\u4f55\u5185\u5bb9\u65f6\uff0c\u8f93\u5165\u6846\u4e2d\u4f1a\u663e\u793a &#8220;Enter your username&#8221; \u4f5c\u4e3a\u63d0\u793a\u3002<\/span><div class=\"system-card-wrapper padding-card group relative\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; -webkit-box-align: center; align-items: center; width: 768px; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; color: rgb(51, 51, 51); font-family: -apple-system, blinkmacsystemfont, &quot;Helvetica Neue&quot;, helvetica, &quot;segoe ui&quot;, arial, roboto, &quot;PingFang SC&quot;, miui, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(246, 247, 249); position: relative !important;\"><div class=\"card-text-wrapper system-card-content rounded-2xl rounded-bl bg-white p-3 md:p-4 \" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 1rem !important; margin: 0px; border-radius: 1rem 1rem 1rem 0.25rem !important; --tw-bg-opacity:1 !important; background-color: rgb(255 255 255\/var(--tw-bg-opacity)) !important; overflow: hidden;\"><div class=\"system-message-info\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; width: 736px; overflow: hidden; word-break: break-word; overflow-wrap: break-word;\"><div class=\"screenshot-md-wrapper\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\"><div style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\"><div class=\"system-message-info text-[15px] leading-[24px] md:text-[16px] md:leading-[28px]\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; font-size: 16px !important; line-height: 28px !important; width: 736px; overflow: hidden; word-break: break-word; overflow-wrap: break-word;\"><div class=\"screenshot-md-wrapper flex flex-col\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; display: flex !important; -webkit-box-direction: normal !important; -webkit-box-orient: vertical !important; flex-direction: column !important;\"><div class=\"hailuo-markdown \" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; color: rgb(20, 21, 26); line-height: 1.625;\"><h3 style=\"box-sizing: border-box; border: 0px none; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px 0px 12px; font-size: 18px; font-weight: 800; line-height: 1.625;\">\u603b\u7ed3<\/h3><p style=\"box-sizing: border-box; border: 0px none; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\">\u5360\u4f4d\u7b26\u662f\u4e00\u79cd\u4e34\u65f6\u7684\u66ff\u4ee3\u7269\uff0c\u7528\u4e8e\u5728\u6700\u7ec8\u5185\u5bb9\u786e\u5b9a\u4e4b\u524d\u5360\u4f4f\u67d0\u4e2a\u4f4d\u7f6e\u6216\u8868\u793a\u67d0\u4e2a\u503c\u3002\u5b83\u4eec\u5728\u6587\u672c\u5904\u7406\u3001\u7f16\u7a0b\u3001\u6570\u636e\u5e93\u64cd\u4f5c\u548c HTML \u8f93\u5165\u5b57\u6bb5\u4e2d\u90fd\u6709\u5e7f\u6cdb\u7684\u5e94\u7528\uff0c\u4ee5\u63d0\u9ad8\u7075\u6d3b\u6027\u548c\u7528\u6237\u4f53\u9a8c\u3002<\/p><\/div><\/div><\/div><\/div><\/div><\/div><div data-screenshot-ignore=\"true\" class=\"system-operation-box mt-3 flex items-center justify-between border-t border-orn_line pt-4 md:mt-4\" style=\"box-sizing: border-box; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-image: initial; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: flex; -webkit-box-align: center; align-items: center; width: 736px; border-top-width: 1px !important; border-color: rgb(234 234 234\/var(--tw-border-opacity))  !important; padding-top: 1rem !important; margin-top: 1rem !important; -webkit-box-pack: justify !important; justify-content: space-between !important; --tw-border-opacity:1  !important;\"><div class=\"flex items-center space-x-5 md:space-x-3\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; display: flex !important; -webkit-box-align: center !important; align-items: center !important;\"><div class=\"hover-icon flex cursor-pointer items-center rounded p-0.5 text-font_body md:hover:bg-orn_hover\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0.125rem !important; margin: 0px; display: flex !important; cursor: pointer !important; -webkit-box-align: center !important; align-items: center !important; border-radius: 0.25rem !important; --tw-text-opacity:1 !important; color: rgb(122 126 139\/var(--tw-text-opacity)) !important;\"><span style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.9165 8.33331C2.9165 6.9526 4.03579 5.83331 5.4165 5.83331H11.2498C12.6305 5.83331 13.7498 6.9526 13.7498 8.33331V15.4166C13.7498 16.7974 12.6305 17.9166 11.2498 17.9166H5.4165C4.03579 17.9166 2.9165 16.7974 2.9165 15.4166V8.33331ZM5.4165 7.49998C4.95627 7.49998 4.58317 7.87308 4.58317 8.33331V15.4166C4.58317 15.8769 4.95627 16.25 5.4165 16.25H11.2498C11.7101 16.25 12.0832 15.8769 12.0832 15.4166V8.33331C12.0832 7.87308 11.7101 7.49998 11.2498 7.49998H5.4165Z\" fill=\"#7A7E8B\"><\/path><path d=\"M6.25 4.58331C6.25 3.2026 7.36929 2.08331 8.75 2.08331H14.5833C15.964 2.08331 17.0833 3.2026 17.0833 4.58331V11.6666C17.0833 13.0474 15.964 14.1666 14.5833 14.1666H12.9167V12.5H14.5833C15.0436 12.5 15.4167 12.1269 15.4167 11.6666V4.58331C15.4167 4.12308 15.0436 3.74998 14.5833 3.74998H8.75C8.28976 3.74998 7.91667 4.12308 7.91667 4.58331V6.66665H6.25V4.58331Z\" fill=\"#7A7E8B\"><\/path><\/svg><\/span><\/div><div class=\"hover-icon flex cursor-pointer items-center rounded p-0.5 text-font_body md:hover:bg-orn_hover\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0.125rem !important; margin-top: 0px; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-bottom: 0px; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; display: flex !important; cursor: pointer !important; -webkit-box-align: center !important; align-items: center !important; border-radius: 0.25rem !important; --tw-text-opacity:1 !important; color: rgb(122 126 139\/var(--tw-text-opacity)) !important; --tw-space-x-reverse:0 !important;\"><a class=\"ant-dropdown-trigger\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; cursor: pointer; color: var(--adm-color-primary); transition-duration: 0.2s; transition-timing-function: ease-in-out; transition-property: opacity; text-decoration: inherit;\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.959 6.00694L14.7048 4.26115L17.109 6.66532L15.3632 8.4111L12.959 6.00694ZM11.8277 7.13831L5.48749 13.4785L5.48749 15.8827L7.89165 15.8827L14.2318 9.54248L11.8277 7.13831ZM15.6241 2.91765C15.1164 2.40997 14.2933 2.40997 13.7856 2.91765L4.26825 12.435C4.02445 12.6788 3.88749 13.0095 3.88749 13.3542L3.88749 16.1827C3.88749 16.9006 4.46952 17.4827 5.18749 17.4827L8.01592 17.4827C8.3607 17.4827 8.69136 17.3457 8.93515 17.1019L18.4525 7.58456C18.9602 7.07687 18.9602 6.25376 18.4525 5.74608L15.6241 2.91765Z\" fill=\"#7A7E8B\"><\/path><path d=\"M4.01879 8.96809L4.75585 6.90069C4.85765 6.61515 5.06825 6.38146 5.34169 6.25061L7.35482 5.28723L5.31005 4.32103C5.05203 4.19911 4.84866 3.98546 4.7396 3.72174L3.99972 1.93263L3.26864 3.72535C3.16088 3.9896 2.95856 4.20425 2.70114 4.32744L0.661144 5.30367L2.67975 6.25751C2.95338 6.38681 3.16489 6.61891 3.26827 6.90334L4.01879 8.96809Z\" fill=\"#7A7E8B\"><\/path><path opacity=\"0.7\" d=\"M9.99424 4.76436L10.3529 3.62894C10.4601 3.28941 10.6937 3.00406 11.0054 2.83188L11.9187 2.32724L10.9796 1.81438C10.681 1.65135 10.4527 1.38439 10.338 1.06417L9.99424 0.104695L9.65518 1.06584C9.54202 1.38663 9.31504 1.6547 9.01731 1.8192L8.08069 2.33667L8.98765 2.83196C9.30544 3.0055 9.54285 3.29633 9.64927 3.64242L9.99424 4.76436Z\" fill=\"#7A7E8B\"><\/path><\/svg><\/a><\/div><div class=\"hover-icon flex cursor-pointer items-center rounded p-0.5 text-font_body md:hover:bg-orn_hover\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0.125rem !important; margin-top: 0px; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-bottom: 0px; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; display: flex !important; cursor: pointer !important; -webkit-box-align: center !important; align-items: center !important; border-radius: 0.25rem !important; --tw-text-opacity:1 !important; color: rgb(122 126 139\/var(--tw-text-opacity)) !important; --tw-space-x-reverse:0 !important;\"><span style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.91699 5.41699C2.91699 4.03628 4.03628 2.91699 5.41699 2.91699H10.0003C10.4606 2.91699 10.8337 3.29009 10.8337 3.75033C10.8337 4.21056 10.4606 4.58366 10.0003 4.58366H5.41699C4.95675 4.58366 4.58366 4.95675 4.58366 5.41699V14.5837C4.58366 15.0439 4.95675 15.417 5.41699 15.417H14.5837C15.0439 15.417 15.417 15.0439 15.417 14.5837V10.0003C15.417 9.54009 15.7901 9.16699 16.2503 9.16699C16.7106 9.16699 17.0837 9.54009 17.0837 10.0003V14.5837C17.0837 15.9644 15.9644 17.0837 14.5837 17.0837H5.41699C4.03628 17.0837 2.91699 15.9644 2.91699 14.5837V5.41699Z\" fill=\"#7A7E8B\"><\/path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.4521 3.32171C13.6889 2.92705 14.2008 2.79908 14.5954 3.03587L16.4671 4.15886C17.2549 4.63159 16.9236 5.74476 16.1186 5.85659C14.5069 6.08047 13.4159 6.73034 12.7219 7.5774C12.0214 8.43236 11.6667 9.56051 11.6667 10.8338C11.6667 11.294 11.2936 11.6671 10.8333 11.6671C10.3731 11.6671 10 11.294 10 10.8338C10 9.25498 10.4421 7.73026 11.4327 6.52115C12.0944 5.71347 12.9751 5.07828 14.0672 4.66257L13.7379 4.46503C13.3433 4.22824 13.2153 3.71636 13.4521 3.32171Z\" fill=\"#7A7E8B\"><\/path><\/svg><\/span><\/div><div class=\"hover-icon flex cursor-pointer items-center rounded p-0.5 text-font_body md:hover:bg-orn_hover\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0.125rem !important; margin-top: 0px; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-bottom: 0px; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; display: flex !important; cursor: pointer !important; -webkit-box-align: center !important; align-items: center !important; border-radius: 0.25rem !important; --tw-text-opacity:1 !important; color: rgb(122 126 139\/var(--tw-text-opacity)) !important; --tw-space-x-reverse:0 !important;\"><span style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.10269 16.25C9.17323 16.25 9.23274 16.223 9.27014 16.1875L9.27605 16.1819L13.0677 12.6539C13.2371 12.4963 13.3333 12.2753 13.3333 12.0439V5.41669C13.3333 4.95645 12.9602 4.58335 12.5 4.58335H6.71852C6.41005 4.58335 6.12946 4.75266 5.98698 5.02219C5.25575 6.40544 3.90116 8.98897 3.39014 10.0973C3.34326 10.2455 3.3253 10.3997 3.33662 10.5528L3.33888 10.5835V10.6142C3.33888 10.925 3.46851 11.2324 3.71459 11.466C3.96214 11.7011 4.30671 11.8402 4.67447 11.8402H9.7457L8.88487 16.0175L8.88028 16.0356C8.87428 16.0593 8.87475 16.0836 8.88196 16.1075C8.88925 16.1317 8.90447 16.1587 8.93108 16.1836L8.93526 16.1875C8.97266 16.223 9.03216 16.25 9.10269 16.25ZM10.4139 17.3998C10.0586 17.7353 9.58645 17.9167 9.10269 17.9167C8.61833 17.9167 8.14564 17.7348 7.79012 17.3985C7.55508 17.1779 7.37976 16.8994 7.28599 16.5878C7.19392 16.2818 7.18476 15.9579 7.25946 15.6474L7.70056 13.5068H4.67447C3.89177 13.5068 3.13299 13.212 2.56703 12.6747C2.00708 12.1431 1.68087 11.4152 1.67239 10.6451C1.64821 10.2625 1.70084 9.87947 1.82686 9.51694L1.83978 9.47975L1.85616 9.44395C2.3772 8.30464 3.78389 5.62352 4.51352 4.24328C4.94636 3.42448 5.79593 2.91669 6.71852 2.91669H12.5C13.8807 2.91669 15 4.03598 15 5.41669V12.0439C15 12.7381 14.7113 13.4012 14.203 13.8741L10.4139 17.3998Z\" fill=\"#7A7E8B\"><\/path><path d=\"M17.5 12.0834C17.5 12.5436 17.1269 12.9167 16.6667 12.9167C16.2064 12.9167 15.8333 12.5436 15.8333 12.0834V4.16669C15.8333 3.70645 16.2064 3.33335 16.6667 3.33335C17.1269 3.33335 17.5 3.70645 17.5 4.16669V12.0834Z\" fill=\"#7A7E8B\"><\/path><\/svg><\/span><\/div><div class=\"hover-icon flex cursor-pointer items-center rounded p-0.5 text-font_body md:hover:bg-orn_hover\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0.125rem !important; margin-top: 0px; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-bottom: 0px; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; display: flex !important; cursor: pointer !important; -webkit-box-align: center !important; align-items: center !important; border-radius: 0.25rem !important; --tw-text-opacity:1 !important; color: rgb(122 126 139\/var(--tw-text-opacity)) !important; --tw-space-x-reverse:0 !important;\"><span style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M2.5 9.99998C2.5 10.442 2.67559 10.8659 2.98816 11.1785C3.30072 11.4911 3.72464 11.6666 4.16667 11.6666C4.60869 11.6666 5.03262 11.4911 5.34518 11.1785C5.65774 10.8659 5.83333 10.442 5.83333 9.99998C5.83333 9.55795 5.65774 9.13403 5.34518 8.82147C5.03262 8.50891 4.60869 8.33331 4.16667 8.33331C3.72464 8.33331 3.30072 8.50891 2.98816 8.82147C2.67559 9.13403 2.5 9.55795 2.5 9.99998Z\" fill=\"#7A7E8B\"><\/path><path d=\"M8.3335 9.99998C8.3335 10.442 8.50909 10.8659 8.82165 11.1785C9.13421 11.4911 9.55814 11.6666 10.0002 11.6666C10.4422 11.6666 10.8661 11.4911 11.1787 11.1785C11.4912 10.8659 11.6668 10.442 11.6668 9.99998C11.6668 9.55795 11.4912 9.13403 11.1787 8.82147C10.8661 8.50891 10.4422 8.33331 10.0002 8.33331C9.55814 8.33331 9.13421 8.50891 8.82165 8.82147C8.50909 9.13403 8.3335 9.55795 8.3335 9.99998Z\" fill=\"#7A7E8B\"><\/path><path d=\"M14.1665 9.99998C14.1665 10.2188 14.2096 10.4356 14.2934 10.6378C14.3771 10.84 14.4999 11.0237 14.6547 11.1785C14.8094 11.3333 14.9932 11.456 15.1954 11.5398C15.3976 11.6235 15.6143 11.6666 15.8332 11.6666C16.052 11.6666 16.2688 11.6235 16.471 11.5398C16.6732 11.456 16.8569 11.3333 17.0117 11.1785C17.1664 11.0237 17.2892 10.84 17.373 10.6378C17.4567 10.4356 17.4998 10.2188 17.4998 9.99998C17.4998 9.78111 17.4567 9.56438 17.373 9.36217C17.2892 9.15996 17.1664 8.97623 17.0117 8.82147C16.8569 8.6667 16.6732 8.54394 16.471 8.46018C16.2688 8.37642 16.052 8.33331 15.8332 8.33331C15.6143 8.33331 15.3976 8.37642 15.1954 8.46018C14.9932 8.54394 14.8094 8.6667 14.6547 8.82147C14.4999 8.97623 14.3771 9.15996 14.2934 9.36217C14.2096 9.56438 14.1665 9.78111 14.1665 9.99998Z\" fill=\"#7A7E8B\"><\/path><\/svg><\/span><\/div><\/div><div class=\"ml-3 flex items-center space-x-3\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.75rem !important; display: flex !important; -webkit-box-align: center !important; align-items: center !important;\"><div class=\"hover-icon flex cursor-pointer items-center rounded text-font_body md:hover:bg-orn_hover\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; display: flex !important; cursor: pointer !important; -webkit-box-align: center !important; align-items: center !important; border-radius: 0.25rem !important; --tw-text-opacity:1 !important; color: rgb(122 126 139\/var(--tw-text-opacity)) !important;\"><div class=\"\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px;\"><div class=\"p-0.5\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0.125rem !important; margin: 0px;\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.8342 7.51668C14.2852 7.42512 14.7251 7.71654 14.8166 8.16758C14.937 8.76035 15 9.37325 15 10C15 10.6268 14.937 11.2397 14.8166 11.8325C14.7251 12.2835 14.2852 12.5749 13.8342 12.4834C13.3832 12.3918 13.0917 11.952 13.1833 11.5009C13.2816 11.0167 13.3333 10.5148 13.3333 10C13.3333 9.48523 13.2816 8.98339 13.1833 8.49913C13.0917 8.04809 13.3832 7.60823 13.8342 7.51668Z\" fill=\"#7A7E8B\"><\/path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3625 5.90259C16.8036 5.77131 17.2676 6.02248 17.3989 6.4636C17.5034 6.81472 17.5929 7.17228 17.6666 7.53553C17.8307 8.34371 17.9167 9.17956 17.9167 10.0346C17.9167 10.8897 17.8307 11.7256 17.6666 12.5338C17.5929 12.897 17.5034 13.2546 17.3989 13.6057C17.2676 14.0468 16.8036 14.298 16.3625 14.1667C15.9214 14.0354 15.6702 13.5714 15.8015 13.1303C15.8919 12.8263 15.9694 12.5168 16.0333 12.2022C16.1753 11.5025 16.25 10.7777 16.25 10.0346C16.25 9.29154 16.1753 8.56675 16.0333 7.86708C15.9694 7.55253 15.8919 7.24296 15.8015 6.93901C15.6702 6.4979 15.9214 6.03388 16.3625 5.90259Z\" fill=\"#7A7E8B\"><\/path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.49233 3.08704C10.5999 2.34865 12.0835 3.14263 12.0835 4.47379V15.5263C12.0835 16.8574 10.5999 17.6514 9.49233 16.913L5.99785 14.5834H4.5835C3.20278 14.5834 2.0835 13.4641 2.0835 12.0834V7.91669C2.0835 6.53598 3.20278 5.41669 4.5835 5.41669H5.99785L9.49233 3.08704ZM10.4168 4.47379L6.50248 7.08336H4.5835C4.12326 7.08336 3.75016 7.45646 3.75016 7.91669V12.0834C3.75016 12.5436 4.12326 12.9167 4.5835 12.9167H6.50248L10.4168 15.5263L10.4168 4.47379Z\" fill=\"#7A7E8B\"><\/path><\/svg><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div data-screenshot-ignore=\"true\" class=\"\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 0px; margin: 0px; color: rgb(51, 51, 51); font-family: -apple-system, blinkmacsystemfont, &quot;Helvetica Neue&quot;, helvetica, &quot;segoe ui&quot;, arial, roboto, &quot;PingFang SC&quot;, miui, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(246, 247, 249);\"><div class=\"mt-3 flex w-max max-w-full cursor-pointer items-center rounded-2xl bg-white p-4 text-sm text-[#333] md:hover:bg-orn_hover\" style=\"box-sizing: border-box; border: 0px solid; --tw-border-spacing-x:0; --tw-border-spacing-y:0; --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-skew-x:0; --tw-skew-y:0; --tw-scale-x:1; --tw-scale-y:1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness:proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width:0px; --tw-ring-offset-color:#fff; --tw-ring-color:#3b82f680; --tw-ring-offset-shadow:0 0 #0000; --tw-ring-shadow:0 0 #0000; --tw-shadow:0 0 #0000; --tw-shadow-colored:0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; padding: 1rem !important; margin-top: 0.75rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: flex !important; width: max-content !important; max-width: 100%; cursor: pointer !important; -webkit-box-align: center !important; align-items: center !important; border-radius: 1rem !important; --tw-bg-opacity:1 !important; background-color: rgb(255 255 255\/var(--tw-bg-opacity)) !important; font-size: 0.875rem !important; line-height: 1.25rem !important; --tw-text-opacity:1 !important; color: rgb(51 51 51\/var(--tw-text-opacity)) !important;\"><\/div><\/div><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5728\u4e0d\u540c\u7684\u4e0a\u4e0b\u6587\u4e2d\uff0c&#8221;\u5360\u4f4d\u7b26&#8221;\uff08Placeholder\uff09\u53ef\u4ee5\u6709\u4e0d\u540c\u7684\u542b\u4e49\u3002\u4ee5\u4e0b\u662f\u51e0\u79cd\u5e38\u89c1 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-9","post","type-post","status-publish","format-standard","hentry","category-javase"],"_links":{"self":[{"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/posts\/9","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/comments?post=9"}],"version-history":[{"count":1,"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/posts\/9\/revisions"}],"predecessor-version":[{"id":10,"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/posts\/9\/revisions\/10"}],"wp:attachment":[{"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/media?parent=9"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/categories?post=9"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/note.ui11.cc\/index.php\/wp-json\/wp\/v2\/tags?post=9"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}