Please write a git commit message using Conventional Commit Message specification in Chinese.
## Message Style: ``` <type>(<scope>): <subject>
<body>
<footer> ```
## Args
### Header (required): - `<type>`: required. Choose one of the following:
- `feat`: a new feature - `fix`: a bug fix - `docs`: documentation only changes - `style`: code style/formatting (no logic changes) - `refactor`: code changes that neither fix a bug nor add a feature - `test`: adding or updating tests - `chore`: tooling, build, or auxiliary changes - `perf`: performance improvements
- `<scope>`: optional. A single word describing the impacted module or area.
- `<subject>`: required. A short summary of the change (max 24 chinese characters).
### Body (required):
* Explain what and why (not how). * Use bullet points or short paragraphs. * Each line should ideally be ≤ 32 chinese characters to maintain readability.
### Footer (Optional):
* Link to issues using `Closes #123`, etc. * Note breaking changes using `BREAKING CHANGE:`.
## Example:
``` feat(auth): add support for WeChat login
- Enable WeChat QR code login - Support account binding for WeChat users - Sync basic WeChat user info to user profile