<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alan C. &#8211; BeautyLife Studio</title>
	<atom:link href="https://beautylife-studio.top/author/alanchou/feed/" rel="self" type="application/rss+xml" />
	<link>https://beautylife-studio.top</link>
	<description>It&#039;s a BeautyLife!</description>
	<lastBuildDate>Tue, 22 Apr 2025 05:10:36 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://beautylife-studio.top/wp-content/uploads/2024/03/cropped-new-icon-32x32.png</url>
	<title>Alan C. &#8211; BeautyLife Studio</title>
	<link>https://beautylife-studio.top</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Learning Swift &#038; SwiftUI Chapter 15</title>
		<link>https://beautylife-studio.top/2025/tech/1774/</link>
					<comments>https://beautylife-studio.top/2025/tech/1774/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Tue, 22 Apr 2025 05:10:36 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Learning Swift & SwiftUI]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1774</guid>

					<description><![CDATA[Swift 复习]]></description>
										<content:encoded><![CDATA[
<p>经过前面大约14章的学习，我们其实已经掌握了Swift的绝大部份基础知识。接下来我们就可以开始主攻SwiftUI了，但在这之前，我想我们有必要再把我们学习过的Swift内容复习一遍，这样我们才能更好的开始SwiftUI。那，现在就让我们开始吧！</p>



<h2 class="wp-block-heading">创建常量(constants)和变量(variables)</h2>



<p>Swift 可以创建常量和变量，但通常更倾向于创建常量。</p>



<p>用它来创建和更改变量字符串：</p>



<pre class="wp-block-code"><code>var name = "Ted"
name = "Rebecca"
</code></pre>



<p>如果不想改变数值，可以使用常量来代替：</p>



<pre class="wp-block-code"><code>let user = "Daphne"
</code></pre>



<p>print() 函数有助于学习和调试，并能显示变量的一些信息：</p>



<pre class="wp-block-code"><code>print(user)
</code></pre>



<h2 class="wp-block-heading">字符串 (Strings)</h2>



<p>Swift 字符串以双引号开始和结束：</p>



<pre class="wp-block-code"><code>let actor = "Tom Cruise"
</code></pre>



<p>它们与表情符号也配合得很好：</p>



<pre class="wp-block-code"><code>let actor = "Tom Cruise 🏃‍♂️"
</code></pre>



<p>如果你希望在字符串中使用双引号，请在它们前面放置一个反斜杠：</p>



<pre class="wp-block-code"><code>let quote = "He tapped a sign saying \"Believe\" and walked away."
</code></pre>



<p>如果你想要一个跨越多行的字符串，请以三个双引号开头和结尾，如下所示：</p>



<pre class="wp-block-code"><code>let movie = """
A day in
the life of an
Apple engineer
"""
</code></pre>



<p>Swift为字符串提供了许多有用的属性和方法，包括**<code>.count</code>**来读取它有多少个字母：</p>



<pre class="wp-block-code"><code>print(actor.count)
</code></pre>



<p>还有**<code>hasPrefix()</code><strong>和</strong><code>hasSuffix()</code>**让我们知道字符串是以特定字母开头还是结尾：</p>



<pre class="wp-block-code"><code>print(quote.hasPrefix("He"))
print(quote.hasSuffix("Away."))
</code></pre>



<p>**提示：**在Swift中，字符串区分大小写，因此第二次检查将返回false。</p>



<h2 class="wp-block-heading">整数 (Int)</h2>



<p>Swift使用**<code>Int</code>**类型存储整数，该类型支持一系列标准数学运算符：</p>



<pre class="wp-block-code"><code>let score = 10
let higherScore = score + 10
let halvedScore = score / 2
</code></pre>



<p>它还支持修改原位变量的复合赋值运算符：</p>



<pre class="wp-block-code"><code>var counter = 10
counter += 5
</code></pre>



<p>整数自己具有一些有用的功能，例如**<code>isMultiple(of:)</code>**方法：</p>



<pre class="wp-block-code"><code>let number = 120
print(number.isMultiple(of: 3))
</code></pre>



<p>你还可以在特定范围内生成随机整数，如下：</p>



<pre class="wp-block-code"><code>let id = Int.random(in: 1...1000)
</code></pre>



<h2 class="wp-block-heading">小数 (Decimals)</h2>



<p>如果你创建一个具有小数点的数字，Swift会将其视为**<code>Double</code>**：</p>



<pre class="wp-block-code"><code>let score = 3.0
</code></pre>



<p>Swift认为**<code>Double</code><strong>是与</strong><code>Int</code>**完全不同的数据类型，不会让你将它们混合在一起。</p>



<h2 class="wp-block-heading">布尔值 (Booleans)</h2>



<p>Swift使用**<code>Bool</code>**类型来存储真或假：</p>



<pre class="wp-block-code"><code>let goodDogs = true
let gameOver = false
</code></pre>



<p>你可以通过调用其**<code>toggle()</code>**方法将布尔值从true翻转到false：</p>



<pre class="wp-block-code"><code>var isSaved = false
isSaved.toggle()
</code></pre>



<h2 class="wp-block-heading">连接字符串</h2>



<p>你可以使用<em>字符串插值</em>从其他数据中创建字符串：在字符串中写一个反斜杠，然后将变量或常量的名称放在括号中，如下所示：</p>



<pre class="wp-block-code"><code>let name = "Taylor"
let age = 26
let message = "I'm \(name) and I'm \(age) years old."
print(message)
</code></pre>



<p>当该代码运行时，它会打印“I’m Taylor and I’m 26 years old.”</p>



<h2 class="wp-block-heading">数组 (Arrays)</h2>



<p>你可以将项目分组到这样的数组中：</p>



<pre class="wp-block-code"><code>var colors = &#91;"Red", "Green", "Blue"]
let numbers = &#91;4, 8, 15, 16]
var readings = &#91;0.1, 0.5, 0.8]
</code></pre>



<p>每一个都包含不同类型的数据：一个字符串、一个整数和一个小数。当我们从数组中读取数据时，我们将得到适当的类型-<strong><code>String</code></strong>、<strong><code>Int</code>或<code>Double</code></strong>：</p>



<pre class="wp-block-code"><code>print(colors&#91;0])
print(readings&#91;2])
</code></pre>



<p>**提示：**确保项目存在于你请求的索引中，否则您的代码将崩溃——你的应用程序将停止工作。</p>



<p>如果你的数组是可变的，您可以使用**<code>append()</code>**添加新项目：</p>



<pre class="wp-block-code"><code>colors.append("Tartan")
</code></pre>



<p>你添加的数据类型必须与已经存在的数据类型相匹配。</p>



<p>数组具有有用的功能，例如**<code>.count</code><strong>来读取数组中有多少个项目，或者</strong><code>remove(at:)</code>**来删除特定索引中的一个项目：</p>



<pre class="wp-block-code"><code>colors.remove(at: 0)
print(colors.count)
</code></pre>



<p>你可以使用**<code>contains()</code>**来检查数组是否包含特定项目，如下所在：</p>



<pre class="wp-block-code"><code>print(colors.contains("Octarine"))
</code></pre>



<h2 class="wp-block-heading">字典 (Dictionaries)</h2>



<p>字典根据我们指定的键存储多个值。例如，我们可以创建一个字典来存储有关一个人的信息：</p>



<pre class="wp-block-code"><code>let employee = &#91;
    "name": "Taylor",
    "job": "Singer"
]
</code></pre>



<p>要从字典中读取数据，请使用创建时使用的相同键：</p>



<pre class="wp-block-code"><code>print(employee&#91;"name", default: "Unknown"])
print(employee&#91;"job", default: "Unknown"])
</code></pre>



<p>如果我们请求的密钥不存在，将使用**<code>default</code>**值。</p>



<h2 class="wp-block-heading">集合 (Sets)</h2>



<p>集合类似于数组，只是你不能添加重复的项目，而且它们不会按照特定顺序存储项目。</p>



<p>这就成了一组数字：</p>



<pre class="wp-block-code"><code>var numbers = Set(&#91;1, 1, 3, 5, 7])
print(numbers)
</code></pre>



<p>请记住，该集合将忽略重复值，并且不会记住数组中使用的顺序。</p>



<p>将项目添加到集合中是通过调用其**<code>insert()</code>**方法完成的，如下所示：</p>



<pre class="wp-block-code"><code>numbers.insert(10)
</code></pre>



<p>与数组相比，集合有一个很大的优势：在集合上使用**<code>contains()</code>**实际上是即时的，无论集合包含多少项——即使是包含10,000,000项的集合也会立即响应。</p>



<h2 class="wp-block-heading">枚举 (Enums)</h2>



<p>枚举是一组命名值，我们可以创建并使用它来使我们的代码更高效、更安全。例如，我们可以像这样对工作日进行枚举：</p>



<pre class="wp-block-code"><code>enum Weekday {
    case monday, tuesday, wednesday, thursday, friday
}
</code></pre>



<p>这称为新的枚举**<code>Weekday</code>**，并提供五个案例来处理五个工作日。</p>



<p>我们现在可以制作该枚举的实例，然后为其分配其他可能的案例：</p>



<pre class="wp-block-code"><code>var day = Weekday.monday
day = .friday
</code></pre>



<h2 class="wp-block-heading">类型注释 (Type annotations)</h2>



<p>你可以通过使用如下<em>类型注释</em>来尝试为新变量或常量强制特定类型：</p>



<pre class="wp-block-code"><code>var score: Double = 0
</code></pre>



<p>如果没有**<code>: Double</code><strong>部分，Swift会推断这是一个</strong><code>Int</code><strong>，但我们覆盖了它，并说它是一个</strong><code>Double</code>**。</p>



<p>以下是一些基于迄今为止涵盖的类型的类型注释：</p>



<pre class="wp-block-code"><code>let player: String = "Roy"
var luckyNumber: Int = 13
let pi: Double = 3.141
var isEnabled: Bool = true
var albums: Array&lt;String&gt; = &#91;"Red", "Fearless"]
var user: Dictionary&lt;String, String&gt; = &#91;"id": "@twostraws"]
var books: Set&lt;String&gt; = Set(&#91;"The Bluest Eye", "Foundation"])
</code></pre>



<p>数组和字典非常普遍，它们具有更易于编写的特殊语法：</p>



<pre class="wp-block-code"><code>var albums: &#91;String] = &#91;"Red", "Fearless"]
var user: &#91;String: String] = &#91;"id": "@twostraws"]
</code></pre>



<p>知道确切的事物类型对于创建空集合很重要。例如，两者都创建空字符串数组：</p>



<pre class="wp-block-code"><code>var teams: &#91;String] = &#91;String]()
var clues = &#91;String]()
</code></pre>



<p>枚举的值与枚举本身的类型相同，因此我们可以这样写：</p>



<pre class="wp-block-code"><code>enum UIStyle {
    case light, dark, system
}

var style: UIStyle = .light
</code></pre>



<h2 class="wp-block-heading">条件 (Conditions)</h2>



<p>使用**<code>if</code><strong>、</strong><code>else</code><strong>和</strong><code>else if</code>**语句来检查条件并酌情运行一些代码：</p>



<pre class="wp-block-code"><code>let age = 16

if age &lt; 12 {
    print("You can't vote")
} else if age &lt; 18 {
    print("You can vote soon.")
} else {
    print("You can vote now.")
}
</code></pre>



<p>我们可以使用**<code>&amp;&amp;</code>**来组合两个条件，只有当里面的两个部分为真时，整个条件才会为真：</p>



<pre class="wp-block-code"><code>let temp = 26

if temp &gt; 20 &amp;&amp; temp &lt; 30 {
    print("It's a nice day.")
}
</code></pre>



<p>或者，如果<em>任一</em>子条件为真，**<code>||</code>**将使条件为真。</p>



<h2 class="wp-block-heading">switch语句</h2>



<p>Swift允许我们使用**<code>switch</code><strong>/</strong><code>case</code>**语法根据多个条件检查值，如下所示：</p>



<pre class="wp-block-code"><code>enum Weather {
    case sun, rain, wind
}

let forecast = Weather.sun

switch forecast {
case .sun:
    print("A nice day.")
case .rain:
    print("Pack an umbrella.")
default:
    print("Should be okay.")
}
</code></pre>



<p>**<code>switch</code>**语句<em>必须</em>详尽无遗：必须处理所有可能的值，这样你就不会意外错过一个。</p>



<h2 class="wp-block-heading"><strong>三元条件运算符 (The ternary conditional operator)</strong></h2>



<p>三元运算符允许我们检查一个条件并返回两个值之一：如果条件为真，则返回一个值，如果条件为假，则返回第二个值：</p>



<pre class="wp-block-code"><code>let age = 18
let canVote = age &gt;= 18 ? "Yes" : "No"
</code></pre>



<p>当该代码运行时，**<code>canVote</code><strong>将设置为“是”，因为</strong><code>age</code>**设置为18岁。</p>



<h2 class="wp-block-heading">循环 (Loops)</h2>



<p>Swift的**<code>for</code>**循环为集合或自定义范围内的每个项目运行一些代码。例如：</p>



<pre class="wp-block-code"><code>let platforms = &#91;"iOS", "macOS", "tvOS", "watchOS"]

for os in platforms {
    print("Swift works on \(os).")
}
</code></pre>



<p>你还可以循环一系列数字：</p>



<pre class="wp-block-code"><code>for i in 1...12 {
    print("5 x \(i) is \(5 * i)")
}
</code></pre>



<p>**<code>1...12</code><strong>包含1到12（含）的值。如果您想排除最终数字，请使用</strong><code>..&lt;</code>**代替：</p>



<pre class="wp-block-code"><code>for i in 1..&lt;13 {
    print("5 x \(i) is \(5 * i)")
}
</code></pre>



<p><strong>提示：如果你不需要循环变量，请使用<code>_</code></strong>：</p>



<pre class="wp-block-code"><code>var lyric = "Haters gonna"

for _ in 1...5 {
    lyric += " hate"
}

print(lyric)
</code></pre>



<p>还有**<code>while</code>**循环，执行循环主体，直到条件为false，如下：</p>



<pre class="wp-block-code"><code>var count = 10

while count &gt; 0 {
    print("\(count)…")
    count -= 1
}

print("Go!")
</code></pre>



<p>你可以使用**<code>continue</code>**”跳过当前循环迭代，然后继续执行以下操作：</p>



<pre class="wp-block-code"><code>let files = &#91;"me.jpg", "work.txt", "sophie.jpg"]

for file in files {
    if file.hasSuffix(".jpg") == false {
        continue
    }

    print("Found picture: \(file)")
}
</code></pre>



<p>或者，使用**<code>break</code>**退出循环并跳过所有剩余的迭代。</p>



<h2 class="wp-block-heading">函数 (Functions)</h2>



<p>要创建新函数，请写上**<code>func</code>**然后加上函数名称，然后在括号内添加参数：</p>



<pre class="wp-block-code"><code>func printTimesTables(number: Int) {
    for i in 1...12 {
        print("\(i) x \(number) is \(i * number)")
    }
}

printTimesTables(number: 5)
</code></pre>



<p>我们需要在调用站点上写出**<code>number: 5</code>**，因为参数名称是函数调用的一部分。</p>



<p>要从函数中返回数据，请告诉Swift它是什么类型，然后使用**<code>return</code>**关键字将其发送回。例如，这返回一个掷骰子的结果：</p>



<pre class="wp-block-code"><code>func rollDice() -&gt; Int {
    return Int.random(in: 1...6)
}

let result = rollDice()
print(result)
</code></pre>



<p>如果你的函数只包含一行代码，您可以删除**<code>return</code>**关键字：</p>



<pre class="wp-block-code"><code>func rollDice() -&gt; Int {
    Int.random(in: 1...6)
}
</code></pre>



<h2 class="wp-block-heading">从函数中返回多个值</h2>



<p>元组存储了固定数量的特定类型的值，这是一种从函数返回多个值的便捷方法：</p>



<pre class="wp-block-code"><code>func getUser() -&gt; (firstName: String, lastName: String) {
    (firstName: "Taylor", lastName: "Swift")
}

let user = getUser()
print("Name: \(user.firstName) \(user.lastName)")
</code></pre>



<p>如果你不需要元组中的所有值，你可以重组元组，将其拆分成单个值，然后用”_”告诉 Swift 忽略某些值：</p>



<pre class="wp-block-code"><code>let (firstName, _) = getUser()
print("Name: \(firstName)")
</code></pre>



<h2 class="wp-block-heading">自定义参数标签 (Customizing parameter labels)</h2>



<p>如果你在调用函数时不想传递参数的名称，请在它前面放置下划线：</p>



<pre class="wp-block-code"><code>func isUppercase(_ string: String) -&gt; Bool {
    string == string.uppercased()
}

let string = "HELLO, WORLD"
let result = isUppercase(string)
</code></pre>



<p>另一种选择是在名字之前给它起另外一个名字：一个用于外部，一个用于内部：</p>



<pre class="wp-block-code"><code>func printTimesTables(for number: Int) {
    for i in 1...12 {
        print("\(i) x \(number) is \(i * number)")
    }
}

printTimesTables(for: 5)
</code></pre>



<p>在该代码中，**<code>for</code><strong>外部使用，</strong><code>number</code>**在内部使用。</p>



<h2 class="wp-block-heading">为参数提供默认值</h2>



<p>我们可以通过在类型后写一个等值来提供默认参数值，然后提供一个值，如下所示：</p>



<pre class="wp-block-code"><code>func greet(_ person: String, formal: Bool = false) {
	if formal {
        print("Welcome, \(person)!")
	  } else {
        print("Hi, \(person)!")
    }
}
</code></pre>



<p>现在我们可以用两种方式调用**<code>greet()</code>**）：</p>



<pre class="wp-block-code"><code>greet("Tim", formal: true)
greet("Taylor")
</code></pre>



<h2 class="wp-block-heading">处理函数中的错误</h2>



<p>要处理函数中的错误，你需要告诉Swift哪些错误可能发生，编写一个可以抛出错误的函数，然后调用它并处理任何问题。</p>



<p>首先，定义可能出现的错误：</p>



<pre class="wp-block-code"><code>enum PasswordError: Error {
    case short, obvious
}
</code></pre>



<p>接下来，编写一个可以抛出错误的函数。这是通过将**<code>throws</code><strong>加入函数类型，然后使用</strong><code>throw</code>**来触发特定错误来完成的：</p>



<pre class="wp-block-code"><code>func checkPassword(_ password: String) throws -&gt; String {
    if password.count &lt; 5 {
        throw PasswordError.short
    }

    if password == "12345" {
        throw PasswordError.obvious
    }

    if password.count &lt; 10 {
        return "OK"
    } else {
        return "Good"
    }
}
</code></pre>



<p>现在通过启动**<code>do</code><strong>块来调用抛出函数，使用</strong><code>try</code>**调用函数，然后捕捉发生的错误：</p>



<pre class="wp-block-code"><code>let string = "12345"

do {
    let result = try checkPassword(string)
    print("Rating: \(result)")
} catch PasswordError.obvious {
    print("I have the same combination on my luggage!")
} catch {
    print("There was an error.")
}
</code></pre>



<p>当涉及到捕捉错误时，你必须始终有一个可以处理各种错误的**<code>catch</code>**块。</p>



<h2 class="wp-block-heading">闭包 (Closures)</h2>



<p>你可以将函数直接分配给像这样的常量或变量：</p>



<pre class="wp-block-code"><code>let sayHello = {
    print("Hi there!")
}

sayHello()
</code></pre>



<p>在该代码中，**<code>sayHello</code>**是一个闭包——一块代码，我们可以随时传递和调用。如果你希望闭包接受参数，它们必须写在大括号内：</p>



<pre class="wp-block-code"><code>let sayHello = { (name: String) -&gt; String in
    "Hi \(name)!"
}
</code></pre>



<p>**<code>in</code>**用于标记参数的结束并返回类型——之后的所有内容都是闭包本身的主体。</p>



<p>闭包在Swift中被广泛使用。例如，有一个名为**<code>filter()</code>**的数组方法，它通过测试运行数组的所有元素，任何返回测试为true的元素都会在新数组中返回。</p>



<p>我们可以使用闭包提供该测试，因此我们可以过滤数组，仅包含以T开头的名称：</p>



<pre class="wp-block-code"><code>let team = &#91;"Gloria", "Suzanne", "Tiffany", "Tasha"]

let onlyT = team.filter({ (name: String) -&gt; Bool in
    return name.hasPrefix("T")
})
</code></pre>



<p>在闭包中，我们列出了传递给我们的参数**<code>filter()</code><strong>），这是数组中的字符串。我们还说，我们的闭包返回一个布尔值，然后使用</strong><code>in</code>**来标记闭包代码的开头——之后，其他一切都是正常的函数代码。</p>



<h2 class="wp-block-heading">尾部闭包(Trailing closures)和速记语法(shorthand syntax)</h2>



<p>Swift有一些诀窍，使结尾更容易阅读。以下是一些过滤数组的代码，只包含以“T”开头的名称：</p>



<pre class="wp-block-code"><code>let team = &#91;"Gloria", "Suzanne", "Tiffany", "Tasha"]

let onlyT = team.filter({ (name: String) -&gt; Bool in
    return name.hasPrefix("T")
})

print(onlyT)
</code></pre>



<p>你可以看到，闭包的主体只有一行代码，因此我们可以去掉return：</p>



<pre class="wp-block-code"><code>let onlyT = team.filter({ (name: String) -&gt; Bool in
    name.hasPrefix("T")
})
</code></pre>



<p>**<code>filter()</code>**必须给出一个从其数组中接受一个项目的函数，如果它应该在返回的数组中，则返回true。</p>



<p>由于我们传递的函数<em>必须有</em>这样的行为，所以我们不需要在闭包中指定类型。所以，我们可以重写代码成这样：</p>



<pre class="wp-block-code"><code>let onlyT = team.filter({ name in
    name.hasPrefix("T")
})
</code></pre>



<p>我们可以进一步使用称为<em>尾随闭包语法</em>的特殊语法，如下所示：</p>



<pre class="wp-block-code"><code>let onlyT = team.filter { name in
    name.hasPrefix("T")
}
</code></pre>



<p>最后，Swift可以为我们提供简短的参数名称，因此我们甚至不再写入**<code>name in</code><strong>，而是依赖为我们提供的特殊命名值：</strong><code>$0</code>**：</p>



<pre class="wp-block-code"><code>let onlyT = team.filter {
    $0.hasPrefix("T")
}
</code></pre>



<h2 class="wp-block-heading">结构体 (Structs)</h2>



<p>结构允许我们创建自己的自定义数据类型，并完成它们自己的属性和方法：</p>



<pre class="wp-block-code"><code>struct Album {
    let title: String
    let artist: String
    var isReleased = true

    func printSummary() {
        print("\(title) by \(artist)")
    }
}

let red = Album(title: "Red", artist: "Taylor Swift")
print(red.title)
red.printSummary()
</code></pre>



<p>当我们创建结构实例时，我们使用<em>初始化器</em>来创建结构——Swift允许我们像函数一样对待结构，传递其每个属性的参数。它根据结构的属性无声地生成此<em>成员初始化器</em>。</p>



<p>如果你想让结构的方法更改其属性之一，请将其标记为<em>突变</em>：</p>



<pre class="wp-block-code"><code>mutating func removeFromSale() {
    isReleased = false
}
</code></pre>



<h2 class="wp-block-heading">计算属性 (Computed properties)</h2>



<p>计算属性在每次访问时都会计算其值。例如，我们可以编写一个**<code>Employee</code>**结构，跟踪该员工的剩余假期：</p>



<pre class="wp-block-code"><code>struct Employee {
    let name: String
    var vacationAllocated = 14
    var vacationTaken = 0

    var vacationRemaining: Int {
        vacationAllocated - vacationTaken
    }
}
</code></pre>



<p>为了能够写入给**<code>vacationRemaining</code>**，我们需要同时提供<em>获取</em>器(getter)和<em>设置器</em>(setter)：</p>



<pre class="wp-block-code"><code>var vacationRemaining: Int {
    get {
        vacationAllocated - vacationTaken
    }

    set {
        vacationAllocated = vacationTaken + newValue
    }
}
</code></pre>



<p>**<code>newValue</code>**由Swift提供，并存储用户分配给属性的任何值。</p>



<h2 class="wp-block-heading">属性观察器 (Property observers)</h2>



<p>属性观察器是属性更改时运行的代码片段：**<code>didSet</code><strong>在属性刚刚更改时运行，</strong><code>willSet</code>**在属性更改<em>之前</em>运行。</p>



<p>我们可以通过在分数更改时让**<code>Game</code><strong>结构打印消息来演示</strong><code>didSet</code>**：</p>



<pre class="wp-block-code"><code>struct Game {
    var score = 0 {
        didSet {
            print("Score is now \(score)")
        }
    }
}

var game = Game()
game.score += 10
game.score -= 3
</code></pre>



<h2 class="wp-block-heading">自定义初始化器 (Custom initializers)</h2>



<p>初始化器是一种特殊函数，用于准备要使用的新结构体实例，确保所有属性都有初始值。</p>



<p>Swift 会根据结构体的属性生成一个初始化器，但你也可以创建自己的初始化器：</p>



<pre class="wp-block-code"><code>struct Player {
    let name: String
    let number: Int

    init(name: String) {
        self.name = name
        number = Int.random(in: 1...99)
    }
}
</code></pre>



<p>重要：初始化程序前面没有&nbsp;<strong><code>func</code></strong>，也不会明确返回值。</p>



<h2 class="wp-block-heading">门禁控制（Access control)</h2>



<p>Swift 为结构体内部的访问控制提供了多种选项，但最常见的有四种：</p>



<ul class="wp-block-list">
<li>使用 private 表示 “不要让结构体之外的任何东西使用它”。</li>



<li>使用 private(set) 表示 “结构体之外的任何内容都可以读取此内容，但不要让它们更改”。</li>



<li>使用 fileprivate 表示 “不允许当前文件以外的任何内容使用此文件”。</li>



<li>使用 public 表示 “允许任何人在任何地方使用它”。</li>
</ul>



<p>例如：</p>



<pre class="wp-block-code"><code>struct BankAccount {
    private(set) var funds = 0

    mutating func deposit(amount: Int) {
        funds += amount
    }

    mutating func withdraw(amount: Int) -&gt; Bool {
        if funds &gt; amount {
            funds -= amount
            return true
        } else {
            return false
        }
    }
}
</code></pre>



<p>因为我们使用了&nbsp;<strong><code>private(set)</code></strong>，所以从结构体外部读取资金是可以的，但写入是不可能的。</p>



<h2 class="wp-block-heading">静态属性和方法（Static properties and methods)</h2>



<p>Swift 支持静态属性和方法，允许你将属性或方法直接添加到结构体本身，而不是结构体的某个实例：</p>



<pre class="wp-block-code"><code>struct AppData {
    static let version = "1.3 beta 2"
    static let settings = "settings.json"
}
</code></pre>



<p>使用这种方法，我们可以在任何需要检查或显示应用程序版本号的地方读取&nbsp;<strong><code>AppData.version</code></strong>。</p>



<h2 class="wp-block-heading">类（Classes）</h2>



<p>类允许我们创建自定义数据类型，与结构体有五个不同之处。</p>



<p>第一个不同点是，我们可以通过继承其他类的功能来创建类：</p>



<pre class="wp-block-code"><code>class Employee {
    let hours: Int

    init(hours: Int) {
        self.hours = hours
    }

    func printSummary() {
        print("I work \(hours) hours a day.")
    }
}

class Developer: Employee {
    func work() {
        print("I'm coding for \(hours) hours.")
    }
}

let novall = Developer(hours: 8)
novall.work()
novall.printSummary()
</code></pre>



<p>如果子类要更改父类的方法，必须使用覆盖（<strong><code>override</code></strong>）：</p>



<pre class="wp-block-code"><code>override func printSummary() {
    print("I spend \(hours) hours a day searching Stack Overflow.")
}
</code></pre>



<p>第二个不同点是，类的初始化器更加复杂。这里有很多复杂之处，但有三个关键点：</p>



<ol class="wp-block-list">
<li>Swift 不会为类生成成员初始化器。</li>



<li>如果子类有自定义初始化器，它必须在设置完自己的属性后调用父类的初始化器。</li>



<li>如果子类没有任何初始化器，它将自动继承父类的初始化器。</li>
</ol>



<p>例如：</p>



<pre class="wp-block-code"><code>class Vehicle {
    let isElectric: Bool

    init(isElectric: Bool) {
        self.isElectric = isElectric
    }
}

class Car: Vehicle {
    let isConvertible: Bool

    init(isElectric: Bool, isConvertible: Bool) {
        self.isConvertible = isConvertible
        super.init(isElectric: isElectric)
    }
}
</code></pre>



<p><strong><code>super</code></strong>&nbsp;允许我们调用属于父类的方法，例如父类的初始化器。</p>



<p>第三个区别是，类实例的所有副本共享数据，这意味着对其中一个副本所做的更改会自动更改其他副本。</p>



<p>例如：</p>



<pre class="wp-block-code"><code>class Singer {
    var name = "Adele"
}

var singer1 = Singer()
var singer2 = singer1
singer2.name = "Justin"
print(singer1.name)  
print(singer2.name)
</code></pre>



<p>这将打印出两个相同的 “Justin”——尽管我们只更改了其中一个，但另一个也发生了变化。相比之下，结构体副本不会共享数据。</p>



<p>第四个区别是，类可以有一个去初始化器，当对象的最后一个引用被销毁时，去初始化器会被调用。</p>



<p>因此，我们可以创建一个类，在创建和销毁时打印一条信息：</p>



<pre class="wp-block-code"><code>class User {
    let id: Int

    init(id: Int) {
        self.id = id
        print("User \(id): I'm alive!")
    }

    deinit {
        print("User \(id): I'm dead!")
    }
}

for i in 1...3 {
    let user = User(id: i)
    print("User \(user.id): I'm in control!")
}
</code></pre>



<p>最后一个区别是，即使类本身不变，我们也可以通过类来更改变量属性：</p>



<pre class="wp-block-code"><code>class User {
    var name = "Paul"
}

let user = User()
user.name = "Taylor"
print(user.name)
</code></pre>



<p>因此，类在使用改变数据的方法时不需要使用**<code>mutating</code>**关键字。</p>



<h2 class="wp-block-heading">协议（<strong>Protocols）</strong></h2>



<p>协议定义了我们期望数据类型支持的功能，Swift 确保我们的代码遵循这些规则。</p>



<p>例如，我们可以这样定义**<code>Vehicle</code>**协议：</p>



<pre class="wp-block-code"><code>protocol Vehicle {
    func estimateTime(for distance: Int) -&gt; Int
    func travel(distance: Int)
}
</code></pre>



<p>这列出了该协议工作所需的方法，但不包含任何代码——我们只指定了方法名称、参数和返回类型。</p>



<p>一旦有了协议，就可以通过实现所需的功能来使数据类型符合协议。例如，我们可以创建一个符合**<code>Vehicle</code>**协议的&nbsp;<code><strong>Car</strong></code>&nbsp;结构：</p>



<pre class="wp-block-code"><code>struct Car: Vehicle {
    func estimateTime(for distance: Int) -&gt; Int {
        distance / 50
    }

    func travel(distance: Int) {
        print("I'm driving \(distance)km.")
    }
}
</code></pre>



<p><strong><code>Vehicle</code></strong>&nbsp;中列出的所有方法必须完全存在于&nbsp;<strong><code>Car</code></strong>&nbsp;中，并且具有相同的名称、参数和返回类型。</p>



<p>现在，你可以编写一个接受任何符合&nbsp;<strong><code>Vehicle</code></strong>&nbsp;类型的函数，因为 Swift 知道它同时实现了&nbsp;<strong><code>estimateTime()</code></strong>&nbsp;和&nbsp;<strong><code>travel()</code></strong>：</p>



<pre class="wp-block-code"><code>func commute(distance: Int, using vehicle: Vehicle) {
    if vehicle.estimateTime(for: distance) &gt; 100 {
        print("Too slow!")
    } else {
        vehicle.travel(distance: distance)
    }
}

let car = Car()
commute(distance: 100, using: car)
</code></pre>



<p>协议也可以要求属性，因此我们可以要求车辆有多少个座位和目前有多少乘客的属性：</p>



<pre class="wp-block-code"><code>protocol Vehicle {
    var name: String { get }
    var currentPassengers: Int { get set }
    func estimateTime(for distance: Int) -&gt; Int
    func travel(distance: Int)
}
</code></pre>



<p>这就增加了两个属性：一个是标有 **<code>get</code>**的属性，可能是常量或计算属性；另一个是标有&nbsp;<code><strong>get set</strong></code>&nbsp;的属性，可能是变量或带有 getter 和 setter 的计算属性。</p>



<p>现在，所有符合要求的类型都必须添加这两个属性的实现，比如**<code>Car</code>**的实现：</p>



<pre class="wp-block-code"><code>let name = "Car"
var currentPassengers = 1
</code></pre>



<p>提示：你可以根据需要遵守任意多个协议，只需用逗号分隔列出即可。</p>



<h2 class="wp-block-heading">扩展（<strong>Extensions）</strong></h2>



<p>扩展可以让我们为任何类型添加功能。例如，Swift 的字符串有一个用于修剪空白和新行的方法，但它非常长，因此我们可以将它变成一个扩展：</p>



<pre class="wp-block-code"><code>extension String {
    func trimmed() -&gt; String {
        self.trimmingCharacters(in: .whitespacesAndNewlines)
    }
}

var quote = "   The truth is rarely pure and never simple   "
let trimmed = quote.trimmed()
</code></pre>



<p>如果你想直接更改一个值，而不是返回一个新值，请像这样将方法标记为突变：</p>



<pre class="wp-block-code"><code>extension String {
    mutating func trim() {
        self = self.trimmed()
    }
}

quote.trim()
</code></pre>



<p>扩展还可以为类型添加计算属性，比如这个：</p>



<pre class="wp-block-code"><code>extension String {
    var lines: &#91;String] {
        self.components(separatedBy: .newlines)
    }
}
</code></pre>



<p><strong><code>components(separatedBy:)</code></strong>&nbsp;方法使用我们选择的边界（在本例中是新行）将字符串分割成字符串数组。</p>



<p>现在，我们可以在所有字符串中使用该属性：</p>



<pre class="wp-block-code"><code>let lyrics = """
But I keep cruising
Can't stop, won't stop moving
"""

print(lyrics.lines.count)
</code></pre>



<h2 class="wp-block-heading">协议扩展（<strong>Protocol extensions）</strong></h2>



<p>协议扩展扩展了整个协议，添加了计算属性和方法实现，因此任何符合该协议的类型都能获得它们。</p>



<p>例如，数组（Array）、字典（Dictionary）和集合（Set）都符合**<code>Collection</code>**协议，因此我们可以像这样为它们添加计算属性：</p>



<pre class="wp-block-code"><code>extension Collection {
    var isNotEmpty: Bool {
        isEmpty == false
    }
}
</code></pre>



<p>现在我们可以派上用场了：</p>



<pre class="wp-block-code"><code>let guests = &#91;"Mario", "Luigi", "Peach"]

if guests.isNotEmpty {
    print("Guest count: \(guests.count)")
}
</code></pre>



<p>这种方法意味着我们可以在协议中列出所需的方法，然后在协议扩展中添加这些方法的默认实现。然后，所有符合要求的类型都可以使用这些默认实现，或根据需要提供自己的实现。</p>



<h2 class="wp-block-heading">可选项（<strong>Optionals）</strong></h2>



<p>可选项表示没有数据，例如，可选项可以区分数值为 0 的整数和没有数值的整数。</p>



<p>要了解可选项的作用，请看这段代码：</p>



<pre class="wp-block-code"><code>let opposites = &#91;
    "Mario": "Wario",
    "Luigi": "Waluigi"
]

let peachOpposite = opposites&#91;"Peach"]
</code></pre>



<p>它试图读取连接到键 “Peach”的值，而这个键并不存在，所以它不可能是一个普通字符串。Swift 的解决方案被称为可选项，即可能存在也可能不存在的数据。</p>



<p>一个可选字符串可能有一个字符串在里面等着我们，也可能什么都没有——一个叫做 nil 的特殊值，意思是 “无值”。任何类型的数据都可以是可选的，包括 Int、Double 和 Bool，以及枚举、结构体和类的实例。</p>



<p>Swift 不会让我们直接使用可选数据，因为它可能是空的。这意味着我们需要解包可选数据才能使用它——我们需要查看其内部是否存在值，如果存在，则取出并使用它。</p>



<p>Swift 提供了几种解包可选项的方法，但你最常见的方法是这样的：</p>



<pre class="wp-block-code"><code>if let marioOpposite = opposites&#91;"Mario"] {
    print("Mario's opposite is \(marioOpposite)")
}
</code></pre>



<p>这将从字典中读取可选值，如果可选值内有字符串，则将其解包——字符串将被放入&nbsp;<strong><code>marioOpposite</code></strong>&nbsp;常量中，不再是可选值。由于我们已经解开了可选值，因此条件成功，**<code>print()</code>**代码也就运行了。</p>



<h2 class="wp-block-heading">用 guard 解包可选项</h2>



<p>Swift 还有第二种解包可选项的方法，称为&nbsp;<strong><code>guard let</code></strong>，它与&nbsp;<strong><code>if let</code></strong>&nbsp;非常相似，只是相反：如果可选项有值，<strong><code>if let</code></strong>&nbsp;会运行括号内的代码；如果可选项没有值，<strong><code>guard let</code></strong>&nbsp;会运行代码。</p>



<p>它看起来像这样：</p>



<pre class="wp-block-code"><code>func printSquare(of number: Int?) {
    guard let number = number else {
        print("Missing input")
        return
    }

    print("\(number) x \(number) is \(number * number)")
}
</code></pre>



<p>如果使用&nbsp;<strong><code>guard</code></strong>&nbsp;检查函数的输入是否有效，Swift 要求在检查失败时使用&nbsp;<strong><code>return</code></strong>。但是，如果你正在解包的可选项内部有一个值，你可以在&nbsp;<strong><code>guard</code></strong>&nbsp;代码结束后使用它。</p>



<p>提示：你可以在任何条件下使用 guard，包括不解除可选项的条件。</p>



<h2 class="wp-block-heading">空聚合（<strong>Nil coalescing）</strong></h2>



<p>Swift 还有第三种解包可选项的方法，称为空聚合操作符（nil coalescing operator），它可以解包可选项，并在可选项为空时提供默认值：</p>



<pre class="wp-block-code"><code>let tvShows = &#91;"Archer", "Babylon 5", "Ted Lasso"]
let favorite = tvShows.randomElement() ?? "None"
</code></pre>



<p>在创建可选项的许多地方，空聚合操作符都很有用。例如，从字符串创建整数时会返回一个可选的&nbsp;<strong><code>Int?</code></strong>&nbsp;在这里，我们可以使用空聚合提供一个默认值：</p>



<pre class="wp-block-code"><code>let input = ""
let number = Int(input) ?? 0
print(number)
</code></pre>



<h2 class="wp-block-heading">可选项链（<strong>Optional chaining）</strong></h2>



<p>可选项链读取可选项内的可选项，就像这样：</p>



<pre class="wp-block-code"><code>let names = &#91;"Arya", "Bran", "Robb", "Sansa"]
let chosen = names.randomElement()?.uppercased()
print("Next in line: \(chosen ?? "No one")")
</code></pre>



<p>可选项链在第 2 行：一个问号，后面跟着更多代码。它允许我们说：“如果可选项里面有一个值，那么就把它拆开&#8230;&#8230; ”并添加更多代码。在我们的例子中，我们说的是 “如果我们从数组中得到了一个随机元素，就把它大写”。</p>



<h2 class="wp-block-heading">可选项try?（Optional try?）</h2>



<p>当调用一个可能会出错的函数时，我们可以使用&nbsp;<strong><code>try?</code></strong>&nbsp;将其结果转换为一个可选项，在成功时包含一个值，反之则为&nbsp;<strong><code>nil</code></strong>。</p>



<p>如下所示：</p>



<pre class="wp-block-code"><code>enum UserError: Error {
    case badID, networkFailed
}

func getUser(id: Int) throws -&gt; String {
    throw UserError.networkFailed
}

if let user = try? getUser(id: 23) {
    print("User: \(user)")
}
</code></pre>



<p><strong><code>getUser()</code></strong>&nbsp;函数总是会抛出&nbsp;<strong><code>networkFailed</code></strong>，但我们并不关心抛出的是什么，我们只关心调用是否发回了用户。</p>



<h2 class="wp-block-heading">总结</h2>



<p>至此，我们一起学习了 Swift 语言的大部分基础知识，但实际上我们只是触及了这门语言的皮毛。幸运的是，我们所学到的知识已经足以让你使用 Swift 和 SwiftUI 构建一些出色的软件。</p>



<p>接下来，我们将开始学习SwiftUI来创建一些简单的App，如果你有兴趣请继续关注我的教程。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/tech/1774/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>怪物猎人：荒野 剧情模式录影</title>
		<link>https://beautylife-studio.top/2025/lifegame/1770/</link>
					<comments>https://beautylife-studio.top/2025/lifegame/1770/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Sun, 30 Mar 2025 05:12:55 +0000</pubDate>
				<category><![CDATA[LifeGame]]></category>
		<category><![CDATA[怪物猎人：荒野]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1770</guid>

					<description><![CDATA[CAPCOM怪物猎人系列最新作]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">第1集 开篇 驰骋沙原</h2>



<iframe width="880" height="495" src="https://www.youtube.com/embed/8mS21zGceu0?si=H-wlgEZWZ5wVzpxf" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第2集 击杀炎尾龙</h2>



<iframe width="880" height="495" src="https://www.youtube.com/embed/cRQet_xiDVE?si=f9OUYzJNkb6SVwcq" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifegame/1770/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>LifeGame 2024~2025 PlayList</title>
		<link>https://beautylife-studio.top/2025/lifegame/1577/</link>
					<comments>https://beautylife-studio.top/2025/lifegame/1577/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Sun, 30 Mar 2025 05:07:41 +0000</pubDate>
				<category><![CDATA[LifeGame]]></category>
		<category><![CDATA[LifeGame2024~2025]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1577</guid>

					<description><![CDATA[2024~2025年度所玩过的游戏简评]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="297" height="447" src="https://beautylife-studio.top/wp-content/uploads/2024/11/s34652266.jpg" alt="" class="wp-image-1582" srcset="https://beautylife-studio.top/wp-content/uploads/2024/11/s34652266.jpg 297w, https://beautylife-studio.top/wp-content/uploads/2024/11/s34652266-199x300.jpg 199w" sizes="(max-width: 297px) 100vw, 297px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">女神异闻录3 重制版    Persona 3 Reload</h4>



<p>日本ATLUS / SEGA</p>



<p>RPG 角色扮演</p>



<p>2024年9月30日通关    2024年11月6日白金</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>72小时通关，但距离白金奖杯还差一个社群全体MAX和二周目。结局异常感人，但之所以给了四颗星，是因为过程似乎还配不上这个伟大的结局，差了那么一些细节。</p>



<p>114小时白金+通关埃葵丝后日谈，总算完结了！</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="324" height="408" src="https://beautylife-studio.top/wp-content/uploads/2024/11/s33524324.jpg" alt="" class="wp-image-1585" srcset="https://beautylife-studio.top/wp-content/uploads/2024/11/s33524324.jpg 324w, https://beautylife-studio.top/wp-content/uploads/2024/11/s33524324-238x300.jpg 238w" sizes="auto, (max-width: 324px) 100vw, 324px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">如龙 7：光与暗的去向    龍が如く7 光と闇の行方</h4>



<p>日本 SEGA</p>



<p>RPG 角色扮演</p>



<p>2024年12月28日通关·110小时</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>如龙系列我从0开始玩一个都没有拉下，一直玩到这个7，变成了回合制，正因为回合制的改变，我不得不强制自己练级来推进进度和攻打boss，这也是我第一次将主角团练到了顶级99级，打最终boss时毫不费力，也正因为此感受到了和从前如龙系列不同的内容，感受到了这个游戏制作者的用心。如龙7可能并不一定是最好的如龙游戏，但一定是比前作要更好的游戏。期待接下来要玩的如龙7外传和如龙8。PS：游戏尾声处的春日一番的演出非常真实化，让人感受不到是在看CG，而是在看电影的感觉。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img decoding="async" src="https://beautylife-studio.top/wp-content/uploads/2024/11/tempImageFVa4N7.heic" alt="" class="wp-image-1603"/></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">如龙 维新！极 龍が如く 維新! 極</h4>



<p>日本 SEGA</p>



<p>RPG 角色扮演</p>



<p>2024年12月9日通关</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆&nbsp;</p>



<p>29小时通关。感觉故事性很好，连贯而富含悬疑，把维新历史人物的各种故事结合起来并串以杜撰的内容，竟然还一点都不违和。不错！</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="600" height="900" src="https://beautylife-studio.top/wp-content/uploads/2024/12/IMG_0351.webp" alt="" class="wp-image-1635" srcset="https://beautylife-studio.top/wp-content/uploads/2024/12/IMG_0351.webp 600w, https://beautylife-studio.top/wp-content/uploads/2024/12/IMG_0351-200x300.webp 200w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">最终幻想7: 重生 ·FINAL FANTASY VII: REBIRTH</h4>



<p>日本 SQUARE ENIX</p>



<p>RPG 角色扮演</p>



<p>2025年2月18日通关·122小时56分钟</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆&nbsp;</p>



<p>123小时通关，中间有些内容打了两遍，这也是我第一部把全程游玩过程录影下来的游戏，我上传到了哔哩哔哩上。我的完成度还算可以，全支线只剩下最后和神罗科长的小游戏对决，全探索+全魔晶石开发+全召唤兽，战斗模拟器没有完成，因为实在是太肝了。FF7RB要比前作更加丰富，剧情也更加丰满，唯一可惜的就是有些流程被小游戏妨碍，显得有点莫名，但整体来说这一部的确是一部非常优秀的RPG游戏，也希望第三部重制作品能够超越这一部的水平。最后结尾的处理，让爱丽丝的死没有让人那么悲伤，这似乎是为了照顾老玩家的心情，但却也冲淡了整部游戏剧情的感人情怀。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="285" height="465" src="https://beautylife-studio.top/wp-content/uploads/2024/12/IMG_0258.jpeg" alt="" class="wp-image-1632" srcset="https://beautylife-studio.top/wp-content/uploads/2024/12/IMG_0258.jpeg 285w, https://beautylife-studio.top/wp-content/uploads/2024/12/IMG_0258-184x300.jpeg 184w" sizes="auto, (max-width: 285px) 100vw, 285px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">逆转裁判123 成步堂精选集·逆転裁判123 成歩堂セレクション</h4>



<p>日本 CAPCOM</p>



<p>AVG 文字冒险</p>



<p>2025年1月10日通关并白金·65小时17分钟</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>逆转裁判123是我唯一一款在NS和PS上都购买了的游戏，我反反复复玩了将近4遍，吸引人的案情、幽默的对话、有趣的人物刻画，特别是第三部暗埋伏笔又互为铺垫的连续案件异常引人入胜。唯一的缺点可能就是重制版没能有真人语音对话而略显遗憾了吧！</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="639" height="843" src="https://beautylife-studio.top/wp-content/uploads/2024/12/cover.jpg" alt="" class="wp-image-1690" srcset="https://beautylife-studio.top/wp-content/uploads/2024/12/cover.jpg 639w, https://beautylife-studio.top/wp-content/uploads/2024/12/cover-227x300.jpg 227w" sizes="auto, (max-width: 639px) 100vw, 639px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">逆转检察官1&amp;2 御剑精选集 [逆転検事1&amp;2 御剣セレクション]</h4>



<p>日本 CAPCOM</p>



<p>AVG 文字冒险</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="474" height="651" src="https://beautylife-studio.top/wp-content/uploads/2025/02/OIP-C.RZxX_FUwc-2I8M_nyfuGQQHaKL.jpeg" alt="" class="wp-image-1752" srcset="https://beautylife-studio.top/wp-content/uploads/2025/02/OIP-C.RZxX_FUwc-2I8M_nyfuGQQHaKL.jpeg 474w, https://beautylife-studio.top/wp-content/uploads/2025/02/OIP-C.RZxX_FUwc-2I8M_nyfuGQQHaKL-218x300.jpeg 218w" sizes="auto, (max-width: 474px) 100vw, 474px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">暗喻幻想：ReFantazio [Metaphor: ReFantazio]</h4>



<p>日本 ATLUS / SEGA</p>



<p>RPG 角色扮演</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="258" height="387" src="https://beautylife-studio.top/wp-content/uploads/2025/02/Monster_Hunter_Wilds.jpeg" alt="" class="wp-image-1766" srcset="https://beautylife-studio.top/wp-content/uploads/2025/02/Monster_Hunter_Wilds.jpeg 258w, https://beautylife-studio.top/wp-content/uploads/2025/02/Monster_Hunter_Wilds-200x300.jpeg 200w" sizes="auto, (max-width: 258px) 100vw, 258px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">怪物猎人：荒野 [MONSTER HUNTER: WILDS]</h4>



<p>日本 CAPCOM</p>



<p>ARPG 动作角色扮演</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="258" height="387" src="https://beautylife-studio.top/wp-content/uploads/2025/02/劍星.jpg" alt="" class="wp-image-1767" srcset="https://beautylife-studio.top/wp-content/uploads/2025/02/劍星.jpg 258w, https://beautylife-studio.top/wp-content/uploads/2025/02/劍星-200x300.jpg 200w" sizes="auto, (max-width: 258px) 100vw, 258px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">剑星 【Stellar Blade】</h4>



<p>韩国 SHIFT UP / SIE</p>



<p>A-AVG 动作冒险</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="258" height="387" src="https://beautylife-studio.top/wp-content/uploads/2025/02/Dragons_Dogma_2_cover_art.jpg" alt="" class="wp-image-1768" srcset="https://beautylife-studio.top/wp-content/uploads/2025/02/Dragons_Dogma_2_cover_art.jpg 258w, https://beautylife-studio.top/wp-content/uploads/2025/02/Dragons_Dogma_2_cover_art-200x300.jpg 200w" sizes="auto, (max-width: 258px) 100vw, 258px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">龙之信条2 【Dragon&#8217;s Dogma II】</h4>



<p>日本 CAPCOM</p>



<p>RPG 角色扮演</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifegame/1577/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>FINAL FANTASY VII REBIRTH &#8211; 全剧情游玩记录</title>
		<link>https://beautylife-studio.top/2025/lifegame/1648/</link>
					<comments>https://beautylife-studio.top/2025/lifegame/1648/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Wed, 19 Feb 2025 10:57:23 +0000</pubDate>
				<category><![CDATA[LifeGame]]></category>
		<category><![CDATA[FINAL FANTASY VII]]></category>
		<category><![CDATA[游戏实况]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1648</guid>

					<description><![CDATA[最终幻想7重制版第二部，全剧情游玩录影]]></description>
										<content:encoded><![CDATA[
<p>《最终幻想7：重生》是SQUARE ENIX重制最终幻想7游戏的第二部，2024年发行在PS5上独占一年。我一直都想玩，但因为没有太多的时间，最近终于决定利用一些碎片时间来完整体会一下这部重制版第二部的魅力。本页面就是记录我完整通关的过程视频，用以记录，并供所有网友观看。</p>



<h2 class="wp-block-heading">第1话 &#8211; 回到尼福尔海姆</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113758349296104&#038;bvid=BV1aY6BYKEPa&#038;cid=27662026181&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第2话 &#8211; 调查魔晄炉</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113764825368053&#038;bvid=BV1pm6mYmELY&#038;cid=27683521084&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第3话 &#8211; 尼福尔海姆惨剧</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113769137115047&#038;bvid=BV1abrHYZEL4&#038;cid=27694992719&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第4话 &#8211; 逃避追兵</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113774019219009&#038;bvid=BV1Y5rPY5EbQ&#038;cid=27709997668&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第5话 &#8211; 格林牧场</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113779740313502&#038;bvid=BV1F7rGYLEW6&#038;cid=27726512394&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第6话 &#8211; 万能帮手</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113785863931750&#038;bvid=BV1MtrSYAEky&#038;cid=27743618846&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第7话 &#8211; 打牌高手</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113792256051056&#038;bvid=BV1wgrYY6E32&#038;cid=27763150201&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第8话 &#8211; 贝格公司</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113804687970291&#038;bvid=BV1yrcnebE7v&#038;cid=27800830761&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第9话 &#8211; 召唤兽泰坦</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/FeM0r_NK0wA?si=pf_xvBpDVWTZF-tL" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第10话 &#8211; 越过湿地</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/caSJID8vFoU?si=gOVhYuKihYvI9cPU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第11话 &#8211; 秘银矿迷宫</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/uLr5B5j0x84?si=ETy2IwVVNGnBpYlE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第12话 &#8211; 登山陆行鸟</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/AgliY3tqre8?si=Nm4tQ8BL8t1bSVIa" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第13话 &#8211; 尤菲登场</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/3geDMQRldCQ?si=S8S0JqhYvJHZ5uhM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第14话 &#8211; 探索下珠诺</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/l7uH1seVHgs?si=kLyHLM3tt0642CIg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第15话 &#8211; 探索下珠诺 2</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/_sqTkbyOqzQ?si=2q6TXVJxxanNRIGB" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第16话 &#8211; 兀鹰堡垒</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/IBySe5QIvFk?si=VMVT2V6uat0LsktY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第17话 &#8211; 万能帮手珠诺分店</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/MEWOk7nFaK0?si=hSoh6v8tpWPkoa8e" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第18话 &#8211; 神罗总裁奖</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/RUltVfvKzIw?si=7QViBMTYFoH_5YLU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第19话 &#8211; 偷渡</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/6k60nsErpOM?si=KdCJ49JhnGMFP-FY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第20话 &#8211; 女王之血大奖赛</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/gzu-TSGC3HU?si=UIdP582aXjmexAx0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第21话 &#8211; 海上惊魂夜</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/itXjgp6sbME?si=oHI3Bi2X7aA4oEYD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第22话 &#8211; 太阳乐园</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/4l0sT5n36OE?si=O1EralqSFwPr3gHK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第23话 &#8211; 阳光海滩</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/KFFuYiXfRPU?si=ESZEcgStOVe1Fs68" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第24话 &#8211; 假期结束</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/Rci2OIImsNo?si=JQCwOb44qqvwUsrf" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第25话 &#8211; 万能帮手太阳海岸篇</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/700rIxd2RPE?si=XNrASrMTLLXo-uYo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第26话 &#8211; 登上科雷陆山</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/hBQZzCW3vJU?si=QpYFIRT_IZMn-spY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第27话 &#8211; 大显身手的尤菲</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/zK9xH3kSo04?si=jQkaTLTp8DeELmjQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第28话 &#8211; 衰落的村庄</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/wou082fu3k8?si=AQwqWW4apdXASGVy" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第29话 &#8211; 鬼屋酒店</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/IoOXBHvKc4A?si=t2aU_cSjB9nTygtv" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h2 class="wp-block-heading">第30话 &#8211; 金蝶游乐园</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/t0EXlKZZuYo?si=daiXgrJE77eWveqm" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifegame/1648/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>【暗喻幻想：ReFantazio】全剧情游玩记录</title>
		<link>https://beautylife-studio.top/2025/lifegame/1755/</link>
					<comments>https://beautylife-studio.top/2025/lifegame/1755/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Wed, 19 Feb 2025 10:55:49 +0000</pubDate>
				<category><![CDATA[LifeGame]]></category>
		<category><![CDATA[暗喻幻想]]></category>
		<category><![CDATA[游戏实况]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1755</guid>

					<description><![CDATA[2024年TGA最佳RPG游戏]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">第1话 序章 阿基态觉醒</h2>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/6mIbg4m3tyA?si=RutDf0x1o3gQkvTN" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifegame/1755/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>逆转检察官1&#038;2 御剑精选集 全剧情流程实况</title>
		<link>https://beautylife-studio.top/2025/lifegame/1693/</link>
					<comments>https://beautylife-studio.top/2025/lifegame/1693/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Sun, 02 Feb 2025 08:45:28 +0000</pubDate>
				<category><![CDATA[LifeGame]]></category>
		<category><![CDATA[逆转检察官1&2]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1693</guid>

					<description><![CDATA[第1部 第1话 &#8211; 逆转的访客 第1节 前篇 第2节 后篇 完结 第2话 &#8211; 逆转的客]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">第1部</h1>



<hr class="wp-block-separator has-alpha-channel-opacity is-style-default"/>



<h2 class="wp-block-heading">第1话 &#8211; 逆转的访客</h2>



<h3 class="wp-block-heading">第1节 前篇</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/02kVhchLarI?si=EpH3ep8x5lMKsfSY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h3 class="wp-block-heading">第2节 后篇 完结</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/VZ15RxLV3n0?si=wuZOOhM-IrB-aOZi" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">第2话 &#8211; 逆转的客机</h2>



<h3 class="wp-block-heading">第1节 前篇</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/sMfgfC11gQY?si=v_0DoN5PSR9ZOfW8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h3 class="wp-block-heading">第2节 中篇</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/bF4iPbgcR5U?si=9uh1a-RPditY1FjJ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h3 class="wp-block-heading">第3节 后篇1</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/gNcZ6H6Veyw?si=1wDKp_BVkc8HIQX6" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h3 class="wp-block-heading">第4节 后篇2 结局</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/u8gE6gidsEM?si=-btg5YpwlBCCJJWK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">第3话 &#8211; 绑票的逆转</h2>



<h3 class="wp-block-heading">第1节 前篇 开场</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/5m9gW2Mo9Xo?si=JPf3eKdpC_ROte9b" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h3 class="wp-block-heading">第2节 中篇 找出目击者</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/RKbbwnKX7pU?si=eJMYnwJop6D1K87H" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h3 class="wp-block-heading">第3节 中篇 与丈一郎等人会合</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/jmnh52YhZak?si=gEHZPw3uIKreTiLK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>



<h3 class="wp-block-heading">第4节 后篇 最终对决 前半段</h3>



<iframe loading="lazy" width="880" height="495" src="https://www.youtube.com/embed/vvpcuNWBzjo?si=IC5Q31JkqAPoAYZa" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifegame/1693/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>逆转裁判123 成步堂精选集-第3部第5章游玩实况</title>
		<link>https://beautylife-studio.top/2025/lifegame/1639/</link>
					<comments>https://beautylife-studio.top/2025/lifegame/1639/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Sun, 12 Jan 2025 09:45:42 +0000</pubDate>
				<category><![CDATA[LifeGame]]></category>
		<category><![CDATA[游戏实况]]></category>
		<category><![CDATA[逆转裁判123]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1639</guid>

					<description><![CDATA[逆转裁判123最经典的一案，全流程游玩实况录影。]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">第1节 &#8211; 调查前篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113757023895920&#038;bvid=BV1M76qYtE7k&#038;cid=27656916939&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<p>第1节是案件的开始，成步堂和真宵、春美一起前往叶樱院参加修行，于是在第一晚遇见了凶杀案。</p>



<h2 class="wp-block-heading">第2节 &#8211; 调查后篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113765043407754&#038;bvid=BV1FX6mY5Ebx&#038;cid=27684372663&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<p>御剑被矢张从国外叫回，代替成步堂进行调查并答应为被告人辩护。</p>



<h2 class="wp-block-heading">第3节 &#8211; 第一次法庭前篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113774103105157&#038;bvid=BV1shrPYYEeq&#038;cid=27710458515&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<p>御剑代替成步堂站上法庭为被告人辩护，没想到对方检察官竟然是……</p>



<h2 class="wp-block-heading">第4节 &#8211; 第一次法庭后篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113779790643469&#038;bvid=BV1wGrGYUEyZ&#038;cid=27726840404&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<p>御剑将矢张拖上法庭证人席，却没想到矢张展示出一份惊人的证据震惊全场所有人。</p>



<h2 class="wp-block-heading">第5节 &#8211; 第二次调查前篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113786014928811&#038;bvid=BV1ABrSYxEAh&#038;cid=27744534826&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<p>成步堂带病去现场考察，胧桥总算修好可以到达对岸了，可是……</p>



<h2 class="wp-block-heading">第6节 &#8211; 第二次调查后篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113790897096601&#038;bvid=BV1iZrhYfER1&#038;cid=27758366581&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<p>成步堂通过调查终于掌握了案件的真正背景，接下来就等法庭上见了！</p>



<h2 class="wp-block-heading">第7节 &#8211; 第二次法庭前篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113798765677129&#038;bvid=BV1z9rkYwEp5&#038;cid=27781892664&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第8节 &#8211; 第二次法庭后篇</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113798966938157&#038;bvid=BV1tvrkY5Ea9&#038;cid=27783729010&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>



<h2 class="wp-block-heading">第9节 &#8211; 第二次法庭后篇2 大结局</h2>



<iframe src="//player.bilibili.com/player.html?isOutside=true&#038;aid=113808194404746&#038;bvid=BV16LcweeEXU&#038;cid=27809415235&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 500px; max-width: 100%；align:center; padding:20px 0;"></iframe>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifegame/1639/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>LifeTV 2025 ShowList</title>
		<link>https://beautylife-studio.top/2025/lifetv/1562/</link>
					<comments>https://beautylife-studio.top/2025/lifetv/1562/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Sun, 05 Jan 2025 09:54:37 +0000</pubDate>
				<category><![CDATA[LifeTV]]></category>
		<category><![CDATA[LifeTV 2025]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1562</guid>

					<description><![CDATA[一半，蓝色 日剧 156集 2024年9月4日～ 迷离三角 日剧 11集 2025年1月5日～]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image is-style-rounded">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1536" height="600" src="https://beautylife-studio.top/wp-content/uploads/2024/11/day.jpg" alt="" class="wp-image-1566" style="object-fit:cover" srcset="https://beautylife-studio.top/wp-content/uploads/2024/11/day.jpg 1536w, https://beautylife-studio.top/wp-content/uploads/2024/11/day-300x117.jpg 300w, https://beautylife-studio.top/wp-content/uploads/2024/11/day-1024x400.jpg 1024w, https://beautylife-studio.top/wp-content/uploads/2024/11/day-768x300.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></figure>
</div>


<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="724" src="https://beautylife-studio.top/wp-content/uploads/2024/08/p2515703182.jpg" alt="" class="wp-image-1530" srcset="https://beautylife-studio.top/wp-content/uploads/2024/08/p2515703182.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/08/p2515703182-212x300.jpg 212w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">一半，蓝色</h4>



<p>日剧</p>



<p>156集</p>



<p>2024年9月4日～</p>
</div>
</div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="400" src="https://beautylife-studio.top/wp-content/uploads/2024/11/night-1024x400.jpg" alt="" class="wp-image-1567" srcset="https://beautylife-studio.top/wp-content/uploads/2024/11/night-1024x400.jpg 1024w, https://beautylife-studio.top/wp-content/uploads/2024/11/night-300x117.jpg 300w, https://beautylife-studio.top/wp-content/uploads/2024/11/night-768x300.jpg 768w, https://beautylife-studio.top/wp-content/uploads/2024/11/night.jpg 1536w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="450" height="608" src="https://beautylife-studio.top/wp-content/uploads/2025/01/p2524794017.jpg" alt="" class="wp-image-1672" srcset="https://beautylife-studio.top/wp-content/uploads/2025/01/p2524794017.jpg 450w, https://beautylife-studio.top/wp-content/uploads/2025/01/p2524794017-222x300.jpg 222w" sizes="auto, (max-width: 450px) 100vw, 450px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">迷离三角</h4>



<p>日剧</p>



<p>11集</p>



<p>2025年1月5日～</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifetv/1562/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>LifeTV 2024 PlayList</title>
		<link>https://beautylife-studio.top/2025/lifetv/1234/</link>
					<comments>https://beautylife-studio.top/2025/lifetv/1234/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Sun, 05 Jan 2025 09:41:53 +0000</pubDate>
				<category><![CDATA[LifeTV]]></category>
		<category><![CDATA[LifeTV 2024]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1234</guid>

					<description><![CDATA[2024年看过的剧集]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">早间档</h2>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="723" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2183608747.jpg" alt="" class="wp-image-1235" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2183608747.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2183608747-212x300.jpg 212w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">花子与安妮</h4>



<p>日剧</p>



<p>156集</p>



<p>2023年10月26日开播</p>



<p>2024年1月11日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>晨间剧的经典剧情模式，人的一生所能经历的所有故事，不少细节都很真实，值得一看。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2887163219.jpg" alt="" class="wp-image-1236" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2887163219.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2887163219-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">今晚是寿喜烧哦</h4>



<p>日剧</p>



<p>12集</p>



<p>2024年1月12日开播</p>



<p>2024年1月20日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>没想到意外的好看，生活味的日剧总是比较不错。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="722" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2898983410.jpg" alt="" class="wp-image-1237" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2898983410.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2898983410-213x300.jpg 213w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">别穿越时空了，恋人们</h4>



<p>日剧</p>



<p>11集</p>



<p>2024年1月21日START</p>



<p>2024年1月30日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>这编剧……真幼稚</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="727" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2868833454.jpg" alt="" class="wp-image-1238" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2868833454.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2868833454-211x300.jpg 211w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">复仇的未亡人</h4>



<p>日剧</p>



<p>8集</p>



<p>2024年1月31日START</p>



<p>2024年2月7日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★☆☆☆</p>



<p>这是什么乱七八糟的结尾…</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="361" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2890806883.jpg" alt="" class="wp-image-1239" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2890806883.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2890806883-300x212.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">月读君的禁忌夜宵</h4>



<p>日剧</p>



<p>9集</p>



<p>2024年2月8日START</p>



<p>2024年2月26日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>要想征服一个女人也要征服她的胃，是想表达这个意思吗？</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="288" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2884737020.jpg" alt="" class="wp-image-1240" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2884737020.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2884737020-300x169.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">A2Z</h4>



<p>日剧</p>



<p>10集</p>



<p>2024年2月27日START</p>



<p>2024年4月10日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>这故事的构思有点莫名其妙。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2899478202.jpg" alt="" class="wp-image-1241" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2899478202.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2899478202-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">单身花日</h4>



<p>日剧</p>



<p>9集</p>



<p>2024年4月11日START</p>



<p>2024年4月20日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★☆☆☆</p>



<p>如此狗血的剧情以及演得像个傻子的重冈大毅。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2905408098.jpg" alt="" class="wp-image-1363" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2905408098.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2905408098-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">三体 第1季</h4>



<p>美剧</p>



<p>8集</p>



<p>2024年4月21日START</p>



<p>2024年4月23日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>抛开与原作的对比，本剧其实拍得很不错了。期待第二季。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="728" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2628664478.jpg" alt="" class="wp-image-1254" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2628664478.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2628664478-211x300.jpg 211w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">相棒 Season 1</h4>



<p>日剧</p>



<p>12集</p>



<p>2024年4月23日START</p>



<p>2024年5月1日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>案件比较新颖，且都具有现实意义。表现手法也比较有趣，更何况是20多年前的电视剧。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="362" src="https://beautylife-studio.top/wp-content/uploads/2024/05/p2906611624.jpg" alt="" class="wp-image-1397" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/p2906611624.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/p2906611624-300x212.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">夫妻圆满秘诀</h4>



<p>日剧</p>



<p>11集</p>



<p>2024年5月16日START</p>



<p>2024年5月27日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★☆☆☆☆</p>



<p>拍这种片子有什么意义吗？</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="683" src="https://beautylife-studio.top/wp-content/uploads/2024/05/p2274818219.jpg" alt="" class="wp-image-1407" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/p2274818219.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/p2274818219-225x300.jpg 225w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">高堡奇人 第1季</h4>



<p>美剧</p>



<p>10集</p>



<p>2024年5月28日START</p>



<p>2024年6月29日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>节奏过于缓慢，进度不佳。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/06/p2537260949.jpg" alt="" class="wp-image-1445" srcset="https://beautylife-studio.top/wp-content/uploads/2024/06/p2537260949.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/06/p2537260949-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">高堡奇人 第2季</h4>



<p>美剧</p>



<p>10集</p>



<p>2024年6月30日START</p>



<p>2024年7月28日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>第二季的节奏比第一季要好，但还是比较拖，激励人一直看下去的点依然不足。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="746" src="https://beautylife-studio.top/wp-content/uploads/2024/07/p2532157140.jpg" alt="" class="wp-image-1480" srcset="https://beautylife-studio.top/wp-content/uploads/2024/07/p2532157140.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/07/p2532157140-206x300.jpg 206w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">高堡奇人 第3季</h4>



<p>美剧</p>



<p>10集</p>



<p>2024年7月30日START</p>



<p>2024年8月31日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>节奏慢得有点受不了</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/08/p2572140417.jpg" alt="" class="wp-image-1527" srcset="https://beautylife-studio.top/wp-content/uploads/2024/08/p2572140417.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/08/p2572140417-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">高堡奇人 第4季</h4>



<p>美剧</p>



<p>10集</p>



<p>2024年9月1日START</p>



<p>2024年9月4日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★☆☆☆</p>



<p>不行了，实在受不了的节奏慢，只能半途而废。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="716" src="https://beautylife-studio.top/wp-content/uploads/2024/11/p2914989752.jpg" alt="" class="wp-image-1575" srcset="https://beautylife-studio.top/wp-content/uploads/2024/11/p2914989752.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/11/p2914989752-215x300.jpg 215w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">各自孤独的美食家</h4>



<p>日剧</p>



<p>12集</p>



<p>2024年11月1日～</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>这一部孤独的美食家是最差的一部，拍的太刻意了，演得也太刻意了。</p>
</div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity is-style-dots"/>



<h2 class="wp-block-heading">午间档</h2>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2552819525.jpg" alt="" class="wp-image-1244" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2552819525.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2552819525-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">少年谢尔顿 第1季</h4>



<p>美剧</p>



<p>22集</p>



<p>2023年12月16日START</p>



<p>2023年12月25日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★★</p>



<p>9岁的谢尔顿比30岁的谢尔顿可爱1万倍！</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="682" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2559974952.jpg" alt="" class="wp-image-1245" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2559974952.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2559974952-225x300.jpg 225w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">少年谢尔顿 第2季</h4>



<p>美剧</p>



<p>22集</p>



<p>2023年12月26日START</p>



<p>2024年1月2日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>最后一集很是感触。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2567488952.jpg" alt="" class="wp-image-1247" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2567488952.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2567488952-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">少年谢尔顿 第3季</h4>



<p>美剧</p>



<p>21集</p>



<p>2024年1月3日START</p>



<p>2024年1月11日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>谢尔顿这坏脾气到底是怎么养成的？</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2626421391.jpg" alt="" class="wp-image-1249" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2626421391.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2626421391-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">少年谢尔顿 第4季</h4>



<p>美剧</p>



<p>18集</p>



<p>2024年1月12日START</p>



<p>2024年1月20日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>第四季略显不足，特别是最后一集感觉没有起伏性。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="737" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2692536045.jpg" alt="" class="wp-image-1250" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2692536045.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2692536045-208x300.jpg 208w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">少年谢尔顿 第5季</h4>



<p>22集</p>



<p>2024年1月21日START</p>



<p>2024年1月29日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>第五季谢尔顿的戏份有所减少，家庭成员的故事占比上升，这很好。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="512" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2888763270.jpg" alt="" class="wp-image-1251" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2888763270.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2888763270-300x300.jpg 300w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2888763270-150x150.jpg 150w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">少年谢尔顿 第6季</h4>



<p>美剧</p>



<p>22集</p>



<p>2024年1月30日START</p>



<p>2024年2月10日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★★</p>



<p>谢尔顿其实是最蠢的那个人</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2902553373.jpg" alt="" class="wp-image-1252" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2902553373.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2902553373-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">繁花</h4>



<p>30集</p>



<p>中国大陆剧</p>



<p>2024年2月10日START</p>



<p>2024年2月27日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>作为大陆剧，已经是近几年拍得最好的一部了。每个上海人都可以看一看。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="698" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2552315043.jpg" alt="" class="wp-image-1253" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2552315043.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2552315043-220x300.jpg 220w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">相棒 Pre-Season</h4>



<p>日剧</p>



<p>3集</p>



<p>2024年3月24日START</p>



<p>2024年3月28日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>开始追相棒系列，希望它一直能那么有趣。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="640" src="https://beautylife-studio.top/wp-content/uploads/2024/05/p2903443592.jpg" alt="" class="wp-image-1402" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/p2903443592.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/p2903443592-240x300.jpg 240w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">少年谢尔顿 第7季 FINAL Season</h4>



<p>美剧</p>



<p>14集</p>



<p>2024年5月28日START</p>



<p>2024年6月16日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★★</p>



<p>最后一季，最催人泪下的一季。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="705" src="https://beautylife-studio.top/wp-content/uploads/2024/05/p2872779281.jpg" alt="" class="wp-image-1410" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/p2872779281.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/p2872779281-218x300.jpg 218w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">与雪女同行吃蟹</h4>



<p>日剧</p>



<p>12集</p>



<p>2024年6月17日START</p>



<p>2024年6月19日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>不知道导演是不是想拍成公路片，但如果是，无疑比较失败，虽然故事本身是吸引人的。另外，重冈大毅怎么现在演什么角色都像个傻子？</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="381" src="https://beautylife-studio.top/wp-content/uploads/2024/05/p2499312887.jpg" alt="" class="wp-image-1413" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/p2499312887.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/p2499312887-300x223.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">下北泽 Die Hard</h4>



<p>日剧</p>



<p>11集</p>



<p>2024年6月20日START</p>



<p>2024年7月2日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>本剧属于好玩，但还谈不上有趣。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="723" src="https://beautylife-studio.top/wp-content/uploads/2024/07/p2893974835.jpg" alt="" class="wp-image-1457" srcset="https://beautylife-studio.top/wp-content/uploads/2024/07/p2893974835.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/07/p2893974835-212x300.jpg 212w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">量产型璃子-另一位模型女子的人生组装记-</h4>



<p>日剧</p>



<p>10集</p>



<p>2024年7月3日START</p>



<p>2024年7月15日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>比第一部在刻画人物个性和剧情走向上差了许多，好像只是为了做模型而去做模型。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="362" src="https://beautylife-studio.top/wp-content/uploads/2024/07/p2557266566.jpg" alt="" class="wp-image-1470" srcset="https://beautylife-studio.top/wp-content/uploads/2024/07/p2557266566.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/07/p2557266566-300x212.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">湿身侦探水野羽衣</h4>



<p>日剧</p>



<p>12集</p>



<p>2024年7月16日START</p>



<p>2024年8月26日END</p>



<p></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>无聊打发时间的搞笑剧</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="671" src="https://beautylife-studio.top/wp-content/uploads/2024/07/p2559851271.jpg" alt="" class="wp-image-1520" srcset="https://beautylife-studio.top/wp-content/uploads/2024/07/p2559851271.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/07/p2559851271-229x300.jpg 229w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">学园爆笑王</h4>



<p>日剧</p>



<p>8集</p>



<p>2024年8月27日START</p>



<p>2024年9月4日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>中国人看日本的漫才是很难感同身受的笑出来的，但本剧还是有不少笑点，最大的遗憾是数金这对组合的剧情光辉掩盖了主角的光芒，喧宾夺主了一大把！</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/09/p2172371194.jpg" alt="" class="wp-image-1532" srcset="https://beautylife-studio.top/wp-content/uploads/2024/09/p2172371194.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/09/p2172371194-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">硅谷 第1季</h4>



<p>美剧</p>



<p>8集</p>



<p>2024年9月5日START</p>



<p>2024年10月6日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★★</p>



<p>非常有趣！</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/09/p2232659084.jpg" alt="" class="wp-image-1542" srcset="https://beautylife-studio.top/wp-content/uploads/2024/09/p2232659084.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/09/p2232659084-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">硅谷 第2季</h4>



<p>美剧</p>



<p>10集</p>



<p>2024年10月7日START</p>



<p>2024年10月9日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★★</p>



<p>第二季依然乐趣非凡！</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/09/p2326045385.jpg" alt="" class="wp-image-1543" srcset="https://beautylife-studio.top/wp-content/uploads/2024/09/p2326045385.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/09/p2326045385-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">硅谷 第3季</h4>



<p>美剧</p>



<p>10集</p>



<p>2024年10月9日START</p>



<p>2024年10月17日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>第3季故事开始有些松散，笑料依然很多，但情节已不如前两季紧张。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/10/p2453170279.jpg" alt="" class="wp-image-1547" srcset="https://beautylife-studio.top/wp-content/uploads/2024/10/p2453170279.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/10/p2453170279-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">硅谷 第4季</h4>



<p>美剧</p>



<p>10集</p>



<p>2024年10月17日START</p>



<p>2024年10月20日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>这季唯一的缺点就是Richard的行为跳跃得过快。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="758" src="https://beautylife-studio.top/wp-content/uploads/2024/10/p2518967240.jpg" alt="" class="wp-image-1550" srcset="https://beautylife-studio.top/wp-content/uploads/2024/10/p2518967240.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/10/p2518967240-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">硅谷 第5季</h4>



<p>美剧</p>



<p>8集</p>



<p>2024年10月20日START</p>



<p>2024年10月23日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★★</p>



<p>绝处逢生是Richard的运气太好了。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="757" src="https://beautylife-studio.top/wp-content/uploads/2024/10/p2571694925.jpg" alt="" class="wp-image-1553" srcset="https://beautylife-studio.top/wp-content/uploads/2024/10/p2571694925.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/10/p2571694925-203x300.jpg 203w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">硅谷 第6季 最终季</h4>



<p>7集</p>



<p>美剧</p>



<p>2024年10月24日START</p>



<p>2024年10月25日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★★</p>



<p>到最后竟是一场空空！</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="346" src="https://beautylife-studio.top/wp-content/uploads/2024/10/p2562503082.jpg" alt="" class="wp-image-1557" srcset="https://beautylife-studio.top/wp-content/uploads/2024/10/p2562503082.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/10/p2562503082-300x203.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">警视厅零系：生活安全科万能咨询室 第四季</h4>



<p>日剧</p>



<p>8集</p>



<p>2024年10月25日START</p>



<p>2024年11月7日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★☆☆☆</p>



<p>挺无聊的</p>
</div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity is-style-dots"/>



<h2 class="wp-block-heading">晚间档</h2>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="683" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2200881131.jpg" alt="" class="wp-image-1256" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2200881131.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2200881131-225x300.jpg 225w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">神盾局特工 第2季</h4>



<p>美剧</p>



<p>22集</p>



<p>2023年11月7日开播</p>



<p>2024年7月24日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>这一季拖拖拉拉看了很久，终于看完了。核心人物的忠心让人很安心。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="682" src="https://beautylife-studio.top/wp-content/uploads/2024/07/p2267559189.jpg" alt="" class="wp-image-1476" srcset="https://beautylife-studio.top/wp-content/uploads/2024/07/p2267559189.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/07/p2267559189-225x300.jpg 225w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">神盾局特工 第3季</h4>



<p>美剧</p>



<p>22集</p>



<p>2024年7月24日开播</p>



<p>2024年11月20日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>实话实说，这一季好混乱。</p>
</div>
</div>



<hr class="wp-block-separator has-alpha-channel-opacity is-style-dots"/>



<h2 class="wp-block-heading">睡前档</h2>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="601" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2902671273.jpg" alt="" class="wp-image-1258" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2902671273.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2902671273-256x300.jpg 256w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">孤独のグルメ 2023大晦日スペシャル</h4>



<p>日剧</p>



<p>SP</p>



<p>2024年1月1日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>五郎老亦，还能饭否？</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="799" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2611783633.jpg" alt="" class="wp-image-1259" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2611783633.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2611783633-192x300.jpg 192w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">シェアハウスの恋人</h4>



<p>日剧</p>



<p>9集</p>



<p>2024年1月4日START</p>



<p>2024年1月13日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>虽然有不少笑点，但故事写得真有些乱七八糟。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="721" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2871028984.jpg" alt="" class="wp-image-1260" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2871028984.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2871028984-213x300.jpg 213w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">她和她的她</h4>



<p>台湾</p>



<p>9集</p>



<p>2024年1月13日START</p>



<p>2024年1月21日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>最后一集有点不够悬疑，毕竟前面赚足了疑惑，最后解惑却显得“不过如此”。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2887398850.jpg" alt="" class="wp-image-1261" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2887398850.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2887398850-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">说100万次就好了</h4>



<p>日剧</p>



<p>10集</p>



<p>2024年1月22日START</p>



<p>2024年1月26日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>最后一集真的是大败笔</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="727" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2744331233.jpg" alt="" class="wp-image-1263" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2744331233.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2744331233-211x300.jpg 211w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">日本沉没—希望之人—</h4>



<p>日剧</p>



<p>9集</p>



<p>2024年1月27日START</p>



<p>2024年1月31日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="361" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2689591437.jpg" alt="" class="wp-image-1264" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2689591437.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2689591437-300x212.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">非主角的女友</h4>



<p>日剧</p>



<p>12集</p>



<p>2024年2月1日START</p>



<p>2024年2月4日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>意外的把出轨演绎得很有趣</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="737" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2896778168.jpg" alt="" class="wp-image-1266" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2896778168.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2896778168-208x300.jpg 208w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">0.5的男人</h4>



<p>日剧</p>



<p>5集</p>



<p>2024年2月26日START</p>



<p>2024年2月27日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>很有趣的一家人</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="819" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2429575985.jpg" alt="" class="wp-image-1267" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2429575985.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2429575985-188x300.jpg 188w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">兽医杜立德</h4>



<p>日剧</p>



<p>9集</p>



<p>2024年3月23日START</p>



<p>2024年4月15日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>马马虎虎的一部有关动物和人的医疗剧。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="727" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2630036823.jpg" alt="" class="wp-image-1269" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2630036823.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2630036823-211x300.jpg 211w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">17.3关于性</h4>



<p>日剧</p>



<p>9集</p>



<p>2024年4月11日START</p>



<p>2024年4月14日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>朝日君属于不真实的理智。像他这个年纪的高中男生几乎没有他这样的冷静。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="687" src="https://beautylife-studio.top/wp-content/uploads/2024/05/p2523722823.jpg" alt="" class="wp-image-1379" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/p2523722823.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/p2523722823-224x300.jpg 224w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">相棒 Season 2</h4>



<p>日剧</p>



<p>21集</p>



<p>2024年5月2日START</p>



<p>2024年6月1日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>最后一集的浅仓死得有些太简单了点，枉费了他平成剪刀手的称号。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="738" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2869741065.jpg" alt="" class="wp-image-1333" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2869741065.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2869741065-208x300.jpg 208w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">前男友的遗书</h4>



<p>日剧</p>



<p>11集</p>



<p>2024年6月2日START</p>



<p>2024年6月30日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>出彩的是第十集，而最平淡的是最后一集，编剧是写累了吧，从没见过这么无聊的大结局。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="617" src="https://beautylife-studio.top/wp-content/uploads/2024/07/p2525173909.jpg" alt="" class="wp-image-1449" srcset="https://beautylife-studio.top/wp-content/uploads/2024/07/p2525173909.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/07/p2525173909-249x300.jpg 249w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">相棒 第3季</h4>



<p>日剧</p>



<p>19集</p>



<p>2024年7月1日START</p>



<p>2024年8月28日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="362" src="https://beautylife-studio.top/wp-content/uploads/2024/08/p2560585156.jpg" alt="" class="wp-image-1524" srcset="https://beautylife-studio.top/wp-content/uploads/2024/08/p2560585156.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/08/p2560585156-300x212.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">No Side Game</h4>



<p>日剧</p>



<p>10集</p>



<p>2024年8月29日START</p>



<p>2024年10月31日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>虽然职场斗争部分看起来有点儿戏，但球场部分却热血沸腾！</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="549" src="https://beautylife-studio.top/wp-content/uploads/2024/10/p2560743299.jpg" alt="" class="wp-image-1560" srcset="https://beautylife-studio.top/wp-content/uploads/2024/10/p2560743299.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/10/p2560743299-280x300.jpg 280w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">法医学者柚木贵志的案件</h4>



<p>日剧</p>



<p>9集</p>



<p>2024年11月1日START</p>



<p>2024年11月8日END</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>最后一集，其实完全没必要牺牲柚木医生。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/11/p2871429664.jpg" alt="" class="wp-image-1574" srcset="https://beautylife-studio.top/wp-content/uploads/2024/11/p2871429664.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/11/p2871429664-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">My Family</h4>



<p>日剧</p>



<p>10集</p>



<p>2024年11月9日～2024年11月15日</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>本剧最悲剧的人物就是东堂，编剧完全牺牲了他，导致我给本剧的评分只能是四颗星。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img decoding="async" src="https://beautylife-studio.top/wp-content/uploads/2024/11/tempImageRJTQz8.heic" alt="" class="wp-image-1590"/></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">白衣战士</h4>



<p>日剧</p>



<p>10集</p>



<p>2024年11月16日～2024年11月28日</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆&nbsp;</p>



<p>还算是有趣吧</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="724" height="1024" src="https://beautylife-studio.top/wp-content/uploads/2024/11/p2874590316-724x1024.jpg" alt="" class="wp-image-1607" srcset="https://beautylife-studio.top/wp-content/uploads/2024/11/p2874590316-724x1024.jpg 724w, https://beautylife-studio.top/wp-content/uploads/2024/11/p2874590316-212x300.jpg 212w, https://beautylife-studio.top/wp-content/uploads/2024/11/p2874590316.jpg 750w" sizes="auto, (max-width: 724px) 100vw, 724px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h4 class="wp-block-heading">被捡到的男人</h4>



<p>日剧</p>



<p>10集</p>



<p>2024年11月29日～2025年1月4日</p>



<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆&nbsp;</p>



<p>亲情、友情的故事总是很感人</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2025/lifetv/1234/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>LifeCinema 2024 PlayList</title>
		<link>https://beautylife-studio.top/2024/lifecinema/1272/</link>
					<comments>https://beautylife-studio.top/2024/lifecinema/1272/#respond</comments>
		
		<dc:creator><![CDATA[Alan C.]]></dc:creator>
		<pubDate>Sun, 17 Nov 2024 12:50:41 +0000</pubDate>
				<category><![CDATA[LifeCinema]]></category>
		<category><![CDATA[LifeCinema 2024]]></category>
		<guid isPermaLink="false">https://beautylife-studio.top/?p=1272</guid>

					<description><![CDATA[2024年看过的电影]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="759" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2891547561.jpg" alt="" class="wp-image-1273" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2891547561.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2891547561-202x300.jpg 202w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">GT赛车：极速狂飙</h4>



<p>美国</p>



<p>2023年12月16日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>看完这部电影，我立马打开PS5开了一把GT7中我心爱的M4！</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="724" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2617715563.jpg" alt="" class="wp-image-1274" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2617715563.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2617715563-212x300.jpg 212w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">罪之声</h4>



<p>日本</p>



<p>2023年12月23日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>格力高森永事件的臆想篇，不过拍得不错。有些人总是以为靠自己的力量却改变社会，改变不了便想着要报复社会，可是却不曾想他的这种行为给多少人造成了无法磨灭的痛苦。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="810" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2890258352.jpg" alt="" class="wp-image-1275" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2890258352.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2890258352-190x300.jpg 190w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">超级马里奥大电影</h4>



<p>美国</p>



<p>2024年1月6日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★☆☆</p>



<p>像马力欧游戏剧情一样的没有剧情</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="736" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2885385465.jpg" alt="" class="wp-image-1276" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2885385465.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2885385465-209x300.jpg 209w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">蜘蛛侠：纵横宇宙</h4>



<p>美国</p>



<p>2024年5月12日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评论</h4>



<p>★★★★☆</p>



<p>两个小时二十分钟，结果挖了一个大坑需要等待续集，吊足了胃口。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="640" src="https://beautylife-studio.top/wp-content/uploads/2024/04/p2904291236.jpg" alt="" class="wp-image-1370" srcset="https://beautylife-studio.top/wp-content/uploads/2024/04/p2904291236.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/04/p2904291236-240x300.jpg 240w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">功夫熊猫 4</h4>



<p>美国</p>



<p>2024年4月23日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>除了故事进度推进有点太急了点，其他都不失功夫熊猫一贯的水准。</p>
</div>
</div>



<div class="wp-block-columns has-cyan-bluish-gray-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="768" src="https://beautylife-studio.top/wp-content/uploads/2024/05/未命名.jpg" alt="" class="wp-image-1383" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/未命名.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/未命名-200x300.jpg 200w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">飞驰人生 2</h4>



<p>中国大陆</p>



<p>2024年5月8日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★☆☆</p>



<p>本片的过场和剪辑在一开始的时候很生硬，直到后半段才好一些。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="724" src="https://beautylife-studio.top/wp-content/uploads/2024/05/未命名-1.jpg" alt="" class="wp-image-1386" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/未命名-1.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/未命名-1-212x300.jpg 212w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">勿言推理 剧场版</h4>



<p>日本</p>



<p>2024年5月8日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>悬疑比较弱，感觉编剧和导演都只是想把这个本质上很惊天动地的故事淡化了来讲。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="724" src="https://beautylife-studio.top/wp-content/uploads/2024/05/p2895577343.jpg" alt="" class="wp-image-1513" srcset="https://beautylife-studio.top/wp-content/uploads/2024/05/p2895577343.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/05/p2895577343-212x300.jpg 212w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">君たちはどう生きるか</h4>



<p>你要活出怎样的人生</p>



<p>日本</p>



<p>2024年8月23日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>好像看懂了，却又好像并未看懂。</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="512" height="723" src="https://beautylife-studio.top/wp-content/uploads/2024/08/p2881259602.jpg" alt="" class="wp-image-1516" srcset="https://beautylife-studio.top/wp-content/uploads/2024/08/p2881259602.jpg 512w, https://beautylife-studio.top/wp-content/uploads/2024/08/p2881259602-212x300.jpg 212w" sizes="auto, (max-width: 512px) 100vw, 512px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">死亡护理师</h4>



<p>日本</p>



<p>2024年8月24日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>如此沉重的话题，哭着看完结尾…</p>
</div>
</div>



<div class="wp-block-columns has-pale-cyan-blue-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" src="https://beautylife-studio.top/wp-content/uploads/2024/08/tempImagePBVceD.heic" alt="" class="wp-image-1595"/></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">变形金刚：起源</h4>



<p>美国</p>



<p>2024年11月11日</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h4 class="wp-block-heading">评价</h4>



<p>★★★★☆</p>



<p>因为威震天黑化得太快，所以扣了一颗星。</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://beautylife-studio.top/2024/lifecinema/1272/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
