首页:修订间差异

来自SOKA CAFE
第1行: 第1行:
<div style="font-size: 26px;margin-top: 0px;text-align: center;font-family: {{{字体|serif}}}">'''欢迎来到「SOKA CAFE——エア本中文维基」'''</div>
<div style="width: 100%; max-width: 800px; margin: 0 auto !important; text-align: center; padding: 0 15px; box-sizing: border-box;">
<div style="font-size: 18px;margin-bottom: 15px;text-align: center;margin-top: 10px">''頭がパーン@wiki:中華エア本支部''</div>
    <div style="display: flex; align-items: center; justify-content: center; gap: 20px; font-family: {{{字体|serif}}}; width: 100%;">
----
        <div style="background: none; border: none; flex-shrink: 0;">
<div style="margin-top: 30px"></div>
            [[文件:Soka Cafe Favicon.png|100x100px|无框|居中]]
        </div>
        <div style="text-align: center;">
            <div style="font-size: min(5vw, 26px); font-weight: bold; margin-top: 20px; font-family: serif;">''' — SOKA CAFE —「エア本中文维基」'''</div>
    {{折叠
    |数=1
    |展开= <div style="font-size: min(2.7vw, 18px); font-style: italic; margin-top: 10px; text-align: center; margin-bottom: 15px; font-family: serif;">''頭がパーン@wiki:中華エア本支部'' ▼</div></div></div></div>
    |收回= <div style="font-size: min(2.7vw, 18px); font-style: italic; margin-top: 10px; text-align: center; margin-bottom: 15px; font-family: serif;">''頭がパーン@wiki:中華エア本支部''  ▲</div></div></div></div>
    |内容=
<div class="mini-block" style="font-size: min(3.5vw, 18px); font-family: serif; padding: 0 10px;">
[[文件:2024080910430571.png|220x220px|无框|右|link=柴田理惠]]
[[文件:2024080910430571.png|220x220px|无框|右|link=柴田理惠]]
[[文件:20240722_111408.png|220x220px|无框|左|link=久本雅美]]
[[文件:20240722_111408.png|220x220px|无框|左|link=久本雅美]]
第10行: 第19行:
<div style="margin-top: 10px">'''◆ 本站点仅记录和展示由创价学会及相关人物衍生出的亚文化,非正式宗教维基,请注意!'''</div>
<div style="margin-top: 10px">'''◆ 本站点仅记录和展示由创价学会及相关人物衍生出的亚文化,非正式宗教维基,请注意!'''</div>
<div style="margin-top: 13px;text-align: center">
<div style="margin-top: 13px;text-align: center">
「よく来たわね、いらしゃい。」<br>本站点当前已有[[Special:Newpages|{{NUMBEROFARTICLES}}]]个条目,{{NUMBEROFEDITS}}次编辑,[[Special:活跃用户|2]]个活跃成员,上传了{{NUMBEROFFILES}}个文件。
「よく来たわね、いらしゃい。」<br>当前已有[[Special:Newpages|{{NUMBEROFARTICLES}}]]个条目,{{NUMBEROFEDITS}}次编辑,[[Special:活跃用户|2]]个活跃成员,上传了{{NUMBEROFFILES}}个文件。
</div>
</div>
</div>
    }}
