# 时间格式

{% hint style="success" %}
所有时间格式（单位、时间跨度、圈速和双时间单位）可以自由相互转换
{% endhint %}

### 常用时间单位

| 名称 | 符号     | 定义          |
| -- | ------ | ----------- |
| 秒  | s, sec | 时间的基本单位     |
| 分钟 | min    | 60 秒        |
| 小时 | h, hr  | 60 分钟       |
| 天  | day    | 24 小时       |
| 周  | wk     | 7 天         |
| 月  | mo     | 30.436875 天 |
| 年  | yr     | 365.2425 天  |

### 时间跨度 (Timespans)

时间跨度是指显示多个组成部分（从年到秒）的时间量。

```
5.5 minutes as timespan | 5 min 30 s
4.54 hours as timespan  | 4 hours 32 minutes 24 seconds
72 days as timespan     | 10 weeks 2 days
```

时间跨度可以用各种方式表达和格式化。

<pre><code>3 hours 5 minutes 10 seconds             | 3 hours 5 minutes 10 seconds
<strong>3h 5m 10s    | 3 hours 5 minutes 10 seconds
</strong>
3h 5m 10s in seconds | 11,110 s
</code></pre>

### 圈速 (Laptimes)

圈速是指时间量，格式为 HH:MM:SS.MS（小时:分钟:秒.毫秒），常用于计时器。

```
5.5 minutes as laptime | 00:05:30
```

你可以对圈速进行算术运算：

```
03:04:05 + 01:02:03 | 04:06:08
00:12:05 − 00:04:09 | 00:07:56
```

{% hint style="info" %}
圈速必须包含两个冒号，这样 Soulver 才能将其与时钟时间区分开来。

例如，要指定 1.5 秒的圈速，请使用 00:00:01.5
{% endhint %}

你可以将圈速和时间跨度之间进行转换。

```
03:04:05 as timespan                   | 3 hours 4 minutes 5 seconds
3 hours 4 minutes 5 seconds as laptime | 03:04:05
```

### 双时间单位 (Double Time Units)

```
12.5 minutes in minutes and seconds | 12 min 30 s
1.4 weeks in hours and minutes      | 235 hours 12 min
4.5 weeks in days and hours         | 31 days 12 hours
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.soulver.app/zh/yu-fa-can-kao/time/timespans-and-laptimes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
