# 全局设置

## 用户名密码

**登录所用的用户名及密码**

用户名默认为 admin 密码显示为 md5 计算后得出的结果 可根据需要进行修改

## 背景样式

* 示例 1 渐变色背景 渐变色的代码可以下面的列表里生成, 直接复制粘贴就可以
* [uigradients](https://uigradients.com/)

```css
background: #007991;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #78ffd6, #007991);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #78ffd6, #007991); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
height: calc(var(--vh, 1vh) * 100);
```

* 示例 2 外链形式的背景图片

```css
background: url('https://image/url');
height: calc(var(--vh, 1vh) * 100);
background-position-x: center;
background-position-y: center;
background-size: cover;
```

## 全局样式

* 示例 1 全局字体修改为黑色 (部分样式可能不会生效)

```css
body, body * {
  color: black !important;
}
```

* 示例 2 全局字体修改为微软雅黑 (部分样式可能不会生效)

```css
body, body * {
  font-family: 'Microsoft YaHei' !important;
}
```

* 示例 3 为背景图添加一个白色蒙版

```css
#app {
  color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
```

## 通知封面

四类通知封面分别对应不同的通知类型, 填入公网可访问的图片链接即可

## 数据目录路径

备份配置所用, 一般不需要修改

## ApiKey

### ApiKey

用做部分接口的鉴权密码，第一次保存全局配置后会生成，并且不可修改

### TMDB ApiKey

The Movie Database Api Key, 用于从文件名提取影视剧名称, 请确保 Vertex 可以正常请求 api.themoviedb.org, 具体申请方式可以百度了解

## 微信鉴权

### 微信 AesKey / 微信 Token

微信交互所需要的鉴权内容, 在配置时填写即可

## 豆瓣交互

豆瓣交互所用的通知方式, 在推送工具页面创建, 与上文填写的微信鉴权绑定

## 媒体服务通知

Plex Emby 等媒体服务的通知信息, 包含新内容入库, 播放的停止与开始等

## User-Agent

网络请求所用的 User-Agent

## 日志级别

输出日志的最小级别, 正常情况下选择 INFO 即可

## Telegram 代理

详情了解这里 [Telegram-Proxy](https://hub.docker.com/r/lswl/telegram-proxy)


---

# 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://wiki.vertex-app.top/zhu-yao-mo-kuai/quan-ju-she-zhi.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.
