未经证实的层级
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }

这是我在后室旅行的第多少个层级来着?我记不清了,不过这些无用的信息记住了也无多大用处,我只需要把这里的景象刻在我的脑子里,享受这场旅行便是了。

老实说我最讨厌的就是写文章的开头了,每一次都得把我介绍了千万次的个人信息复刻一遍,美其名曰“方便确认写作者”,算了管他的,不过就是复制粘贴一遍的事。

我是M.E.G.罗经点的荣誉探员,没有编号,因为我不是正式工,只不过拿了个名号方便公款旅行,说出来也不是什么要紧的事,毕竟这六个月里发现的新层级,起码有40%是我发现的,他们也不敢拿我怎么样。

你说六个月之前的事?那个时候我正在前厅一处很知名的高原地区探索,在攀登那里最高的雪山时,我设置的固定锚点因为冰川融化松动了…

然后,我就出现在了这个世界。

废话说的够多了,你只需要知道我在前厅时便是世界著名的旅行家,那么,现在就让我把这次勘探当成一次崭新的旅行吧。










一堆电瓶车,是前厅常见的款式,这种电瓶车应该可以通过扫描二维码来开启,让我试试…

果然管用,幸好我的手机一直留着,要不然靠M.E.G配发的那种没有摄像头的终端我可真不知道该怎么办。

上路了,还有34%的电量,不知道能支持我到哪里。

IMG20251121193057.jpg

零散的车兽驶过我身旁,除此之外别无他物


我本想在路中间拍一张的,但为了避免惹恼了车兽或是别的什么原因还是放弃了。

道路很宽,至少得有几十米,左边是延绵不断难以攀越的山崖,右边也会偶尔出现一些土坡,但更多时候是看不到底的悬崖,当然,也可能是因为太暗了,毕竟这个层级昏暗到我无法看清路灯照明以外的任何地方,连天上的星辰与月亮都不见踪影,当然,那只是因为云太多了。

路上的车辆少得可怜,但不会出现除我以外空无一物的场景,车兽的攻击欲望并不强烈,因为有好几次它们都与我擦肩而过,甚至其中一次因为我一边骑行一边打字差点直直镶在一辆货车的保险杠上,要不是它主动避让我今天真得栽在这了。

有时会出现几辆行驶在路上的电瓶或摩托车,车上有疑似无面灵的实体正在驾驶,大多数的实体面部被头盔掩盖,但少数露出面部的实体却呈现出清晰的面部特征,而且能够与我流畅的交流,不过我敢肯定他们一定不是其他流浪者,因为与我交谈的所有个体都对我所讲述的“层级出口”与“人类聚集地”感到困惑并露出一副“这家伙在说什么呢”的表情,有几个甚至当着我的面肆无忌惮地指着我的鼻子骂到“神经病啊你”,我很生气,毕竟与其被这些类人生物羞辱还不如让我被几只猎犬大卸八块,当然我希望这种场景这辈子都别让我遇到,总之我不会再和这些生物交流一句话了。

路边很暗,我很担心那里会跳出来一张鬼脸来把我从疾驰的车上创下去(当然我所驾驶的这辆电瓶车最高时速只有25公里),不过后来我经历的事情证明了我只不过是杞人忧天罢了。

%E6%98%8F%E6%9A%97%E7%9A%84%E5%B0%8F%E9%81%93

最终,还是没电了


老实说,在我彻底确认这个层级没有笑魇这类畏光实体之前我相当抗拒在这条昏暗的人行道上行走,我甚至想过在大马路上步行,当然,最后我还是踏上了这条小道,不过步行了大约3个小时之后我仍然平安无事,总算是把心底里那块石头放了下去,我走的是右侧行道,偶尔会路过一些被彩钢板或铁网围上的田地,或多或少种植着些类似莓果的作物,我栽了一些长出铁网外的红色莓果用作补给,翻进去很容易,但为了避免惊扰什么特殊实体嘛…

这些红色的莓果吃起来不错,酸甜口的,而且汁水很足,我以前在前厅好像吃过类似的,叫什么来着?哦对了,草莓,如果我能活着离开这里,我要把这些看起来像草莓的果实用我的名字命名1,然后高价卖给那些官老爷们,毕竟这种小东西可不常见,至少我在后室从未见过。

