Phenomenon C-143-“感官偏移”
: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 }


现象编号 C-143

等级 未定

分类:未定

区域:全域

形式:认知偏差


描述:
Phenomenon C-143为一种分布于多个层级的感知异常现象,暂命名为“感官偏移”。根据自述,该现象表现为知觉的局部或整体性错位,多数病例呈自限性。

主要症状:
主诉感觉与刺激条件不符。示例:左下肢受到物理刺激(如刺伤)时,患者不主述疼痛,也没有任何逃避反应。无明确外部刺激的情况下,患者报告部分肢体出现虚幻性感觉痛觉,经客观检查未见相应病灶。

其他:
发作形式:散发,未见明确季节性或周期性规律。
严重程度:多数病例为轻度、短暂性发作,未报告致命性直接后果。
发病机制:未明。尚未发现明确的病原体、或结构性病变证据。

并发症与风险
主要风险在于因痛觉错位或缺失,导致患者未能及时识别和处理实际存在的组织损伤,进而增加感染等继发性并发症的发生概率。

处理与干预
急性期处理:目前无特异性治疗手段。鉴于该现象通常具有自限性,建议采取观察等待策略,重点在于对已确认的实体损伤进行常规外科处理(清创、止血、包扎等),并密切监测症状变化。

备注:本报告基于现有观察资料整理,所有结论待进一步系统研究验证。

Shirley

{$image-url}

你写的这些根本没法往上交。

{$reply-name}:{$reply-content}

{$image-url}

新人总是拿学校里那一套来干活。

{$reply-name}:{$reply-content}

{$image-url}

额,所以问题具体是?

{$reply-name}:{$reply-content}

{$image-url}

短成啥了。实验呢?加里头啊

{$reply-name}:{$reply-content}

{$image-url}

您看?能不能帮下。

{$reply-name}:{$reply-content}

{$image-url}

排班我来,你把实验报告好好读读。写出来至少像官样文章。

{$reply-name}:{$reply-content}

{$image-url}

弱弱的问一句,这个“感官偏移”不就是幻痛吗?如果是前厅的正常生物现象不至于单独给一个页面吧。

{$reply-name}:{$reply-content}

{$image-url}

写你的去,一分钱一分货,我能质疑上级不成。这两个老登业绩不够了就来水文档,你也不是不知道。

{$reply-name}:{$reply-content}

none

我坐在位子上没动,手指还搭在键盘边缘,屏幕上光标一闪一闪的,可我一个字也敲不出去。
文件内容我自然有数,不至于骂的那么难听。我居然安安静静地听完了,没有回嘴,没有拍桌子,也算是帮凶了。


y095tg.jpg

加了一个什么某某研究所的无关论文。有什么用呢?
终于敲下最后一个句号。我靠在椅背上,长长地吐出一口气。屏幕上的滚动条拖到底,这里面至少有三分之一是废话,是那种领导:“我们做了很多工作”的填充物。
傻B的案例,无关的分析,我就往里灌了十多页的水,连我自己都不知道跟核心问题有什么关系。
明早往领导桌上一扔,他翻两下看页数够了就会点点头。那些真正有意义的部分,被我藏在无数废话中间,像是埋在面粉里的几颗葡萄干。


同圈牛马

{$image-url}

好了吗?sb领导又来催了。

{$reply-name}:{$reply-content}

{$image-url}

还好,差不多了。废话文学。

{$reply-name}:{$reply-content}

{$image-url}

管他丫的,死工资有没几个钱,看着像样就行。

{$reply-name}:{$reply-content}

长白又落雪拍了拍“同圈牛马”
同圈牛马拍了拍“长白又落雪”
{$image-url}

{$reply-name}:{$reply-content}

{$image-url}

可以。晚了,好好休息。

{$reply-name}:{$reply-content}

{$image-url}

谢谢哈,你也一样。

{$reply-name}:{$reply-content}

none


我盯着屏幕。日光灯那恼人的低鸣,手边凉透的水杯,全都退到了世界之外。我整个人从后脑勺到尾椎骨都松了下来,像一根绷了一天的琴弦终于被拧松,随意震荡,嗡嗡作响。脑子里那些句子,此刻不必再想一遍,实在令人欣慰。
然后门被敲响了,很轻,像是怕惊动什么。我没回头,只应了一声,懒得将自己从软瘫的姿势中整理出来。
“还不走?回去歇着吧,熬太晚了。”
没等我吭声,她站在我的背后,双手揉捏着我的肩膀。我不想移动,怕惊扰了这属于我的短暂的美好。
她离开之后,我重新把视线投回那个写完的文档,忽然觉得那堆凑字数的垃圾好像也没那么可憎了。这点释怀来得刚刚好,正好够我把今晚的倦意和那点暖意,一起带到睡梦里去。


