三江落雨 第一部分
: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 }

行动命令 2-3-1

目标将于明日早上7时左右离开三江界市,其时将驶过林楠大桥。
要求在林楠大桥之前的市郊交界处将其堵截并抓获。

不许击杀,只要活捉。

Anti-Crow行动总部署长 Rode Crow

天,蓝色的天。

黑色的车队从城市中疾驰而过。

Junecole琼可坐在车上,无聊的看着窗外飞驰而过的街景。

保护对象——那个叫Geion Crow的男人,听说是什么部的部长来着,正一支接一支的抽着昂贵的雪茄。而副驾驶位上的览星也在抽烟。

流磁——也就是驾驶员,熟练的穿梭在市区纵横的街道中,很久没摸过方向盘的他看上去很高兴,很快便开上了出城的路。

公路上的车渐渐变得稀少起来,直到最后——路上只剩下了这一支车队仍在行驶。还有一些车辆只是随便的停在路的两旁。

她打了个哈欠,伸了伸因为久坐而略感疲惫的腰肢,向窗外看了一眼。
也正是在此时,她的视线与街道两侧的小巷里,戴着防毒面具,全副武装的三个人对上了。

双方的视线交接片刻,她瞬间明白了接下来将会发生什么,但还没来得及打开步话机,前面便开来了一辆黑色的越野车,将首车撞开,逼迫后面的车辆紧急拐弯。
驾驶员在一瞬间之内也明白了发生了什么,将方向盘猛的向左打去,勉强维持车辆的平衡,接着向后方驶去,但尚未来得及开出距离,一辆白色的卡车便从后面疾驰而来,横向停下,拦在了道路的正中间。

一颗子弹立刻打在了玻璃上,击出一圈如同涟漪一般的裂痕。接着是第二颗,第三颗。
她没有多想便下了车,隐蔽在车轮后。而雇主先生此时早已没有心情再去品味他的雪茄,老练的蹲了下来——看上去早有准备。

前面已经响起了友方与敌方交火爆豆一般的枪声。Junecole迅速的取出了枪——一把FPS-91冲锋枪,拉开折叠枪托,向子弹袭来的方向扣下了扳机。

“很好……”她向外开了几枪后,便把车上的一个黑色旅行包拖了出来——里面装满了弹药。

而在前面,一辆车被击中了油箱,熊熊燃烧起来,其他两辆车上的人也纷纷开始还击——但看上去他们已经有了伤亡。

片刻之后,步话机里传出队友的声音:
“左翼敌人已被全部歼灭,但损失三人。”

琼可迅速拔出打空了的弹夹,丢在一边,又从包里取出新的弹夹,迅速上膛。

应该已经上报地方警方了吧……她这样想着。
但在交火五分钟后,警方却仍然没有回音。
“真是够棘手的……好不容易有一座设警的城市却不做事。”她从车后探出半身,往远处几个正试图前进的敌人打出一梭子。

对方不太像普通佣兵的样子,恰恰相反,他们很有可能接受过正规的训练。

“览星!对面是什么人!不会是常世那边的那帮疯子吧?”她往躲在另一辆车背后的人喊道。

“不知道!他们的战术不像是常世的风格。”对方立刻答道。“对方的主要火力在我们正面,但这是他们伏击时出现了失误,导致我们往前多开了一段,本来应该被三面包围的我们因为他们的失误只需要两面迎敌——现在只剩下正面的敌人了,左边的敌人被苔雨解决了不是吗?!想办法从左边撤退!”

琼可看了看左边,这是唯一一条没有被堵住的路,但是距离车队有一片无遮挡的区域。在一堆木板箱子和铁罐后,有着浅绿色头发的少女抱着一把霰弹枪靠在那里,被前面三把突击步枪压得抬不起头来。

“你觉得左边真的适合撤退吗?”“但你总得想个办法让我们能撤出去!”览星丢出一枚烟雾弹,从右翼借助烟雾的掩护跑到了这边来。
“我们仓促应战,现在还活着的应该只有你,我。苔雨在左翼,流磁本来也应该在左翼,但他现在不知道躲哪去了,前面还有林白和七苒。”
览星抽出一根香烟,点燃后吸了一口。“林白和七苒要撤出可就难了。”他半身探出掩体外,往左边开了几枪。左边的一个火力点立刻哑了一下——但马上又开始喷出火舌。“如果流磁没有死的话,我会打断他的腿。”

话音刚落,步话机再度响起:“喂喂喂…听得到吗……下水道信号好像不太好。好了,我有一个好消息和一个坏消息,你们先听哪一个?”
琼可立马对着步话机大吼起来:“你██的死哪去了?这个时候了还卖关子是吧?”

“欸你怎么急眼了…好吧,好消息是,你们看看前面的那个下水道井盖。”
一个人影从井盖里冒了出来,从井口对着那些掩体后的敌人开了几枪,然后马上钻了回去。“打掉了一个,他们应该怎么也想不到背后会有人放冷枪吧……哦,坏消息是,我发现对面那栋居民楼上面可能有个狙击手,但似乎是个萌新,也多亏了那辆卡车,整出了一片射击盲区。但后退现在肯定不行,左边就是我们唯一的退路了。”

“那么问题很明白的摆在我们面前了。林白和七苒还在前面,想办法让他们安全的撤回来。左边掩体太少,到时候只能拼速度跑过去。”

片刻后,众人不再向外还击。但掩体后的敌人也并没有立刻跳出来火力压制他们。

琼可趁机从千疮百孔的车上拉出一个黑色的精致箱子,打开了它,里面装着一把轻机枪“FR-MG-03”。枪上Made in Louyve的标识清晰可见。