终于,又找着了一辆电瓶车,这次的运气不错,满电的,继续上路吧,不过我都在路上走了这么远了,根本看不见头…虽说这种情况在后室很正常就是了。

以及,在一个种植园的铁网外有一个水箱,我本想靠这个水箱补充一点杏仁水的,但你猜怎么着?这里面流出来的是淡水!我早就受不了杏仁水那股怪味了,我把身上的杏仁水瓶全都倒光并灌上了满满的淡水,当然我觉得这或许会是我做过的做错误的决定,毕竟淡水泼到实体脸上可不能把他们吓跑。

另外还有一点我早就该说的,这里可真他妈冷啊,在原地不动的时候到还行,但一旦启动电瓶车,冷空气就会像冰刀子一样把我裸在外边的手指刺的发抖,虽然比起那些极端层级的极端环境来说这里的温度算不上什么,甚至说的上是“柔和”,但要是长时间这样冻下去我迟早得把手指砍掉。

%E5%A2%99%E5%90%8E%E7%9A%84%E5%B7%A5%E5%9C%B0

建筑工地,似乎刚刚停工


左边出现了一连串的彩钢板,彩钢板后似乎是一个建筑工地,塔吊上的灯还亮着,不过塔吊本身早就停下了,灯光倒是让我能够很清楚的看到建筑物,不过我这破手机嘛,就一言难尽了。

这或许是个预兆,也许我离层级出口已经不远了,当然也可能是某个类似城镇的实体社区,兴许能在那里找到同伴,这几个小时的独自骑行已经让我有些烦躁了,虽说对于我这种常年漂泊在外的人而言这只不过是日常罢了。

右侧的天边似乎逐渐发亮了,难道是太阳马上就要升起了?我原本一直以为这里是永夜的呢,不过也好,我真想看看这个层级白天时的样子,拍上几张照片,让冻僵的双手晒晒太阳,如果环境宜人,我可能还会考虑在这扎营,度上几天假期,兴许还能借助光亮尝试翻山下崖,看看山后崖底的世界,我真的激动极了,在别的层级时总是被莫名的空气墙或者无聊的相同环境阻碍,索然无味,但这种自然开放式层级拥有的可能是无限的,我可以往山里或平原上无限探索而不被囚禁在这千篇一律的马路上。

这就是我热爱旅行的原因,用双脚丈量世界,自前厅时便是,对于黑暗中那被掩盖的无尽世界,我已经按耐不住自己的心,太阳快升起吧!就是现在,不要让我多等了。

%E8%BF%9C%E6%96%B9%E7%9A%84%E5%9F%8E%E5%B8%82

远方的城市,不是我希望看见的


太阳没有升起,只不过是电灯虚假的光明,我不得不承认这个拥有无限可能的世界是一个被黑暗锁住的牢笼,不过,夜景也是值得细细品味的美丽,我不是没有过前往那座城市的想法,悬崖还是让我望而却步了,那么,就这样结束吧,我该回家了。

手表上的时间自我切入以来,正好12个小时,我没有耐心多等了。

%E4%BB%A4%E4%BA%BA%E4%B8%8D%E5%AE%89%E7%9A%84%E8%8D%89%E5%9C%B0

令人不安的草地,我再熟悉不过


非常适合的切行点位,我该走了,哦不对,随机刷新的切入点带入的物品有限,我想想要丢些什么东西呢…淡水?还是水果?靠,别…我手机…
































































































“你们确认这是我儿的手机吗…”








通过相册与通话记录显示,确实是您孩子的手机,以及摄像头画面显示,手机持有者与您所描述的失踪者高度相似,可以确认为他本人。







“所以…能找到他吗…”







很遗憾,我们赶过去时只在他最后出现的位置发现了这部手机与几瓶河水,而那个地方正好是摄像头盲区,很可惜,他消失时距离天亮仅剩15分钟,如果天明了也许可以更清楚地观察到他的动向。







而且,看他的衣物,估计在这天气底下活下来的机会不是很高…







(中年女人的抽泣声)







请不要激动,女士,他毕竟也是个有名的资深野外旅行家,这么冷的天气很可能会生火取暖,在平原地区生火造成的烟雾非常有利于我们进行搜查。







并且您的孩子与之前几十起未破失踪案高度相似,也许这会成为这起案件的突破口,我们绝不会放过这次机会…
















评分: +42+x
除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License