同圈牛马

{$image-url}

恭喜啊,试用期过了。

{$reply-name}:{$reply-content}

{$image-url}

我们就是正式同事了。

{$reply-name}:{$reply-content}

{$image-url}

真心祝贺!希望之后工作顺利。

{$reply-name}:{$reply-content}

{$image-url}

我提交的那个报告,上面怎么说。

{$reply-name}:{$reply-content}

{$image-url}

领导呈递上去了,上面说还需要细化一下,过会领导会找你的。

{$reply-name}:{$reply-content}

{$image-url}

行,我等等。不过连这个也能进数据库M.E.G.真的就烂完了。

{$reply-name}:{$reply-content}

none



那天晚上,我听着领导喋喋不休的讲了一大堆,反正就是要拿一笔经费,水一次研究,刷一点业绩。 于是第二天我把经费申请报告交了上去。

来自生理与病理研究中心


关于Phenomenon C-143“感官偏移”的进一步研究建议及经费申请报告

我方于前期调研中,已初步完成对Phenomenon C-143的描述及临床特征记录。然而,当前研究存在明显局限:其一,样本量有限,缺乏跨层级、跨人群的数据采集;其二,发病机制仅停留在推测阶段,具有不可复现性。
基于上述不足,我方认为,有必要启动Phenomenon C-143的二期深入研究,以填补认知空白,并为潜在的风险提供科学依据。

本次研究拟围绕以下几个维度展开:
1. 时空人群特征:在不少于十五个层级中设立监测点,采集发作频率、持续时间、发作人群等定量数据。
2. 神经机制探索:对受试者在现象发作期间的大脑皮层活动进行实时监测。
3. 个体易感性筛查:结合心理测评量与生物学指标,,构建易感人群的预测模型,为高风险个体的提前识别与防护提供依据。

预期成果与应用价值
该研究成果将直接服务于层级内人员的健康保障,降低因知觉错位导致的二次伤害及并发症风险,同时为后续偏移相关现象的研究奠定方法学基础。

四、经费预算概要
申请金额:50w
具体金额明细及分项测算见附件《预算明细表》。

如蒙批准,我方将严格按照预算管理制度执行,并定期提交进展报告及阶段性成果。盼予审议。


申请单位:M.E.G.生理学与病理学部
申请日期:2024.5.8
项目负责人:Shirley

同圈牛马

{$image-url}

50w到我们手里能剩多少?

{$reply-name}:{$reply-content}

{$image-url}

呵呵。谁说的准呢?

{$reply-name}:{$reply-content}

{$image-url}

反正有钱了,今天晚上吃点好的。

{$reply-name}:{$reply-content}

{$image-url}

是啊。碌碌无为,逍遥自在。

{$reply-name}:{$reply-content}

none


这样又过了两三个月,组里的其他同事,已经从各个层级里,采集到了足够的患者样本。
说来也是奇怪,这段时间这种病例的报告越来越多了,短短两个月已经占了立项以来量的60%了,可能是参与调查有奖金的缘故吧。
又到要忙起来的时候了,不知道和她下一次喝酒是什么时候。


同圈牛马

igyrfn.jpg
{$image-url}

你看看这些流行病学图,数据很奇怪?

{$reply-name}:{$reply-content}

{$image-url}

为什么这病例都是成对的出现呢?

{$reply-name}:{$reply-content}

{$image-url}

或许是巧合吧,或者传染性啥的。

{$reply-name}:{$reply-content}

{$image-url}

不,如果是正常的传染病的话,边上一大片肯定都会感染。但是你看这个, 他们都是情侣,而且必然是其中一个莫名失去了疼痛,另一个莫名多出来了疼痛。

{$reply-name}:{$reply-content}

{$image-url}

但是我们也没有证据,不好上报不是吗?你在报告的最后写句得了,反正这东西也是拿来水业绩的。

{$reply-name}:{$reply-content}

none


又过了两天,报告终于完成了,她也终于答应和我再出去玩玩。可能是因为我性格古怪的原因吧,她是我在新的生活里唯一的朋友。
生活和工作就这么平淡的推进了下去,我把永远也归不完的档案塞进编号混乱的柜子,她跟永远也对不齐的数字较劲。
同事们聊天的喧嚣从来与我无关,她却一直和我说话,我们把心完全交给了对方,在后室这样一个充满不确定性的环境里,她成了我唯一的确定性。尽管我坐在狭小的格子间里,心里却和她共用一片辽阔的平原。
她会和我一起笑,一起恼,一起承诺陪对方一辈子,成为彼此的唯一。
谁说后室生活难过了,我可看太棒了。




这个项目就这么以50万经费被我们和同事花完收场(其实到我们手里的远远没有50万,大概少个0?)。我以为我永远不会再见到它了。


直到那一天


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