</div>
</div>
----
----
<div style="margin-top: 30px"></div>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>自适应轮播图</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        body {
            background: #f5f5f5;
            padding: 20px 0;
        }
       
        .header-container {
            width: 100%;
            padding: 0 20px;
            margin-bottom: 20px;
        }
       
        /* 核心布局容器:电脑端横向排列,手机端纵向排列 */
        .carousel-section {
            width: 100%;
            display: flex;
            gap: 20px;
            padding: 0 20px;
            align-items: stretch;
            justify-content: center;
        }
       
        /* 轮播容器样式 */
        .container {
            background: transparent;
            border-radius: 4px;
            padding: 0;
            box-shadow: none;
            overflow: hidden;
            margin: 0;
        }
       
        /* 右侧图片容器:电脑端纵向排列两张图 */
        .side-images-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 100%;
        }
       
        /* 右侧单张图片容器 */
        .side-image-item {
            flex: 1;
            border-radius: 4px;
            overflow: hidden;
            background: #f0f0f0;
        }
       
        .side-image-link {
            display: block;
            width: 100%;
            height: 100%;
        }
       
        .side-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
       
        /* 电脑端 */
        @media (min-width: 1025px) {
            .container {
                width: 30vw;
                max-width: none;
                min-width: auto;
            }
            .side-images-container {
                width: 35vw;
            }
            .header-container {
                padding-left: calc(50vw + 40px);
            }
        }
       
        /* 平板端 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                width: 31vw;
                max-width: none;
                min-width: auto;
            }
            .side-images-container {
                width: 31vw;
            }
            .header-container {
                padding-left: calc(50vw + 30px);
            }
        }
       
        /* 手机端 - 纵向排列 */
        @media (max-width: 768px) {
            .carousel-section {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 0;
                gap: 15px;
            }
            .container {
                width: 92vw;
                max-width: 300px;
                margin: 0;
            }
            .side-images-container {
                width: 92vw;
                max-width: 300px;
                gap: 15px;
            }
            .header-container {
                padding-left: 0;
                text-align: center;
            }
        }
       
        /* 小手机设备 */
        @media (max-width: 480px) {
            .container {
                width: 94vw;
                min-width: 260px;
                margin: 0;
            }
            .side-images-container {
                width: 94vw;
                min-width: 260px;
            }
        }
       
        /* 轮播核心样式 */
        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 4px;
            overflow: hidden;
        }
       
        .carousel-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
       
        .carousel-item {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
        }
       
        .carousel-link {
            display: block;
            width: 100%;
            height: 100%;
        }
       
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
       
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background: rgba(0,0,0,0.4);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
       
        .carousel-btn:hover {
            background: rgba(0,0,0,0.6);
        }
       
        .prev-btn {
            left: 12px;
        }
       
        .next-btn {
            right: 12px;
        }
       
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
       
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
       
        .indicator.active {
            background: #fff;
            transform: scale(1.2);
        }
       
        /* 平板设备按钮调整 */
        @media (max-width: 1024px) {
            .carousel-btn {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
        }
       
        /* 手机设备按钮调整 */
        @media (max-width: 768px) {
            .carousel-btn {
                width: 28px;
                height: 28px;
                font-size: 14px;
                opacity: 0.9;
            }
           
            .prev-btn {
                left: 8px;
            }
           
            .next-btn {
                right: 8px;
            }
           
            .carousel-indicators {
                bottom: 10px;
            }
           
            .indicator {
                width: 8px;
                height: 8px;
            }
        }
       
        /* 小手机设备按钮调整 */
        @media (max-width: 480px) {
            .carousel-btn {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }
           
            .prev-btn {
                left: 5px;
            }
           
            .next-btn {
                right: 5px;
            }
           
            .indicator {
                width: 6px;
                height: 6px;
            }
        }
       
        /* 标题样式 */
        .main-title {
            font-size: min(4vw, 26px);
            margin-top: 20px;
            text-align: left;
            font-family: serif;
            padding: 0 10px;
            color: #333;
        }
       
        .sub-title {
            font-size: min(3vw, 18px);
            margin-bottom: 15px;
            text-align: left;
            margin-top: 10px;
            padding: 0 10px;
            color: #666;
        }
       
        @media (max-width: 768px) {
            .main-title, .sub-title {
                text-align: center;
            }
        }
    </style>
</head>
<body>   
    <div class="carousel-section">
        <!-- 左侧:原轮播图组件 -->
        <div class="container">
            <div class="carousel" id="carousel">
                <div class="carousel-wrapper" id="carouselWrapper">
                    <div class="carousel-item">
                        <a href="https://soka.cafe/index.php?title=创学" class="carousel-link">
                            <img src="https://soka.cafe/Special:FilePath/新 解疑.png" alt="解惑">
                        </a>
                    </div>
                    <div class="carousel-item">
                        <a href="https://soka.cafe/index.php?title=维基观看与使用指南" class="carousel-link">
                            <img src="https://soka.cafe/Special:FilePath/新 导航.jpg" alt="维基观看与使用指南">
                        </a>
                    </div>
                    <div class="carousel-item">
                        <a href="https://soka.cafe/index.php?title=入站须知" class="carousel-link">
                            <img src="https://soka.cafe/Special:FilePath/新 条责.jpg" alt="入站须知">
                        </a>
                    </div>
                </div>
                <button class="carousel-btn prev-btn" id="prevBtn">&lt;</button>
                <button class="carousel-btn next-btn" id="nextBtn">&gt;</button>
                <div class="carousel-indicators" id="indicators"></div>
            </div>
        </div>
 
        <div class="side-images-container">
            <div class="side-image-item">
            <div class="side-image-item">
                <a href="https://soka.cafe/index.php?title=历史上的今月" class="side-image-link">
                    <img src="https://soka.cafe/Special:FilePath/历史.jpg" alt="历史">
                </a>
            </div>
            <br>
                <a href="https://soka.cafe/index.php?title=活动公告" class="side-image-link">
                    <img src="https://soka.cafe/Special:FilePath/公告.jpg" alt="公告">
                </a>
            </div>
        </div>
    </div>
 
<script>
    const carouselWrapper = document.getElementById("carouselWrapper");
    const prevBtn = document.getElementById("prevBtn");
    const nextBtn = document.getElementById("nextBtn");
    const indicators = document.getElementById("indicators");
    const carouselItems = document.querySelectorAll(".carousel-item");
    const itemCount = carouselItems.length;
    let currentIndex = 0;
 
    function renderIndicators() {
        indicators.innerHTML = "";
        for (let i = 0; i < itemCount; i++) {
            const indicator = document.createElement("div");
            indicator.className = `indicator ${i === currentIndex ? "active" : ""}`;
            indicator.addEventListener("click", () => goToSlide(i));
            indicators.appendChild(indicator);
        }
    }
 
    function goToSlide(index) {
        currentIndex = index;
        carouselWrapper.style.transform = `translateX(-${currentIndex * 100}%)`;
        renderIndicators();
    }
 
    function prevSlide() {
        currentIndex = (currentIndex - 1 + itemCount) % itemCount;
        goToSlide(currentIndex);
    }
 
    function nextSlide() {
        currentIndex = (currentIndex + 1) % itemCount;
        goToSlide(currentIndex);
    }
 
    let autoPlay = setInterval(nextSlide, 5000);
    const carousel = document.getElementById("carousel");
   
    // 鼠标悬停时暂停自动播放
    carousel.addEventListener("mouseenter", () => clearInterval(autoPlay));
    carousel.addEventListener("mouseleave", () => {
        clearInterval(autoPlay);
        autoPlay = setInterval(nextSlide, 5000);
    });
   
    // 触摸设备支持
    let startX = 0;
    let endX = 0;
   
    carousel.addEventListener("touchstart", (e) => {
        startX = e.touches[0].clientX;
        clearInterval(autoPlay);
    });
   
    carousel.addEventListener("touchend", (e) => {
        endX = e.changedTouches[0].clientX;
        if (startX - endX > 50) {
            nextSlide(); // 向左滑动
        } else if (endX - startX > 50) {
            prevSlide(); // 向右滑动
        }
        autoPlay = setInterval(nextSlide, 5000);
    });
 
    prevBtn.addEventListener("click", prevSlide);
    nextBtn.addEventListener("click", nextSlide);
   
    // 初始化
    renderIndicators();
   
    // 窗口大小变化时重新计算
    window.addEventListener("resize", () => {
        goToSlide(currentIndex);
    });
   
    // 预加载所有图片(含轮播图和右侧图片)
    window.addEventListener('load', () => {
        const images = document.querySelectorAll('.carousel-item img, .side-image-item img');
        images.forEach(img => {
            if (img.complete) {
                img.style.opacity = '1';
            } else {
                img.style.opacity = '0';
                img.onload = () => {
                    img.style.opacity = '1';
                };
            }
        });
    });
</script>
</body>
</html>
<div style="margin-top: 30px">
[[文件:萌新引导.png|330x330px|无框|左|link=森雅晴]]
[[文件:萌新引导.png|330x330px|无框|左|link=森雅晴]]
<div class="mini-block-container mini-block-list">
[[文件:解惑.jpg|无框|居中|270x270px|link=创学]]
[[文件:导航1.1.jpg|无框|居中|270x270px|link=维基观看与使用指南]]
[[文件:条责.jpg|无框|居中|270x270px|link=入站须知]]
</div>
<div style="margin-top: 30px"></div>
[[文件:内容导航.png|330x330px|无框|左|link=元气安]]
<div class="mini-block-container mini-block-list">
<div class="mini-block-container mini-block-list">
<div class="mini-block">
<div class="mini-block">
<div style="font-size: 50px; font-weight: 200; text-align: right; height: 0; color: #f1f1f1; user-select: none; margin-bottom: 0">Archive</div>
<div style="font-size: 50px; font-weight: 200; text-align: right; height: 0; color: #f1f1f1; user-select: none; margin-bottom: 0">Archive</div>
<div style="font-family:Huiwen;margin-bottom: 15px"><big><big>📚 研讨资料</big></big></div>
<div style="font-family:Huiwen;margin-bottom: 15px"><big><big>📚 现实资料与档案</big></big></div>
<div id="left-column">
<div id="left-column">
<li class="mdui-ripple">[[文件:Home1.png|无框|133x133px|link=分类:人物图鉴]]</li>
<li class="mdui-ripple">[[文件:Home1.png|无框|133x133px|link=分类:人物图鉴]]</li>
第42行: 第500行:
<div class="mini-block">
<div class="mini-block">
<div style="font-size: 50px; font-weight: 200; text-align: right; height: 0; color: #f1f1f1; user-select: none; margin-bottom: 0">Creation</div>
<div style="font-size: 50px; font-weight: 200; text-align: right; height: 0; color: #f1f1f1; user-select: none; margin-bottom: 0">Creation</div>
<div style="font-family:Huiwen;margin-bottom: 15px><big><big>🪶 二创宣导</big></big></div>
<div style="font-family:Huiwen;margin-bottom: 15px><big><big>🪶 二创设定与术语</big></big></div>
<div id="left-column">
<div id="left-column">
<li class="mdui-ripple">[[文件:Home6.png|无框|133x133像素|link=分类:词典概念]]</li>
<li class="mdui-ripple">[[文件:Home6.png|无框|133x133像素|link=分类:词典概念]]</li>
第169行: 第627行:
</div><noinclude>
</div><noinclude>
}}
}}
|-|🕗 报时=
|-|🕗 报时=
<div style="margin: 1.5em 0;"></div>
<div style="margin: 1.5em 0;"></div>
[[文件:首页头图2.png|95x95px|无框|居中]]
[[文件:首页头图2.png|95x95px|无框|居中]]
   <div style="text-align: center;padding: 10px 13px;font-family: serif; color: #333; font-size: 13px; transform; background: #F0FFF0; border-radius: 100px; border-left: 8px solid #3CB371; border-right: 8px solid #3CB371; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); line-height: 1.6; flex-direction: column; justify-content: center; align-items: center"><span style="font-weight: bold; color: #000; width: 1800px; box-shadow: 10 14px 12px rgba(10, 10, 10, 0.1)">'''20{{#time:y|+8hour}}年{{#time:m|+8hour}}月{{#time:d|+8hour}}日<span style="margin: 0 4px;">|</span>{{#time:H:i | now + 8 hour}}<span style="color:transparent">, </span>{{#switch: {{#time:w|+8hour}}|  0 = 周日 |  1 = 周一 |  2 = 周二 |  3 = 周三 |  4 = 周四 |  5 = 周五 |  6 = 周六}}'''
   <div style="text-align: center;padding: 10px 13px;font-family: serif; color: #333; font-size: 13px; transform; background: #F0FFF0; border-radius: 100px; border-left: 8px solid #3CB371; border-right: 8px solid #3CB371; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); line-height: 1.6; flex-direction: column; justify-content: center; align-items: center"><span style="font-weight: bold; color: #000; width: 1800px; box-shadow: 10 14px 12px rgba(10, 10, 10, 0.1)">'''20{{#time:y|+8hour}}年{{#time:m|+8hour}}月{{#time:d|+8hour}}日<span style="margin: 0 4px;">|</span>{{#time:H:i | now + 8 hour}}<span style="color:transparent">, </span>{{#switch: {{#time:w|+8hour}}|  0 = 周日 |  1 = 周一 |  2 = 周二 |  3 = 周三 |  4 = 周四 |  5 = 周五 |  6 = 周六}}'''
