GreasyFork | Modernized ( Optional Dark Theme )

A much cleaner and more modern version of GreasyFork!

目前为 2022-08-25 提交的版本。查看 最新版本

  1. /* ==UserStyle==
  2. -- THEME STUFF --
  3. @name GreasyFork | Modernized ( Optional Dark Theme )
  4. @version 1.3.15
  5. @description A much cleaner and more modern version of GreasyFork!
  6.  
  7. -- AUTHOR STUFF --
  8. @namespace Freeplay
  9. @author Freeplay (https://freeplay.codeberg.org/)
  10. @homepageURL https://codeberg.org/Freeplay/UserStyles
  11. @supportURL https://codeberg.org/Freeplay/UserStyles/issues
  12. @preprocessor stylus
  13.  
  14.  
  15. --- SETTINGS ---
  16. @var checkbox darkmode "Dark Mode" 0
  17.  
  18. ==/UserStyle== */
  19.  
  20.  
  21. @-moz-document domain("gf.qytechs.cn") {
  22. :root {
  23. if darkmode {
  24. /* DARK MODE COLORS */
  25. --color-primary: #272b36bd;
  26. --color-secondary: #072b3a ;
  27. --color-tertiary: #2c3242;
  28. --color-bg: #1c1f28;
  29. --color-text: #d1d1d1;
  30. --color-link: #00b3ff;
  31. --color-link-visited: cyan;
  32. --color-highlighted #287721;
  33. --shadow-normal: 0 0px 3px rgba(0,0,0,0.5);
  34. --shadow-button: none;
  35. --border-button: 1px solid rgba(150,150,150,.1);
  36. } else {
  37. /* LIGHT MODE COLORS */
  38. --color-primary: #980000bd;
  39. --color-secondary: white;
  40. --color-tertiary: white;
  41. --color-bg: #F6F6F6;
  42. --color-text: black;
  43. --color-link: #0265be;
  44. --color-link-visited: #cf2525;
  45. --color-highlighted: #9fefa3;
  46. --shadow-normal: 0 0 10px rgba(0, 0, 0, .01);
  47. --shadow-button: 0px 0px 0px 20px var(--color-bg) inset;
  48. --border-button: 1px #dcdcdc solid;
  49. }
  50. }
  51. * {
  52. transition: background .2s;
  53. }
  54. /* TEXT */
  55. h3, h2 {
  56. color: var(--color-text);
  57. }
  58. h3 {
  59. margin-bottom: 1em !important;
  60. }
  61. p {
  62. color: var(--color-text);
  63. }
  64. pre, textarea, .preview-results {
  65. background-color: var(--color-secondary) !important;
  66. border: var(--border-button) !important;
  67. border-radius: .3rem;
  68. color: var(--color-text);
  69. }
  70. .code-container {
  71. max-height: none !important;
  72. border: none !important;
  73. border-radius: 4px !important;
  74. filter invert(90%)
  75. }
  76. pre.prettyprint {
  77. background-color: white !important;
  78. max-height: none;
  79. margin-top: 0;
  80. color: black;
  81. }
  82. .post-discussion > p:first-child,
  83. .sidebarred-main-content > p,
  84. {
  85. font-size: 0;
  86. }
  87. .sidebarred-main-content > h2 + p {
  88. font-size: inherit !important;
  89. margin-top: 0 !important;
  90. }
  91. /* BUTTONS/LINKS */
  92. select, option, input, button:not(.lum-gallery-button), code, #user-control-panel > li, .sign-in-link a,
  93. .pagination > *, .script-list + .pagination > *, .user-list + .pagination > *,
  94. a.list-option-button, #script-links > li > *, #script-feedback-suggestion a, .discussion-actions a, .report-link, .edit-comment, .post-discussion > p:first-of-type a, .discussion-up-level a, .post-discussion > div > .inline-list > li a,
  95. #script-content > ul li a,
  96. #about-user > p:last-child > *, #about-user > a:first-child,
  97. #install-area a, .expander, #contribution > a, #support-url > a, .script-in-sets > a,
  98. .sidebarred-main-content > p:last-child a, .sidebarred-main-content > p:first-of-type a,
  99. #home-top-sites a,
  100. #by-site-list > li > a {
  101. border: var(--border-button) !important;
  102. text-decoration: none !important;
  103. border-radius: .3rem !important;
  104. padding: 5px 14px;
  105. font-size: 14px;
  106. font-family: Segoe UI, Helvetica, Arial, sans-serif, Segoe UI Emoji !important;
  107. transition: all .2s;
  108. background-color: var(--color-secondary) !important;
  109. color: var(--color-text) !important;
  110. list-style: none;
  111. outline: none !important;
  112. }
  113. code {
  114. padding: 2px 4px !important;
  115. }
  116. select:hover, input:hover, input:focus, button:not(.lum-gallery-button):hover, #user-control-panel > li:hover, .sign-in-link a:hover,
  117. a.list-option-button:hover, #script-links > li > *:hover, #script-feedback-suggestion a:hover, #script-links .current span, .discussion-actions a:hover, .report-link:hover, .edit-comment:hover, .post-discussion > p:first-of-type a:hover, .discussion-up-level a:hover, .post-discussion > div > .inline-list > li a:hover,
  118. #script-content > ul li a:hover,
  119. #about-user > p:last-child > *:hover, #about-user > a:first-child:hover,
  120. .pagination > *:hover, .script-list + .pagination > *:hover, .user-list + .pagination > *:hover, .pagination > *:focus, .script-list + .pagination > *:focus, .user-list + .pagination > *:focus,
  121. #install-area a:hover, .expander:hover, #contribution > a:hover, #support-url > a:hover, .script-in-sets > a:hover,
  122. .sidebarred-main-content > p:last-child a:hover, .sidebarred-main-content > p:first-of-type a:hover,
  123. #home-top-sites a:hover,
  124. #by-site-list > li > a:hover {
  125. box-shadow: var(--shadow-button) !important;
  126. background-color: var(--color-tertiary) !important;
  127. text-decoration: none !important;
  128. }
  129. select:not(#remove-scripts-included) { /* Contributed by https://codeberg.org/Riedler */
  130. appearance:none;
  131. background-image:url("https://riedler.wien/sfto/darklearning/double_triangles_top_bottom_AAA.svg");
  132. background-repeat:no-repeat;
  133. background-position:center right 7px !important;
  134. background-size:auto 50%;
  135. }
  136. nav > li > a, .pagination > a, #user-control-panel > li > a, #script-links > li > a, div[class="list-option-group"] > ul > li > a, h2 > a ,
  137. .comment-meta-item-main a {
  138. text-decoration: none;
  139. color: var(--color-text);
  140. }
  141. .pagination {
  142. margin-bottom: 20px;
  143. }
  144. a {
  145. display: inline-block;
  146. }
  147. a, a.discussion-title, a.discussion-title:hover {
  148. text-underline-offset: .25em;
  149. color: var(--color-link);
  150. }
  151. a:hover, a.discussion-title:hover {
  152. text-decoration: underline;
  153. }
  154. a:visited {
  155. color: var(--color-link-visited);
  156. }
  157. body, html {
  158. background-color: var(--color-bg);
  159. font-family: Segoe UI, Helvetica, Arial, sans-serif, Segoe UI Emoji !important;
  160. }
  161. body > .width-constraint {
  162. max-width: 100% !important;
  163. margin: 0;
  164. padding: 10px;
  165. display: flex;
  166. flex-direction column
  167. // flex-wrap: wrap;
  168. }
  169. body > .width-constraint > * {
  170. width: 100%;
  171. }
  172. body > .width-constraint > section, .notice, .alert, .announcement {
  173. max-width: 80rem;
  174. margin: auto !important;
  175. }
  176. body > .width-constraint > section:first-child, .notice, .alert {
  177. margin-top: 20px !important;
  178. }
  179. body > .width-constraint > section:last-of-type {
  180. margin-bottom: 40px !important;
  181. }
  182. .alert, .announcement {
  183. background-color: var(--color-secondary);
  184. margin-bottom: 20px !important;
  185. }
  186. .alert *, .announcement {
  187. color: var(--color-text) !important;
  188. padding: 10px;
  189. }
  190. .announcement {
  191. margin-top: 10px !important;
  192. border-radius: .3rem;
  193. }
  194. section {
  195. border: none !important;
  196. }
  197. .notice {
  198. background-color: var(--color-secondary);
  199. }
  200. .text-content, .discussion-list, #browse-user-list, .inline-form, #new_user,
  201. #script-meta, #additional-info, #script-show-info-ad, #script-content .script-discussion-list, canvas,
  202. /*.multiform-page*/, #script-content form:not(.script-in-sets), table, .comment,
  203. #script-content > ul {
  204. padding: 1rem !important;
  205. margin: 0 auto !important;
  206. margin-bottom: 20px !important;
  207. border: var(--border-button) !important;
  208. box-shadow: var(--shadow-normal) !important;
  209. background-color: var(--color-tertiary) !important;
  210. color: var(--color-text);
  211. border-radius: .5rem;
  212. }
  213. .text-content > *:first-child {
  214. margin-top: 0 !important;
  215. }
  216. .text-content > *:last-child, #script-meta > *:last-child {
  217. margin-bottom: 0 !important;
  218. }
  219. @media only screen and (min-width: 940px) {
  220. body {
  221. margin-top: 44px;
  222. }
  223.  
  224. /* HEADER */
  225. #main-header {
  226. position: fixed;
  227. top: 0;
  228. width: 100%;
  229. height: 44px;
  230. padding: 0;
  231. z-index: 5;
  232. background-image: none;
  233. background-color: var(--color-primary);
  234. backdrop-filter: blur(10px);
  235. }
  236. #main-header > .width-constraint {
  237. max-width: 100%;
  238. padding-left: 10px;
  239. padding-right: 10px;
  240. display: flex !important;
  241. align-items: center;
  242. margin: auto !important;
  243. }
  244. #site-name {
  245. position: absolute;
  246. width: 200px;
  247. min-width: 200px;
  248. height: 30px;
  249. margin-top: auto;
  250. margin-bottom: auto;
  251. }
  252. #site-name img {
  253. height: 30px;
  254. }
  255. #site-name-text {
  256. margin-top: 0 !important;
  257. }
  258. #site-name-text > h1 {
  259. height: 30px;
  260. font-size: 25px;
  261. font-weight: 600;
  262. }
  263.  
  264. #site-nav {
  265. display: flex !important;
  266. height: 40px;
  267. padding-top: 1px;
  268. width: auto;
  269. align-items: center;
  270. margin-top: 0 !important;
  271. width: 100%;
  272. justify-content: flex-end;
  273. }
  274. #site-nav > * {
  275. position: relative !important;
  276. }
  277. #site-nav > nav {
  278. width: 100% !important;
  279. height: 20px;
  280. display: flex;
  281. align-items: center;
  282. justify-content: flex-end;
  283. }
  284. #nav-user-info {
  285. width: auto;
  286. order: 2;
  287. height: 20px;
  288. display: flex;
  289. align-items: center;
  290. }
  291. #nav-user-info .sign-out-link, #nav-user-info .sign-in-link {
  292. width: max-content !important;
  293. }
  294. #nav-user-info > form > select {
  295. margin: 0 0 0 26px;
  296. height: 32px;
  297. }
  298. #site-nav > nav > li + li {
  299. margin-left: 1em;
  300. }
  301. #nav-user-info .user-profile-link a, #nav-user-info .sign-out-link a {
  302. text-decoration: none;
  303. font-size: 16px;
  304. }
  305. #nav-user-info .sign-out-link {
  306. font-size: 0;
  307. margin-left: 16px;
  308. }
  309. #nav-user-info .with-submenu {
  310. padding-right: 16px;
  311. }
  312. #nav-user-info a:hover {
  313. text-decoration: underline;
  314. }
  315. .with-submenu > nav {
  316. background-color: var(--color-primary);
  317. backdrop-filter: blur(10px);
  318. }
  319. /* SIDEBAR */
  320. .sidebar ~ div {
  321. max-width: 50rem;
  322. }
  323. .sidebar {
  324. position: sticky;
  325. top: 44px;
  326. order: -1;
  327. margin: -10px 15px -10px -10px;
  328. padding: 20px 0 20px 10px;
  329. height: calc(100vh - 84px);
  330. max-height: calc(100vh - 84px);
  331. overflow-y: auto;
  332. overflow-x: hidden;
  333. z-index: 6;
  334. text-decoration: none !important;
  335. scrollbar-color: var(--color-primary) transparent;
  336. scrollbar-width: thin;
  337. }
  338. .sidebar-search {
  339. position: fixed;
  340. top: 5px;
  341. left: 180px;
  342. }
  343. .sidebar-search input[type="search"] {
  344. height: 32px;
  345. border: none !important;
  346. border-radius: .3rem !important;
  347. width: 170px;
  348. text-align: center;
  349. color: var(--color-text) !important;
  350. padding-inline-end: 30px;
  351. box-shadow: 0px 0px 2px rgba(0,0,0,0.1) !important;
  352. background-color: var(--color-primary) !important;
  353. color: white !important;
  354. font-weight: 700;
  355. filter: opacity(.5);
  356. transition: width .2s, background-color .5s, color .5s, filter .2s;
  357. }
  358. .sidebar-search input[type="search"]:focus, .sidebar-search input[type="search"]:hover {
  359. width: calc(100vw - 450px);
  360. transition: width .5s, background-color .2s, color .2s, filter .2s;
  361. filter: opacity(1);
  362. background-color: var(--color-secondary) !important;
  363. color: var(--color-text) !important;
  364. }
  365. .sidebar-search input[type="submit"] {
  366. display: none;
  367. }
  368. #script-list-option-groups > div, .list-option-group {
  369. padding: 10px;
  370. color: var(--color-text);
  371. background-color: var(--color-secondary);
  372. border-radius: .3rem;
  373. box-shadow: 0px 0px 2px rgba(0,0,0,0.1);
  374. }
  375. #script-list-option-groups > div > ul, .list-option-group > ul {
  376. background-color: transparent;
  377. box-shadow: none;
  378. border: none;
  379. margin: -10px;
  380. }
  381. .list-current {
  382. border-left-color: var(--color-primary) !important;
  383. border-left-width: 4px !important;
  384. }
  385. if darkmode {
  386. .list-current {
  387. background: none !important;
  388. background-color: var(--color-tertiary) !important;
  389. color: var(--color-text);
  390. }
  391. .list-option-group a:hover, .list-option-group a:focus {
  392. background: none !important;
  393. background-color: var(--color-tertiary) !important;
  394. box-shadow: none !important;
  395. }
  396. }
  397. /* LISTS */
  398. .sidebarred-main-content {
  399. margin-top: 10px !important;
  400. }
  401. .sidebarred-main-content > h2 {
  402. margin-top: 0;
  403. }
  404. #browse-script-list {
  405. margin-top: 0;
  406. }
  407. #browse-script-list, #user-script-list, #user-deleted-script-list, .script-list {
  408. display: grid;
  409. grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  410. grid-gap: 10px;
  411. border: none !important;
  412. box-shadow: none !important;
  413. background-color: transparent;
  414. }
  415. }
  416. #browse-script-list > li, #user-script-list > li, #user-deleted-script-list > li, #user-unlisted-script-list > li,
  417. #user-library-script-list > li {
  418. border: var(--border-button) !important;
  419. border-radius: .5rem;
  420. background-color: var(--color-tertiary);
  421. transition: box-shadow .2s;
  422. color: var(--color-text);
  423. display: flex;
  424. &:hover {
  425. box-shadow: 0px 2px 20px rgba(0,0,0,0.1);
  426. }
  427. }
  428. #browse-script-list > li > article, #user-script-list > li > article, #user-deleted-script-list > li > article, #user-unlisted-script-list > li > article {
  429. height: 100%;
  430. display: flex;
  431. flex-wrap: wrap;
  432. width: auto !important;
  433. flex-grow: 1 !important;
  434. max-width: 100% !important;
  435. }
  436. #browse-script-list > li > article > h2 {
  437. overflow: hidden;
  438. max-height: 100px;
  439. }
  440. .inline-script-stats {
  441. margin-top: auto;
  442. width: 100%;
  443. }
  444. .inline-script-stats dd {
  445. max-width: 100%;
  446. }
  447. #browse-script-list > li > article > h2 > a {
  448. font-weight: 600;
  449. }
  450. #browse-script-list > li > article > h2::before {
  451. content: "";
  452. display: flex;
  453. position: relative;
  454. z-index: 2;
  455. width: 100%;
  456. height: 40px;
  457. color: var(--color-tertiary);
  458. background: linear-gradient(transparent, currentColor);
  459. box-shadow: 0 10px 0 var(--color-tertiary);
  460. margin-top: -40px;
  461. transform: translateY(100px);
  462. pointer-events: none;
  463. }
  464. /* Greasy Fork镜像 Tweaks Thumbnail Images */
  465. #browse-script-list > li > article ~ div,
  466. #user-script-list > li > article ~ div,
  467. #user-deleted-script-list > li > article ~ div {
  468. max-height: 185px !important;
  469. height: calc(100% + 2em) !important;
  470. width: auto !important;
  471. max-width: 40% !important;
  472. margin-right: -1em !important;
  473. margin-top: -1em !important;
  474. margin-bottom: -1em !important;
  475. margin-left: 1em !important;
  476. border-top-right-radius: .5rem !important;
  477. border-bottom-right-radius: .5rem !important;
  478. padding: 0 !important;
  479. transition: max-width .5s, width .5s;
  480. display: flex !important;
  481. transition: max-width .5s;
  482. justify-content: center;
  483. }
  484. #browse-script-list > li > article ~ div > img,
  485. #user-script-list > li > article ~ div > img,
  486. #user-deleted-script-list > li > article ~ div > img {
  487. max-width: 100% !important;
  488. width: 100% !important;
  489. align-self: center;
  490. }
  491. #browse-script-list #script-list-ea {
  492. width: 100%;
  493. }
  494. #browse-script-list #script-list-ea + div:last-of-type {
  495. display: none !important;
  496. width: 0 !important;
  497. }
  498. .script-list li:not(.ad-entry) {
  499. border-right: 1px solid #DDDDDD;
  500. }
  501. .ad-entry, #codefund {
  502. grid-column: 1/-1;
  503. }
  504. .ad-entry > div {
  505. height: auto !important;
  506. padding: 0 !important;
  507. }
  508. [data-ea-publisher].loaded .ea-content a:link, [data-ea-type].loaded .ea-content a:link {
  509. color: var(--color-link) !important;
  510. }
  511. .sidebarred-main-content {
  512. display: flex;
  513. flex-wrap: wrap;
  514. height: min-content;
  515. }
  516. .sidebarred-main-content > * {
  517. width: 100%;
  518. }
  519. .sidebarred-main-content > p {
  520. width: auto;
  521. margin: 1em 0 0;
  522. }
  523. .sidebarred-main-content > p:last-child {
  524. order: -1;
  525. }
  526. /*** FILTER BY SITES PAGE ***/
  527. #by-site-list > li > a {
  528. font-size: inherit !important;
  529. }
  530.  
  531. /*** SCRIPT DETAILS PAGE ***/
  532. #script-info {
  533. display: flex;
  534. flex-wrap: wrap;
  535. background: none !important;
  536. }
  537. #script-info > * {
  538. width: 100%;
  539. }
  540. #script-info, #additional-info, #user-profile {
  541. background: none;
  542. background-color: var(--color-tertiary);
  543. box-shadow: none;
  544. color: var(--color-text);
  545. }
  546. #script-info > header {
  547. order: -1;
  548. width: 100%;
  549. }
  550. #script-info header h2 {
  551. font-weight: 600;
  552. }
  553. #script-links {
  554. margin: 12px 0;
  555. padding-top: 12px !important;
  556. padding: 0;
  557. display: flex;
  558. flex-wrap: wrap;
  559. position: sticky;
  560. top: 45px;
  561. display: inline;
  562. width: 150px;
  563. height: min-content;
  564. max-height: calc(100vh - 58px);
  565. overflow-y: auto;
  566. }
  567. #script-links .current {
  568. border: none !important;
  569. box-shadow: none;
  570. }
  571. #script-links li {
  572. margin: 8px 0px;
  573. }
  574. .script-show-applies-to .inline-list {
  575. display: flex;
  576. flex-wrap: wrap;
  577. }
  578. #script-content {
  579. margin: 20px;
  580. width: calc(100% - 200px);
  581. display: flex;
  582. flex-wrap: wrap;
  583. height: min-content;
  584. }
  585. #script-content > * {
  586. width: 100%;
  587. }
  588. .install-link {
  589. background-color: var(--color-highlighted) !important;
  590. }
  591. #script-feedback-suggestion, .script-in-sets, #install-area {
  592. margin: 0;
  593. width: auto !important;
  594. display: flex;
  595. flex-wrap: wrap;
  596. font-size: 0;
  597. }
  598. #script-feedback-suggestion a, .script-in-sets *, #install-area a,
  599. .post-discussion > p:first-child a,
  600. .sidebarred-main-content > p a {
  601. font-size: 14px;
  602. margin: 0;
  603. margin-right: 8px;
  604. margin-bottom: 1em;
  605. }
  606. .discussion-snippet {
  607. white-space: normal !important;
  608. }
  609. .script-in-sets {
  610. order: 1;
  611. width: 100% !important;
  612. }
  613. #script-meta {
  614. order: 2;
  615. max-width: none;
  616. flex: 1 1 600px;
  617. }
  618. #script-meta dt {
  619. max-width: none !important;
  620. }
  621. #script-show-info-ad {
  622. order: 3;
  623. margin-left: 1em !important;
  624. flex: 1 1 200px;
  625. }
  626. #additional-info {
  627. order: 3;
  628. display: flex;
  629. flex-wrap: wrap;
  630. }
  631. #additional-info > * {
  632. width: 100%;
  633. }
  634. .user-screenshots {
  635. order: -1;
  636. margin-top: 0 !important;
  637. margin-bottom: 1em;
  638. width: 100%;
  639. }
  640. .post-discussion {
  641. width: 100%;
  642. }
  643. section > *:first-child, #script-content > *:first-child, #script-content p, #script-content h3, form > p:first-of-type,
  644. .discussion-header {
  645. margin-top: 0 !important;
  646. }
  647. .multiform-page {
  648. padding: 0 !important;
  649. }
  650. canvas {
  651. background-color: white !important;
  652. }
  653. /*** FORUMS ***/
  654. .discussion-read {
  655. background-color: var(--color-secondary) !important;
  656. }
  657. .discussion-list-item {
  658. border-top: var(--border-button) !important;
  659. border-bottom: var(--border-button) !important;
  660. }
  661. .user-content {
  662. background: none;
  663. }
  664. .comment-meta-item a {
  665. margin-bottom: -100px;
  666. }
  667. .discussion-header h2 {
  668. margin-top: .5rem;
  669. }
  670. /* FAVORITES LIST */
  671. .post-discussion > div:last-of-type {
  672. order: 5;
  673. }
  674. /*** USER PAGE ***/
  675. /* About User */
  676. a.report-link.report-link-abs {
  677. margin-top: 1em !important;
  678. }
  679. /* Control Panel */
  680. #user-control-panel, #script-content > ul {
  681. display: flex;
  682. flex-wrap: wrap;
  683. grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  684. grid-gap: 10px;
  685. padding: 10px;
  686. list-style: none;
  687. }
  688. #user-control-panel > li {
  689. text-decoration: none;
  690. list-style: none;
  691. text-align: center;
  692. background-color: var(--color-secondary);
  693. padding: 5px 16px;
  694. border-radius: .3rem;
  695. }
  696. .post-discussion > div > .inline-list {
  697. display: grid;
  698. grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  699. grid-gap: 4px 6px;
  700. }
  701. .post-discussion > div > .inline-list > li a {
  702. display: block;
  703. white-space: nowrap;
  704. overflow: hidden;
  705. text-overflow: ellipsis;
  706. }
  707.  
  708.  
  709. /*** HOMEPAGE ***/
  710. body .width-constraint > .text-content > h2 {
  711. z-index: 2;
  712. position: relative;
  713. margin-bottom: 1rem;
  714. margin-top: 2rem !important;
  715. }
  716. #home-script-nav {
  717. margin-bottom: 60px;
  718. z-index: 1;
  719. width: max-content;
  720. max-width: none;
  721. border: none !important;
  722. }
  723. #home-top-sites {
  724. margin-top: 1rem;
  725. z-index: 2;
  726. position: relative;
  727. font-size: 0;
  728. }
  729.  
  730. /*** POPUPS ***/
  731. .lum-lightbox {
  732. z-index: 100;
  733. }
  734.  
  735.  
  736. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址