“这可是ONight2的集大成之作!国际上一把几万经点的高价!对面可没有那么凶残的武器—不算那个还没出手的狙击手。”

“准备就绪。”览星握着一枚闪光弹,做好了投掷的准备。

此时此刻,对面正有一支三人小队沿着墙慢慢的摸过来——没有任何阻击,像是刚才和他们交火的人突然全部消失了一样。

直到他们看见一个黑色的圆柱体轱辘轱辘的滚了过来。

“闪到了!”览星听见对方阵地上传来的惊叫声便一越而起,开始进行掩护射击。刚刚的敌人立马摸索着周围的东西躲了起来。
“让林白和七苒马上撤回来!”

在伏击开始前,林白和七苒一起在最后一辆车上,却因为伏击而不得不成为了反击第一道阵地。好在车上还是有备弹的,而他们俩也不是吃干饭的。但双拳难敌四手,在弹量将尽的情况下,他们总算是得到了后撤的机会,待敌人恢复作战能力,他们刚刚所在的地方早已人去楼空。

“可以了,准备往左边撤!”览星退回车后换弹,而琼可立马端起机枪开始扫射,将对方死死的压制在了墙角后。

七苒第一个冲过了左翼路面的无遮挡区域,一枚子弹掠过了他的身侧,锵的一声溅起了碎石。

“狙哥开始发力了啊终于…”流磁从左边街道上的下水道井口里钻了出来,夺过七苒手中的步枪,把自己的冲锋枪丢给了他“借我用用,一会还给你!”便钻进了一栋建里面。

琼可躲回了掩体后面“枪管烫的像火,歇口气。”
步话机里又传出流磁的声音:“你们撑住,我和狙哥对一波。”
他找到一扇窗户正对着那栋楼,取出一个磁吸式瞄准镜,贴在枪上。
对面楼上有一个黑点,他不知道那是不是狙击手,便选择在黑点附近连开了三枪。

楼顶。

刚刚走马上任狙击手的她握着那支LOP-033老式狙击步枪,居高临下的看着下面发生的战斗。

从瞄准镜里她看到第二个人似乎准备好冲过那段无遮挡路段了…第一枪没有中只是意外,她想。

食指扣住了扳机,只需要等到下一刻——

但想象中的画面却被一颗子弹划破空气的刺耳声音刺破。

一颗偶然的流弹吗?她想道。

但第二颗,第三颗接踵而至,第三颗甚至可以说是与她“擦肩而过”。

看来是被发现了啊…她立刻抽走架好的步枪,跑到了墙后。
看来得换个狙击位。

“狙哥跑路了!”步话机传来流磁的呼喊。
琼可立刻探出身来开始压制射击。“林白!你带着我们的客户穿过去!”

穿着琼可的防弹衣,Geion先生立马跟着林白一溜烟的跑了过去。

“很好,现在只剩下我们两个了。”览星把烟头丢到地上,用脚踩灭。

“那你还在等什么?”
琼可向左边喊道“苔雨!掩护一下我们两个!”

两人一前一后的跑过了最后一段路。“给他们留个大的!”览星坏笑着,往车那边丢出一颗手雷。
“有雷刚才不扔现在扔你留着回家过年吗?”琼可边跑边喊道。

随着一声巨响,车辆的油箱被随之引爆,一道烈焰冲天而起。
这支七个人的小队立马动了起来,窜进了街道的阴暗处。

“我们五辆车的队伍,一辆当场被打中了油箱,爆了。一辆可能跑掉了,剩下我们三辆车共十二个人。”七苒计算着损失,口里念念有词“我们那辆车只剩下我和林白,苔雨那辆只剩下她一个人,这么说只有琼可你们没有减员呢,好厉害啊。”“当然咯,主要是你流磁大跌开车技术好。”“你们两个闭嘴,不如关心一下天气预报,上面说一个小时之内会开始下雨。”

众人穿梭在三江界市的街道上,琼可还不忘用帽子墨镜和口罩伪装好客户,免得被闲人认出来“哇这不是电视上那个谁谁谁吗。”

渐渐的,众人总算脱离了人流,再次走入了空旷路段。一直憋着不说话的受保护对象Geion先生也开始发力了,一会对着琼可“美女你刚才还厉害能不能恰个V”,一会对着苔雨“小妹妹你好可爱啊可以让我捏捏脸吗”一会又和流磁开始称兄道弟,又对着七苒“美女你也很好看…你说什么?你是男的?”

“果然,这帮玩政治的都是能说会道闭不了嘴的。”林白叹气道,览星则点了点头,递给了他一支烟。

“安全屋”位于一家滨河酒店里,虽然是ONight公司旗下的酒店,但实际上,安全屋的归属者是一个名为“凉城明川事务所”的组织。

“欢迎七位,等你们很久了。”彬彬有礼的服务生向众人鞠躬,递上了一串钥匙。“其他的事情千霄小姐4已经为我们交代好了。”

“谁是千霄?”“不知道。但上级给了这个地址那么便一定值得信赖吧。”

众人踏入了酒店二十三层,在侍者们的带领下来到了十四号房间门口。
“诸位请自便。”留下这句话后侍者便自己离开了。

安全屋有着一个巨大的落地窗,可以看见波涛汹涌的烁闪江上来来往往的船只,以及对岸霓光闪烁的三江界市区。

“就这样吧,各位先休息。”琼可在落地窗前的一张沙发上坐下,凝望着窗外的城市。

览星点上一根烟,默默闭上了眼睛。

流磁打开了安全屋中自带的电脑。

而林白,苔雨,七苒三人取出一副扑克,玩了起来。

至于唯一的一张大床,已被默认属于客户Geion先生了。

在奔流着的烁闪江上,第一滴雨正落在水中,溅起几乎微不可见的水花。


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