Domain wy.iosos.net
CLOUDFLARENET
Software information

cloudflare cloudflare

tcp/443 tcp/80 tcp/8443

  • Open service 2a06:98c1:3105::6812:230f:80 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:10 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Server-Timing: cfEdge;dur=187,cfOrigin;dur=0
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NGasRiFnGvAGJkKf%2FcESCTIzmmZSWcdk40g7rs3sVik0cjs72Q73SWAZ4ea4V3FEPblHsRs0loQIHP%2F%2BtNPQb8I4J8n5l7BaTWjo1gEIhsxvQI3TfTiwig%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa35388dcc9c6-SIN
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 2606:4700:440a::ac40:98f1:8443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DN2UYp%2BpM3eIBQwTOmoPUqu09de390JLCXVqYSWRyMvu8JLgUpMDSsOtx7OUHFTYRJV16TyYGgXEg5oFciZxqhe8GdLCx9qQ1FaRx14Afp0d50dXqXsk1g%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34ddc00d294-FRA
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 2606:4700:440a::ac40:98f1:80 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DnseCq1h9NYadszMebMI8%2Ffl3fyQAGF066iA8urLcVk8k0FVmOatxN8h8WdVMPuT9kY4ujSBBy85rwJWAbC%2Fv%2BShHQG9CVMWtBHQ8djwp0ikQqTnsYgBSw%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d7bf2362f-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 104.18.35.15:443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=guW3JDgCdhzaylgtNWIDCyD%2FAlu0E913BuDA4NGV%2B8hadszopv4qO9h3YlGHrl1D4yuvI7JBX6OirWNWys%2Fb0XQyN8Vo%2BqltPzDNdQ%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d4b3a0ea0-AMS
    alt-svc: h3=":443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 104.18.35.15:8443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Bp04eKm3%2FjLoPKoL%2F8dD954igSvb%2FJBQvS0l4yLzBFzFnzVNPsmWJkYhoWqP1JZmh2ElB4FCvC04dolLKerCUSEHsrhwZ0taQtcnPA%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d4c56d289-FRA
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 2606:4700:440a::ac40:98f1:443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Server-Timing: cfEdge;dur=92,cfOrigin;dur=0
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JylMjUk8KAs64E1kMXht4CI38wE5yTEoonnlGH3XE1J3GJ8x0liuclUuvWRtoFoTTWzm%2Bv1j3SjFnY6AK0ZtVtmFJFKGp27ABFmT%2BBKT%2Bebz9mS3tv2Aiw%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d5b0fd9fb-EWR
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 2a06:98c1:3105::6812:230f:8443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Server-Timing: cfEdge;dur=22,cfOrigin;dur=0
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=hLXnBhLNpTF9WGZQzgZ75sLaXAZVxATpMgNqvcPq14fv9cHTj40DGcCWSmbs9vF25xS%2FiQdSb4SQ3J3It2dpN3Aonqdmqo3iC1JBdqHFnSZ3n6fKC%2FA%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d4932c337-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 2a06:98c1:3105::6812:230f:443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WBINHjVmFoaQqNkV9khUs01bhdExSswV1Cc8q6GzDc2jUg50ytVa9%2BozjW%2FOJNJ9igUOgVufqB6KvUM4lrXasRDiVOcP9FsadTnw87VPHujLyL5GFctehg%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d39f80b27-LHR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 172.64.152.241:80 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JZ4qlrqDe8593qSHZXCaOwQliHgFHc5rN6%2BYkYI2Gv05QL1q9TeMcv62GS193S%2FCo8pmhIisrhtiRV%2Bo8BIXSrYMK1%2Fky%2FC3fHli4A%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d08f4d25e-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 172.64.152.241:8443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=thnFEQ%2Fzk4VBdUeGv92SYA9F1IRoNH6GD6XtLrhmY1fNaKPCPc6XtNI9xKbvIFxoOPhxZP2Sjw0abiiPOjYgNgOiEfC8TAQwsCiVIQ%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d1d41ccf4-LHR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 104.18.35.15:80 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=xw2OfNLEV%2FKN2Rq0hoSA88m8z1uD07A9CpPLeaNgQYo6xcoW7%2Fidpdki5qh9hFSyySb3COKRwWdK4VFMj%2FuJjusHOBGNRnMDVRz%2F4w%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34d2e917f0d-LHR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
  • Open service 172.64.152.241:443 · wy.iosos.net

    2026-01-05 02:45

    HTTP/1.1 200 OK
    Date: Mon, 05 Jan 2026 02:45:09 GMT
    Content-Type: text/html
    Content-Length: 122752
    Connection: close
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2B7Jw42OKPu22J3M%2Fw1VtcIWzHpmHKt%2Fk%2FyyZnA74LmoYnaJia%2BxCDdufqdtDq7RbSXHVOLgNrWkn%2F20KUuGEalJjdv401%2FmkaBY%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9b8fa34ce865699b-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: Card Tab
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Card Tab</title>
        <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>⭐</text></svg>">
        <style>
        /* 全局样式 */
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f6f2; /* 米白色背景 */
            color: #222; /* 深灰字体 */
            transition: all 0.3s ease;
        }
    
        /* 暗色模式样式 */
        body.dark-theme {
            background-color: #121418; /* 更深的背景色 */
            color: #e3e3e3;
        }
    
        /* 固定元素样式 */
        .fixed-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #f8f6f2; /* 与整体背景一致 */
            z-index: 1000;
            padding: 10px;
            transition: all 0.3s ease;
            height: 150px;
            box-shadow: none; /* 移除阴影 */
        }
    
        body.dark-theme .fixed-elements {
            background-color: #121418; /* 与暗色主题背景完全一致 */
            box-shadow: none; /* 移除阴影 */
        }
    
        /* 分类快捷按钮容器样式移至搜索栏内 */
    
        .category-button {
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #f9fafb;
            color: #43b883;
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            flex: 0 0 auto;
            white-space: nowrap;
            margin: 0 2px;
            position: relative;
            overflow: hidden;
        }
    
        body.dark-theme .category-button {
            background-color: #2a2e38;
            color: #5d7fb9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    
        .category-button:hover {
            background-color: #43b883;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
        }
    
        /* 分类按钮选中效果 */
        .category-button.active {
            background-color: #43b883;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
            font-weight: 600;
            border-bottom: 2px solid #35a674;
        }
    
        body.dark-theme .category-button:hover,
        body.dark-theme .category-button.active {
            background-color: #5d7fb9;
            color: white;
        }
    
        /* 分类按钮悬停样式 */
    
        .fixed-elements h3 {
            position: absolute;
            top: 10px;
            left: 20px;
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: #222;
            transition: all 0.3s ease;
        }
    
        body.dark-theme .fixed-elements h3 {
            color: #e3e3e3;
        }
    
        /* 一言模块样式 */
        #hitokoto {
            margin: 5px 0 15px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
        }
    
        #hitokoto a {
            color: #43b883;
            text-decoration: none;
            transition: all 0.3s ease;
        }
    
        #hitokoto a:hover {
            color: #35a674;
        }
    
        body.dark-theme #hitokoto {
            color: #a0a0a0;
        }
    
        body.dark-theme #hitokoto a {
            color: #5d7fb9;
        }
    
        /* 中心内容样式 */
        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: none; /* 不限制最大宽度,使分类按钮有更多空间 */
            text-align: center;
            padding: 0 10px; /* 添加左右内边距 */
        }
    
        /* 右上角控制区域样式 */
        .top-right-controls {
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: cente
    Found 2026-01-05 by HttpPlugin
    Create report
iosos.netwy.iosos.net
CN:
iosos.net
Key:
ECDSA-256
Issuer:
WE1
Not before:
2026-01-05 01:44
Not after:
2026-04-05 02:44