|-|🔊 公告=
<div style="font-size:14px;padding: 0.1em 0em"><li class="mdui-ripple">'''[[SCFII|<span style="color:green;">● [情报]</span> 《宗教都市祭II》发布!]]'''</li>
<div style="font-size:14px;padding: 0.1em 0em"><li class="mdui-ripple">'''[[【合作告知】宗教再生启示录 ~ Re:Creation Revelation《宗教都市祭II》|<span style="color:green;">● [情报]</span> 《宗教都市祭II》开催!]]'''</li>
<div style="font-size:14px;padding: 0.1em 0em"><li class="mdui-ripple">'''[[【合作】宗教都市祭 ~ Shukyo City Festival|<span style="color:green;">● [情报]</span>《宗教都市祭》发布!]]'''</li>
<div style="font-size:11px;padding: 0.2em 0em;text-align: right">'''[[活动公告|[再探再报!]]]'''</li>
|-|🎂 庆生=
|-|🎂 庆生=
{{#switch: {{#time:m|+8hour}}
{{#switch: {{#time:m|+8hour}}
第189行: 第638行:
<div></div>
<div></div>
<div class="image-group">
<div class="image-group">
[[文件:1.2.jpg|97x97px|无框|link=池田大作]]<br><big>· 1月2日 ·</big></div>
[[文件:1.2.jpg|97x97px|无框|link=池田大作|居中]]<big>· 1月02日 ·</big></div>
<div class="image-group">
<div class="image-group">
[[文件:1.14.jpg|97x97px|无框|link=柴田理惠]]<br><big>· 1月14日 ·</big></div>
[[文件:1.14.jpg|97x97px|无框|link=柴田理惠|居中]]<big>· 1月14日 ·</big></div>
<div class="image-group">
<div class="image-group">
<div></div>
<div></div>
第206行: 第655行:
<div></div>
<div></div>
<div class="image-group">
<div class="image-group">
[[文件:3.6.jpg|97x97px|无框|link=田中健]]<br><big>· 3月6日 ·</big></div>
[[文件:3.6.jpg|97x97px|无框|link=田中健]]<br><big>3月06日</big></div>
<div class="image-group">
<div class="image-group">
[[文件:3.20.jpg|97x97px|无框|link=雪村泉]]<br><big>· 3月20日 ·</big></div>
[[文件:3.20.jpg|97x97px|无框|link=雪村泉]]<br><big>3月20日</big></div>
<div class="image-group">
<div class="image-group">
[[文件:3.22.jpg|97x97px|无框|link=大野俊三]]<br><big>· 3月22日 ·</big></div>
[[文件:3.22.jpg|97x97px|无框|link=大野俊三]]<br><big>3月22日</big></div>
<div></div>
<div></div>
  |  4 =
  |  4 =
<big>'''😳 本月尚无生日人员'''</big>
<big>'''🎉 本月尚无生日人员'''</big>
  |  5 =   
  |  5 =   
<big>'''🎉 本月生日的人员'''</big>
<big>'''🎉 本月生日的人员'''</big>
第228行: 第677行:
<div></div>
<div></div>
<div class="image-group">
<div class="image-group">
[[文件:6.9.jpg|97x97px|无框|link=元气安]]<br><big>· 6月9日 ·</big></div>
[[文件:6.9.jpg|97x97px|无框|link=元气安]]<br><big>· 6月09日 ·</big></div>
<div class="image-group">
<div class="image-group">
[[文件:6.13.jpg|97x97px|无框|link=阿尔伯特·城间]]<br><big>· 6月13日 ·</big></div>
[[文件:6.13.jpg|97x97px|无框|link=阿尔伯特·城间]]<br><big>· 6月13日 ·</big></div>
第239行: 第688行:
<div></div>
<div></div>
<div class="image-group">
<div class="image-group">
[[文件:7.1.jpg|97x97px|无框|link=森雅晴]]<br><big>· 7月1日 ·</big></div>
[[文件:7.1.jpg|97x97px|无框|link=森雅晴]]<br><big>· 7月01日 ·</big></div>
<div class="image-group">
<div class="image-group">
[[文件:7.9.jpg|97x97px|无框|link=久本雅美]]<br><big>· 7月9日 ·</big></div>
[[文件:7.9.jpg|97x97px|无框|link=久本雅美]]<br><big>· 7月09日 ·</big></div>
<div class="image-group">
<div class="image-group">
[[文件:7.23.jpg|97x97px|无框|link=堀江一真]]<br><big>· 7月23日 ·</big></div>
[[文件:7.23.jpg|97x97px|无框|link=堀江一真]]<br><big>· 7月23日 ·</big></div>
第262行: 第711行:
<div></div>
<div></div>
  |  10 =  
  |  10 =  
<big>'''😳 本月尚无生日人员'''</big>
<big>'''🎉 本月尚无生日人员'''</big>
  |  11 =  
  |  11 =  
<big>'''😳 本月尚无生日人员'''</big>
<big>'''🎉 本月尚无生日人员'''</big>
  |  12 =  
  |  12 =  
<big>'''🎉 本月生日的人员'''</big>
<big>'''🎉 本月生日的人员'''</big>
第280行: 第729行:
</div>
</div>
<div style="margin-top: 25px"></div>
<div style="margin-top: 25px"></div>
[[文件:猜你想找.png|330x330px|无框|左|link=古贺清]]
[[文件:内容导航.png|330x330px|无框|左|link=元气安]]
<div class="mini-block-container mini-block-list">
<div class="mini-block-container mini-block-list">
<div class="mini-block">
<div class="mini-block">
第292行: 第741行:
[https://soka.cafe/高等精神病 “创价精神污染”是怎么个事?]<br>
[https://soka.cafe/高等精神病 “创价精神污染”是怎么个事?]<br>
[https://soka.cafe/五位数 “五位数”是啥?为何颇具争议?]<br>
[https://soka.cafe/五位数 “五位数”是啥?为何颇具争议?]<br>
[[文件:2024080911193815.png|100x100px|无框|居中|link=石川]]
</div>
</div>
<div class="mini-block">
<div class="mini-block">
<div style="font-size: 50px; font-weight: 200; text-align: right; height: 0; color: #f1f1f1; user-select: none; margin-bottom: 0">Create Page</div>
<div style="font-size: 50px; font-weight: 200; text-align: right; height: 0; color: #f1f1f1; user-select: none; margin-bottom: 0">Create</div>
<div style="font-family:Huiwen;margin-bottom: 15px">
<div style="font-family:Huiwen;margin-bottom: 15px">
<big><big>💻 创建页面</big></big>
<big><big>💻 创建页面</big></big>
第310行: 第758行:
</div>
</div>


[https://soka.cafe/背后灵 「谁」是创价学会最神秘的男子?]<br>
[https://soka.cafe/背后灵 谁是创价学会最神秘的男子?]<br>
[https://soka.cafe/齐藤房子 「谁」对自己年龄格外敏感?]<br>
[https://soka.cafe/齐藤房子 谁对自己年龄格外地在意?]<br>
[https://soka.cafe/仓地透 「谁」被一顿饭拐进了创价学会?]
[https://soka.cafe/仓地透 谁就因一顿饭给拐进了创价学会?]
<div style="font-size:11px;margin-top: -6px;text-align: right">[[创价学会·冷知识集|[查看更多]]]'''
<div style="font-size:11px;margin-top: -6px;text-align: right">[[创价学会·冷知识集|[查看更多]]]'''
<div style="margin-top: 10px">[[文件:2024080911210830.png|100x100px|无框|居中|link=背后灵]]</div>
<div style="margin-top: 10px"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="margin-top: 25px"></div>
<div style="margin-top: 25px"></div>
[[文件:维基相关.png|330x330px|无框|左|link=齐藤房子]]
[[文件:猜你想找.png|330x330px|无框|左|link=古贺清]]
<div class="mini-block-container mini-block-list">
<div class="mini-block-container mini-block-list">
<div class="mini-block">
<div class="mini-block">
第349行: 第797行:
</div>
</div>


[https://w.atwiki.jp/atamagapan_2nd 日本创价学会Wiki]<br>
[https://tieba.baidu.com/f?kw=%E5%88%9B%E4%BB%B7%E5%AD%A6%E4%BC%9A&fr=index 百度创价学会贴吧]<br>
[https://airmoto.fandom.com/zh/wiki/%E9%A6%96%E9%A1%B5 旧创价学会中文维基]<br>
[https://w.atwiki.jp/atamagapan_2nd 创价日文Wiki]<br>
[https://w.atwiki.jp/syuzo/ 导师日文wiki]<br>
[https://liqu.miraheze.org/wiki/%E9%A6%96%E9%A1%B5 哲学中文维基]<br>
[https://gachimuchiwiki.com/index.php?title=%E9%A6%96%E9%A1%B5 旧哲学中文维基]<br>
[https://chaoshan.miraheze.org/wiki/%E9%A6%96%E9%A1%B5 潮学维基]<br>
[https://otomad-subculture.fandom.com/zh/wiki/%E9%AC%BC%E7%95%9C%E4%BA%9A%E6%96%87%E5%8C%96_Wiki?variant=zh-hans 亚文化维基]<br>
[https://otomad-subculture.fandom.com/zh/wiki/%E9%AC%BC%E7%95%9C%E4%BA%9A%E6%96%87%E5%8C%96_Wiki?variant=zh-hans 亚文化维基]<br>
[https://cookie.wiki/%E9%A6%96%E9%A1%B5 Cookie☆Wiki]<br>
[https://liqu.miraheze.org/wiki/%E9%A6%96%E9%A1%B5 新哲学维基]<br>
[https://gachimuchiwiki.com/index.php?title=%E9%A6%96%E9%A1%B5 旧哲学维基]<br>
[https://chaoshan.miraheze.org/wiki/%E9%A6%96%E9%A1%B5 潮学维基]<br>
[https://otomad.wiki/%E9%A6%96%E9%A1%B5 中文音MAD维基]<br>
[https://otomad.wiki/%E9%A6%96%E9%A1%B5 中文音MAD维基]<br>
[https://www.otomads.top OTOMAD Libraries]<br>
[https://www.otomads.top OTOMAD Libraries]<br>
第377行: 第825行:


{{背景图片|图片=1725523396682.jpg}}
{{背景图片|图片=1725523396682.jpg}}
{{#CSS:
body #mw-content-wrapper{background: none !important;}
body #mw-content{background-color: rgba(255, 255, 255, 0.6) !important;}
body #site-navigation.sidebar-chunk{background-color: rgba(255, 255, 255, 0.6) !important;}
body #site-tools.sidebar-chunk{background-color: rgba(255, 255, 255, 0.6) !important;}
body #page-tools.sidebar-chunk{background-color: rgba(255, 255, 255, 0.6) !important;}
body #catlinks-sidebar.sidebar-chunk{background-color: rgba(255, 255, 255, 0.6) !important;}
}}

2026年3月9日 (一) 15:41的版本

— SOKA CAFE —「エア本中文维基」
頭がパーン@wiki:中華エア本支部
頭がパーン@wiki:中華エア本支部

◆ 本站点是以创价学会成员为核心、以创价学会及其相关团体为线索组织,进行讨论、研究和二次创作的公益性交流论坛维基百科网站,欢迎您的到来!

◆ 本站点致力于营造和谐的社区环境,同时热烈欢迎任何人参与建设我们的网站。让我们一起共同来建设SOKA CAFE吧!
◆ 本站点仅记录和展示由创价学会及相关人物衍生出的亚文化,非正式宗教维基,请注意!

「よく来たわね、いらしゃい。」
当前已有99个条目,3,261次编辑,2个活跃成员,上传了794个文件。


自适应轮播图

Archive
📚 现实资料与档案
  • Creation
    🪶 二创设定与术语
  • Schedule
    🗓︎ 日程参照
    2026年03月09日|23:36, 周一
    🎉 本月生日的人员

    3月06日

    3月20日

    3月22日
    Create

    💻 创建页面

    感谢您对SOKA CAFE的编辑贡献!但也请在过程中务必依照创作协议及版权,遵循CC BY-SA 3.0协议!

    准备好了?来尝试创建页面吧!
     
    Notice

    ⚠️ 入站须知

    Soka Cafe一直是一个合作性、公益性的网站,我们致力于营造和谐的社区环境,并热情地欢迎任何人参与我们之间的创作,不论您的信仰、外表、地域.... 为了打造一个和谐的、无骚扰的社区环境,请通读入站须知,了解网站的性质及规则。

    Plan

    📄 任务计划

    Soka Cafe的基本底层已大体完确! 现在的最紧要的人物是登场作品分区的规范及完成度!这对创学新人入坑的帮助极其重要! 没有相关技术不要紧,请使用“可视化编辑器”来进行编辑!如果有任何技术问题请在页面下方获取我们的联系方式!