├── 404.php ├── LICENSE ├── README.md ├── category.php ├── comments.php ├── footer.php ├── functions.php ├── header.php ├── img ├── win10exp01.png ├── win10exp02.png └── win10exp03.png ├── inc ├── ajax.php ├── obj.php └── page-options.php ├── index.php ├── page.php ├── screenshot.png ├── search.php ├── sidebar.php ├── single.php ├── static ├── css │ └── theme-options.css ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── img │ ├── avatar.png │ ├── back.png │ ├── cat.png │ ├── close_h.png │ ├── close_w.png │ ├── ewmsk.png │ ├── folder.ico │ ├── foldercat.png │ ├── forward.png │ ├── search.png │ ├── txt.bmp │ ├── txt.png │ ├── word-iocn.png │ └── word.png └── layui │ ├── css │ ├── layui.css │ ├── layui.mobile.css │ └── modules │ │ ├── code.css │ │ ├── laydate │ │ └── default │ │ │ └── laydate.css │ │ └── layer │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif │ ├── font │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 │ ├── images │ └── face │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 13.gif │ │ ├── 14.gif │ │ ├── 15.gif │ │ ├── 16.gif │ │ ├── 17.gif │ │ ├── 18.gif │ │ ├── 19.gif │ │ ├── 2.gif │ │ ├── 20.gif │ │ ├── 21.gif │ │ ├── 22.gif │ │ ├── 23.gif │ │ ├── 24.gif │ │ ├── 25.gif │ │ ├── 26.gif │ │ ├── 27.gif │ │ ├── 28.gif │ │ ├── 29.gif │ │ ├── 3.gif │ │ ├── 30.gif │ │ ├── 31.gif │ │ ├── 32.gif │ │ ├── 33.gif │ │ ├── 34.gif │ │ ├── 35.gif │ │ ├── 36.gif │ │ ├── 37.gif │ │ ├── 38.gif │ │ ├── 39.gif │ │ ├── 4.gif │ │ ├── 40.gif │ │ ├── 41.gif │ │ ├── 42.gif │ │ ├── 43.gif │ │ ├── 44.gif │ │ ├── 45.gif │ │ ├── 46.gif │ │ ├── 47.gif │ │ ├── 48.gif │ │ ├── 49.gif │ │ ├── 5.gif │ │ ├── 50.gif │ │ ├── 51.gif │ │ ├── 52.gif │ │ ├── 53.gif │ │ ├── 54.gif │ │ ├── 55.gif │ │ ├── 56.gif │ │ ├── 57.gif │ │ ├── 58.gif │ │ ├── 59.gif │ │ ├── 6.gif │ │ ├── 60.gif │ │ ├── 61.gif │ │ ├── 62.gif │ │ ├── 63.gif │ │ ├── 64.gif │ │ ├── 65.gif │ │ ├── 66.gif │ │ ├── 67.gif │ │ ├── 68.gif │ │ ├── 69.gif │ │ ├── 7.gif │ │ ├── 70.gif │ │ ├── 71.gif │ │ ├── 8.gif │ │ └── 9.gif │ └── layui.all.js └── style.css /404.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
11 |
-
12 |
13 |
14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 |
25 | 26 |
27 |
28 |
29 |
本网站>404页面 31 |
32 |
33 |
34 | 35 |
36 |
37 |
38 |
39 | 42 |
43 | 指定文章或页面找不到 44 |
45 |
46 |
47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 主题介绍 2 | 本WordPress主题是一款比较个性的主题,平时面对资源管理器多了,觉得资源管理器非常好看,于是就仿造资源管理器做出了这一款主题。适合专门写文档,做给自己看的主题。 3 | 4 | 框架使用的是layui,支持自适应,然后支持字体图标Fontawesome。 5 | 6 | 顶部菜单为导航菜单,暂时只支持最高二级菜单,可以自己设置,侧边栏支持列表美化,其他的美化没做,第一个版本,会慢慢完善和更新的。 7 | 8 | 其他美化:H2标签,表格等 9 | 支持自定义设置,后台带设置面板,支持SEO设置。 10 | ![win10explore](/img/win10exp01.png) 11 | ![win10explore](/img/win10exp02.png) 12 | ![win10explore](/img/win10exp03.png) 13 | ## 更新日志 14 | 2019-8-2 15 | 新增后台设置面板,允许配置SEO 16 | 新增自动SEO功能,能自动截取文章内容作为摘要,和设置关键词,关键词来源于标签。 17 | 可以自己后台配置网站标题图标,文章列表前面的小图标 18 | 主题支持检查更新 19 | 优化默认的小图标为txt图标,文件夹图标优化和win10一致 20 | 2019-7-25 21 | 简单优化了一下搜索侧边栏 22 | 添加引用块样式 23 | 2019-7-21 24 | 修复手机上面适配问题 25 | ## 注意事项 26 | 需要安装插件:WP-PostViews,否则会阅读数量那儿报错,插件请WordPress后台搜索安装 27 | ## LICENSE 28 | 遵循GPL协议,非商业用途免费使用 29 | ## 演示&地址 30 | [https://www.lovestu.com/](https://www.lovestu.com) 31 | [https://www.lovestu.com/win10explorer](https://www.lovestu.com/win10explorer) -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- 1 | cat_ID; 5 | 6 | ?> 7 | 8 |
9 |
11 |
12 |
13 |
14 |
15 |
16 |
17 | 18 |
19 |
20 |
21 |
22 |
24 |
26 |
27 |
28 | 30 |
31 |
32 | 33 |
34 |
35 |
36 |
37 | 40 |
41 | 42 | 45 | 46 |
47 |
48 | 49 |
50 |
51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 | 5 |
6 | 7 | '
', 10 | 'comment_notes_before' => '', 11 | 'class_submit' => 'button_submit', 12 | 'label_submit' => __('提交评论', 'win10exp'), 13 | 'comment_notes_after' => '', 14 | 'id_form' => 'form_comment', 15 | 'cancel_reply_link' => __('取消回复', 'win10exp'), 16 | 'comment_field' => '
', 17 | 'fields' => apply_filters('comment_form_default_fields', array( 18 | 'author' => '
', 19 | 'email' => '', 20 | 'url' => '
', 21 | ))); 22 | comment_form($comment_form_args); 23 | 24 | } ?> 25 | 26 | 27 |

共有 条评论

28 |
    29 | 'ol', 32 | 'short_ping' => true, 33 | 'avatar_size' => 48, 34 | 'type' =>'comment', 35 | 'callback' =>'my_comment', 36 | ) ); 37 | ?> 38 |
39 | 42 |
-------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 5 | user_id)) { 17 | $avatar = getImgDir('avatar.png'); 18 | } else { 19 | $avatar = getImgDir('avatar.png'); 20 | } 21 | $avatar = "{$alt}"; 22 | 23 | return $avatar; 24 | } 25 | 26 | function getImgDir($name) 27 | { 28 | //获取图片路径 29 | return get_stylesheet_directory_uri() . '/static/img/' . $name; 30 | } 31 | 32 | $foldercat = getImgDir('foldercat.png'); 33 | register_sidebar(array( 34 | 'name' => '首页侧边栏', 35 | 'id' => 'exsidebar_index', 36 | 'description' => '首页侧边栏', 37 | 'class' => 'sidebar_A', 38 | 'before_widget' => '
  • ', 39 | 'after_widget' => '
  • ', 40 | 'before_title' => '')); 42 | 43 | if (function_exists('add_theme_support')) { 44 | //开启导航菜单主题支持 45 | add_theme_support('top-nav-menus'); 46 | //注册一个导航菜单 47 | register_nav_menus(array( 48 | 'header_menu' => '顶部导航菜单' 49 | )); 50 | } 51 | //自定义评论 52 | function my_comment($comment, $args, $depth) 53 | { 54 | $GLOBALS['comment'] = $comment; 55 | $reply = ''; 56 | if ($depth > 0 && $comment->comment_parent) { 57 | $reply = get_comment_author($comment->comment_parent); 58 | 59 | if ($reply) { 60 | $reply = '@' . $reply . ''; 61 | } else { 62 | $reply = ''; 63 | } 64 | 65 | } 66 | ?> 67 |
  • 68 |
    69 |
    70 | 73 |
    74 |
    75 | ') . get_comment_author_link() . $reply . '

    '; ?> 76 | comment_approved == '0') : ?> 77 | 评论等待审核...
    78 | 79 | 80 |
    81 |
    82 | 90 | 91 | 0, 'single_icon' => '', 'index_title' => '', 'site_description' => '', 'site_key' => '', 'autoseo' => 0,'version'=>THEME_VERSION); 112 | 113 | update_option(THEME_ID_SET, json_encode($theme_option)); 114 | $theme_option = json_decode(json_encode($theme_option), true); 115 | } else { 116 | $theme_option = json_decode($theme_option, true); 117 | } 118 | 119 | } 120 | 121 | ?> -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | <?php get_blog_title_obj() ?> 7 | 8 | 9 | 11 | 14 | 15 | 16 | 17 |
    18 | 19 |
    -------------------------------------------------------------------------------- /img/win10exp01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/img/win10exp01.png -------------------------------------------------------------------------------- /img/win10exp02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/img/win10exp02.png -------------------------------------------------------------------------------- /img/win10exp03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/img/win10exp03.png -------------------------------------------------------------------------------- /inc/ajax.php: -------------------------------------------------------------------------------- 1 | request( 'https://www.lovestu.com/api/theme.php?a=checkversion&theme=win10exp' ); 20 | 21 | $result= json_decode($result['body'], true); 22 | if (is_array($result)){ 23 | echo $result['version']; 24 | }else{ 25 | echo '0'; 26 | } 27 | wp_die(); 28 | } 29 | add_action('wp_ajax_save_set', 'fun_save_set'); 30 | add_action('wp_ajax_check_version', 'fun_check_version'); -------------------------------------------------------------------------------- /inc/obj.php: -------------------------------------------------------------------------------- 1 | 6 |
  • name; ?>
  • 16 | 19 | 20 | 21 | 10, 'category' => $cateid)); 34 | foreach ($postlist as $post) { 35 | setup_postdata($post); 36 | ?> 37 | 38 | 39 | 42 | 43 | 44 |
    45 | 46 | 47 | 58 |

    啥也没有

    59 | 71 |
    72 |
    名称
    73 |
    修改日期
    74 |
    阅读
    75 |
    76 | 80 |
    81 |
    84 |
    85 |
    86 |
    87 | 94 | 97 | 'header_menu', 139 | 'menu_class' => 'menu_header', 140 | 'container_class' => 'menu_nav', 141 | 'container' => 'div', 142 | 'depth' => 2 143 | 144 | )); //调用第一个菜单 145 | } 146 | 147 | function get_self_adaption_css($where = 'all') 148 | { 149 | if ($where == 'all') { 150 | echo 'layui-hide-xs layui-hide-sm layui-show-md-block'; 151 | } elseif ($where == 'toolbar') { 152 | echo 'layui-show-md-block'; 153 | } 154 | 155 | } 156 | 157 | function aurelius_comment($comment, $args, $depth) 158 | { 159 | $GLOBALS['comment'] = $comment; ?> 160 |
  • 161 |
    164 | '回复', 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
    165 |
    166 |
    167 | %s'), get_comment_author_link()); ?> 168 | 169 |     170 |
    171 |
    172 | comment_approved == '0') : ?> 173 | 你的评论正在审核,稍后会显示出来!
    174 | 175 | 176 |
    177 |
    178 |
  • 179 | post_content), 0, 200, "…", 'utf-8')); 204 | 205 | // 填写自定义字段description时显示自定义字段的内容,否则使用文章内容前200字作为描述 206 | 207 | // 填写自定义字段keywords时显示自定义字段的内容,否则使用文章tags作为关键词 208 | 209 | $tags = wp_get_post_tags($post->ID); 210 | foreach ($tags as $tag) { 211 | $keywords = $keywords . $tag->name . ", "; 212 | } 213 | $keywords = rtrim($keywords, ', '); 214 | 215 | } elseif (is_category()) { 216 | // 分类的description可以到后台 - 文章 -分类目录,修改分类的描述 217 | $description = category_description(); 218 | $keywords = single_cat_title('', false); 219 | } elseif (is_tag()) { 220 | // 标签的description可以到后台 - 文章 - 标签,修改标签的描述 221 | $description = tag_description(); 222 | $keywords = single_tag_title('', false); 223 | } 224 | $description = trim(strip_tags($description)); 225 | $keywords = trim(strip_tags($keywords)); 226 | ?> 227 | 228 | 229 | 241 | 244 | 249 | 250 | -------------------------------------------------------------------------------- /inc/page-options.php: -------------------------------------------------------------------------------- 1 | 5 | 8 | 10 | 11 |
    12 | 13 |

    功能选项

    14 |
    15 |
      16 |
    • SEO设置
    • 17 |
    • 外观设置
    • 18 |
    • 可用组件
    • 19 |
    • 关于主题
    • 20 |
    21 |
    22 |
    23 |
    24 |
    25 |
    SEO总开关
    26 |
    27 | 36 | > 38 |
    39 |
    40 |
    41 |
    文章页面自动设置SEO
    42 |
    43 | 51 | > 54 |
    55 |
    56 |
    57 |
    首页标题
    58 |
    59 | 61 |
    62 |
    63 | 64 |
    65 |
    网站标题
    66 |
    67 | 69 |
    70 |
    71 |
    72 |
    网站描述
    73 |
    74 | 76 |
    77 |
    78 |
    79 |
    网站关键字
    80 |
    81 | 83 |
    84 |
    85 |
    86 |
    87 |
    88 | 89 |
    90 |
    91 |
    自定义网站标题前小图标(建议16x16的倍数)
    92 |
    93 | 95 | 96 | 97 |
    98 |
    99 |
    100 |
    自定义文章列表前小图标(建议16x16的倍数)
    101 |
    102 | 104 | 105 | 106 |
    107 |
    108 | 109 |
    110 |
    111 |
    112 |

    本主题自带layui字体和awesome字体

    113 |

    可用在网页任意地方调用字体图标,样式浏览见下面地址


    114 | layui字体图标 116 | awesome字体图标 118 |
    119 |
    120 |
    121 |

    仿Win10资源管理器主题

    122 |

    123 |
    124 |
    说明地址
    125 | 128 |
    129 |
    130 |
    当前版本:1.3

    最新版本:等待检查中

    131 |
    132 | 133 |
    134 |
    135 |
    136 |
    捐赠支持
    137 |
    138 | 139 |
    140 |
    141 |
    142 |
    143 |
    144 | 145 | 146 | 147 | 248 | 249 | 250 | 6 | 7 |
    8 |
    10 |
    12 | 13 |
    14 |
    15 | 16 |
    17 |
    18 |
    19 | 20 |
    21 |
    22 |
    23 |
    24 |
    25 |
    27 |
    29 |
    30 |
    31 |
    本网站>最新文章 34 |
    35 |
    36 |
    37 | 38 |
    39 |
    40 | 41 |
    42 |
    43 | 46 |
    47 | 48 |
    49 |
    50 | 51 |
    52 |
    53 | 54 |
    55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 5 |
    6 |
    9 |
    -
    10 |
    11 |
    12 |
    13 |
    14 |
    15 |
    16 | 17 |
    18 |
    19 |
    20 |
    21 |
    23 | 24 |
    25 |
    26 |
    27 |
    29 | 本网站 30 | > 31 |
    32 |
    33 |
    34 | 35 |
    36 |
    37 |
    38 |
    39 | 42 |
    43 |
    44 | 45 |
    46 |
    47 | 50 |
    51 |
    52 | 53 |
    54 |
    55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
    6 |
    9 |
    10 |
    11 |
    12 |
    13 |
    14 |
    15 | 16 |
    17 |
    18 |
    19 |
    20 |
    22 |
    24 |
    25 |
    26 |
    本网站>搜索内容> 29 |
    30 |
    31 |
    32 | 33 |
    34 |
    35 |
    36 |
    37 | 40 |
    41 | 44 |
    45 |
    46 | 47 |
    48 |
    49 |
    50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | cat_ID; 6 | ?> 7 | 8 |
    9 |
    11 |
    -
    12 |
    13 |
    14 |
    15 |
    16 |
    17 |
    18 | 19 |
    20 |
    21 |
    22 |
    23 |
    25 |
    27 |
    28 |
    29 |
    本网站>> 33 |
    34 |
    35 |
    36 | 37 |
    38 |
    39 |
    40 |
    41 | 44 |
    45 |
    46 | 47 |
    48 |
    49 | 52 |
    53 |
    54 |
    55 |
    56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /static/css/theme-options.css: -------------------------------------------------------------------------------- 1 | .theme-set-main { 2 | margin-top: 20px; 3 | padding: 10px; 4 | background: #fff; 5 | } 6 | 7 | .theme-set-itemright { 8 | 9 | } 10 | 11 | .theme-set-from { 12 | max-width: 700px; 13 | } 14 | 15 | .theme-set-input { 16 | border: 1px solid #ddd; 17 | background-color: #fff; 18 | color: #32373c; 19 | outline: 0; 20 | transition: 50ms border-color ease-in-out; 21 | padding-left: 10px; 22 | height: 38px; 23 | line-height: 1.3; 24 | width: 300px; 25 | 26 | } 27 | 28 | .theme-set-label { 29 | line-height: 22px; 30 | height: 22px; 31 | padding: 2px 0; 32 | } 33 | 34 | .theme-set-control { 35 | vertical-align:text-top; 36 | display: inline-block; 37 | min-width: 500px; 38 | } 39 | 40 | .theme-set-title { 41 | width: 180px; 42 | text-align: left; 43 | display: inline-block; 44 | vertical-align:text-top; 45 | 46 | } 47 | .layui-tab-item{ 48 | height: 500px!important; 49 | overflow: auto; 50 | } 51 | .layui-form-switch{ 52 | margin-top: 0!important; 53 | } -------------------------------------------------------------------------------- /static/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | -------------------------------------------------------------------------------- /static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/avatar.png -------------------------------------------------------------------------------- /static/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/back.png -------------------------------------------------------------------------------- /static/img/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/cat.png -------------------------------------------------------------------------------- /static/img/close_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/close_h.png -------------------------------------------------------------------------------- /static/img/close_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/close_w.png -------------------------------------------------------------------------------- /static/img/ewmsk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/ewmsk.png -------------------------------------------------------------------------------- /static/img/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/folder.ico -------------------------------------------------------------------------------- /static/img/foldercat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/foldercat.png -------------------------------------------------------------------------------- /static/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/forward.png -------------------------------------------------------------------------------- /static/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/search.png -------------------------------------------------------------------------------- /static/img/txt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/txt.bmp -------------------------------------------------------------------------------- /static/img/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/txt.png -------------------------------------------------------------------------------- /static/img/word-iocn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/word-iocn.png -------------------------------------------------------------------------------- /static/img/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/img/word.png -------------------------------------------------------------------------------- /static/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.4 MIT License By https://www.layui.com */ 2 | blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}html{font:12px 'Helvetica Neue','PingFang SC',STHeitiSC-Light,Helvetica,Arial,sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0)}a{text-decoration:none;background:0 0}a:active,a:hover{outline:0}table{border-collapse:collapse;border-spacing:0}li{list-style:none}b,strong{font-weight:700}h1,h2,h3,h4,h5,h6{font-weight:500}address,cite,dfn,em,var{font-style:normal}dfn{font-style:italic}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}img{border:0;vertical-align:bottom}.layui-inline,input,label{vertical-align:middle}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;outline:0}button,select{text-transform:none}select{-webkit-appearance:none;border:none}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}@font-face{font-family:layui-icon;src:url(../font/iconfont.eot?v=1.0.7);src:url(../font/iconfont.eot?v=1.0.7#iefix) format('embedded-opentype'),url(../font/iconfont.woff?v=1.0.7) format('woff'),url(../font/iconfont.ttf?v=1.0.7) format('truetype'),url(../font/iconfont.svg?v=1.0.7#iconfont) format('svg')}.layui-icon{font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-box,.layui-box *{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important}.layui-border-box,.layui-border-box *{-webkit-box-sizing:border-box!important;-moz-box-sizing:border-box!important;box-sizing:border-box!important}.layui-inline{position:relative;display:inline-block;*display:inline;*zoom:1}.layui-edge,.layui-upload-iframe{position:absolute;width:0;height:0}.layui-edge{border-style:dashed;border-color:transparent;overflow:hidden}.layui-elip{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-disabled,.layui-disabled:active{background-color:#d2d2d2!important;color:#fff!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}.layui-upload-iframe{border:0;visibility:hidden}.layui-upload-enter{border:1px solid #009E94;background-color:#009E94;color:#fff;-webkit-transform:scale(1.1);transform:scale(1.1)}@-webkit-keyframes layui-m-anim-scale{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layui-m-anim-scale{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.layui-m-anim-scale{animation-name:layui-m-anim-scale;-webkit-animation-name:layui-m-anim-scale}@-webkit-keyframes layui-m-anim-up{0%{opacity:0;-webkit-transform:translateY(800px);transform:translateY(800px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layui-m-anim-up{0%{opacity:0;-webkit-transform:translateY(800px);transform:translateY(800px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.layui-m-anim-up{-webkit-animation-name:layui-m-anim-up;animation-name:layui-m-anim-up}@-webkit-keyframes layui-m-anim-left{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes layui-m-anim-left{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.layui-m-anim-left{-webkit-animation-name:layui-m-anim-left;animation-name:layui-m-anim-left}@-webkit-keyframes layui-m-anim-right{0%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes layui-m-anim-right{0%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.layui-m-anim-right{-webkit-animation-name:layui-m-anim-right;animation-name:layui-m-anim-right}@-webkit-keyframes layui-m-anim-lout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes layui-m-anim-lout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.layui-m-anim-lout{-webkit-animation-name:layui-m-anim-lout;animation-name:layui-m-anim-lout}@-webkit-keyframes layui-m-anim-rout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes layui-m-anim-rout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(100%);transform:translateX(100%)}}.layui-m-anim-rout{-webkit-animation-name:layui-m-anim-rout;animation-name:layui-m-anim-rout}.layui-m-layer{position:relative;z-index:19891014}.layui-m-layer *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.layui-m-layermain,.layui-m-layershade{position:fixed;left:0;top:0;width:100%;height:100%}.layui-m-layershade{background-color:rgba(0,0,0,.7);pointer-events:auto}.layui-m-layermain{display:table;font-family:Helvetica,arial,sans-serif;pointer-events:none}.layui-m-layermain .layui-m-layersection{display:table-cell;vertical-align:middle;text-align:center}.layui-m-layerchild{position:relative;display:inline-block;text-align:left;background-color:#fff;font-size:14px;border-radius:5px;box-shadow:0 0 8px rgba(0,0,0,.1);pointer-events:auto;-webkit-overflow-scrolling:touch;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.2s;animation-duration:.2s}.layui-m-layer0 .layui-m-layerchild{width:90%;max-width:640px}.layui-m-layer1 .layui-m-layerchild{border:none;border-radius:0}.layui-m-layer2 .layui-m-layerchild{width:auto;max-width:260px;min-width:40px;border:none;background:0 0;box-shadow:none;color:#fff}.layui-m-layerchild h3{padding:0 10px;height:60px;line-height:60px;font-size:16px;font-weight:400;border-radius:5px 5px 0 0;text-align:center}.layui-m-layerbtn span,.layui-m-layerchild h3{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-m-layercont{padding:50px 30px;line-height:22px;text-align:center}.layui-m-layer1 .layui-m-layercont{padding:0;text-align:left}.layui-m-layer2 .layui-m-layercont{text-align:center;padding:0;line-height:0}.layui-m-layer2 .layui-m-layercont i{width:25px;height:25px;margin-left:8px;display:inline-block;background-color:#fff;border-radius:100%;-webkit-animation:layui-m-anim-loading 1.4s infinite ease-in-out;animation:layui-m-anim-loading 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.layui-m-layerbtn,.layui-m-layerbtn span{position:relative;text-align:center;border-radius:0 0 5px 5px}.layui-m-layer2 .layui-m-layercont p{margin-top:20px}@-webkit-keyframes layui-m-anim-loading{0%,100%,80%{transform:scale(0);-webkit-transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}@keyframes layui-m-anim-loading{0%,100%,80%{transform:scale(0);-webkit-transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}.layui-m-layer2 .layui-m-layercont i:first-child{margin-left:0;-webkit-animation-delay:-.32s;animation-delay:-.32s}.layui-m-layer2 .layui-m-layercont i.layui-m-layerload{-webkit-animation-delay:-.16s;animation-delay:-.16s}.layui-m-layer2 .layui-m-layercont>div{line-height:22px;padding-top:7px;margin-bottom:20px;font-size:14px}.layui-m-layerbtn{display:box;display:-moz-box;display:-webkit-box;width:100%;height:50px;line-height:50px;font-size:0;border-top:1px solid #D0D0D0;background-color:#F2F2F2}.layui-m-layerbtn span{display:block;-moz-box-flex:1;box-flex:1;-webkit-box-flex:1;font-size:14px;cursor:pointer}.layui-m-layerbtn span[yes]{color:#40AFFE}.layui-m-layerbtn span[no]{border-right:1px solid #D0D0D0;border-radius:0 0 0 5px}.layui-m-layerbtn span:active{background-color:#F6F6F6}.layui-m-layerend{position:absolute;right:7px;top:10px;width:30px;height:30px;border:0;font-weight:400;background:0 0;cursor:pointer;-webkit-appearance:none;font-size:30px}.layui-m-layerend::after,.layui-m-layerend::before{position:absolute;left:5px;top:15px;content:'';width:18px;height:1px;background-color:#999;transform:rotate(45deg);-webkit-transform:rotate(45deg);border-radius:3px}.layui-m-layerend::after{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}body .layui-m-layer .layui-m-layer-footer{position:fixed;width:95%;max-width:100%;margin:0 auto;left:0;right:0;bottom:10px;background:0 0}.layui-m-layer-footer .layui-m-layercont{padding:20px;border-radius:5px 5px 0 0;background-color:rgba(255,255,255,.8)}.layui-m-layer-footer .layui-m-layerbtn{display:block;height:auto;background:0 0;border-top:none}.layui-m-layer-footer .layui-m-layerbtn span{background-color:rgba(255,255,255,.8)}.layui-m-layer-footer .layui-m-layerbtn span[no]{color:#FD482C;border-top:1px solid #c2c2c2;border-radius:0 0 5px 5px}.layui-m-layer-footer .layui-m-layerbtn span[yes]{margin-top:10px;border-radius:5px}body .layui-m-layer .layui-m-layer-msg{width:auto;max-width:90%;margin:0 auto;bottom:-150px;background-color:rgba(0,0,0,.7);color:#fff}.layui-m-layer-msg .layui-m-layercont{padding:10px 20px} -------------------------------------------------------------------------------- /static/layui/css/modules/code.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.4 MIT License By https://www.layui.com */ 2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none} -------------------------------------------------------------------------------- /static/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.4 MIT License By https://www.layui.com */ 2 | .laydate-set-ym,.layui-laydate,.layui-laydate *,.layui-laydate-list{box-sizing:border-box}html #layuicss-laydate{display:none;position:absolute;width:1989px}.layui-laydate *{margin:0;padding:0}.layui-laydate{position:absolute;z-index:66666666;margin:5px 0;border-radius:2px;font-size:14px;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-name:laydate-upbit;animation-name:laydate-upbit}.layui-laydate-main{width:272px}.layui-laydate-content td,.layui-laydate-header *,.layui-laydate-list li{transition-duration:.3s;-webkit-transition-duration:.3s}@-webkit-keyframes laydate-upbit{from{-webkit-transform:translate3d(0,20px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes laydate-upbit{from{transform:translate3d(0,20px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-laydate-static{position:relative;z-index:0;display:inline-block;margin:0;-webkit-animation:none;animation:none}.laydate-ym-show .laydate-next-m,.laydate-ym-show .laydate-prev-m{display:none!important}.laydate-ym-show .laydate-next-y,.laydate-ym-show .laydate-prev-y{display:inline-block!important}.laydate-time-show .laydate-set-ym span[lay-type=month],.laydate-time-show .laydate-set-ym span[lay-type=year],.laydate-time-show .layui-laydate-header .layui-icon,.laydate-ym-show .laydate-set-ym span[lay-type=month]{display:none!important}.layui-laydate-header{position:relative;line-height:30px;padding:10px 70px 5px}.laydate-set-ym span,.layui-laydate-header i{padding:0 5px;cursor:pointer}.layui-laydate-header *{display:inline-block;vertical-align:bottom}.layui-laydate-header i{position:absolute;top:10px;color:#999;font-size:18px}.layui-laydate-header i.laydate-prev-y{left:15px}.layui-laydate-header i.laydate-prev-m{left:45px}.layui-laydate-header i.laydate-next-y{right:15px}.layui-laydate-header i.laydate-next-m{right:45px}.laydate-set-ym{width:100%;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.laydate-time-text{cursor:default!important}.layui-laydate-content{position:relative;padding:10px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-laydate-content table{border-collapse:collapse;border-spacing:0}.layui-laydate-content td,.layui-laydate-content th{width:36px;height:30px;padding:5px;text-align:center}.layui-laydate-content td{position:relative;cursor:pointer}.laydate-day-mark{position:absolute;left:0;top:0;width:100%;height:100%;line-height:30px;font-size:12px;overflow:hidden}.laydate-day-mark::after{position:absolute;content:'';right:2px;top:2px;width:5px;height:5px;border-radius:50%}.layui-laydate-footer{position:relative;height:46px;line-height:26px;padding:10px 20px}.layui-laydate-footer span{margin-right:15px;display:inline-block;cursor:pointer;font-size:12px}.layui-laydate-footer span:hover{color:#5FB878}.laydate-footer-btns{position:absolute;right:10px;top:10px}.laydate-footer-btns span{height:26px;line-height:26px;margin:0 0 0 -1px;padding:0 10px;border:1px solid #C9C9C9;background-color:#fff;white-space:nowrap;vertical-align:top;border-radius:2px}.layui-laydate-list>li,.layui-laydate-range .layui-laydate-main{display:inline-block;vertical-align:middle}.layui-laydate-list{position:absolute;left:0;top:0;width:100%;height:100%;padding:10px;background-color:#fff}.layui-laydate-list>li{position:relative;width:33.3%;height:36px;line-height:36px;margin:3px 0;text-align:center;cursor:pointer}.laydate-month-list>li{width:25%;margin:17px 0}.laydate-time-list>li{height:100%;margin:0;line-height:normal;cursor:default}.laydate-time-list p{position:relative;top:-4px;line-height:29px}.laydate-time-list ol{height:181px;overflow:hidden}.laydate-time-list>li:hover ol{overflow-y:auto}.laydate-time-list ol li{width:130%;padding-left:33px;line-height:30px;text-align:left;cursor:pointer}.layui-laydate-hint{position:absolute;top:115px;left:50%;width:250px;margin-left:-125px;line-height:20px;padding:15px;text-align:center;font-size:12px}.layui-laydate-range{width:546px}.layui-laydate-range .laydate-main-list-0 .laydate-next-m,.layui-laydate-range .laydate-main-list-0 .laydate-next-y,.layui-laydate-range .laydate-main-list-1 .laydate-prev-m,.layui-laydate-range .laydate-main-list-1 .laydate-prev-y{display:none}.layui-laydate-range .laydate-main-list-1 .layui-laydate-content{border-left:1px solid #e2e2e2}.layui-laydate,.layui-laydate-hint{border:1px solid #d2d2d2;box-shadow:0 2px 4px rgba(0,0,0,.12);background-color:#fff;color:#666}.layui-laydate-header{border-bottom:1px solid #e2e2e2}.layui-laydate-header i:hover,.layui-laydate-header span:hover{color:#5FB878}.layui-laydate-content{border-top:none 0;border-bottom:none 0}.layui-laydate-content th{font-weight:400;color:#333}.layui-laydate-content td{color:#666}.layui-laydate-content td.laydate-selected{background-color:#00F7DE}.laydate-selected:hover{background-color:#00F7DE!important}.layui-laydate-content td:hover,.layui-laydate-list li:hover{background-color:#eaeaea;color:#333}.laydate-time-list li ol{margin:0;padding:0;border:1px solid #e2e2e2;border-left-width:0}.laydate-time-list li:first-child ol{border-left-width:1px}.laydate-time-list>li:hover{background:0 0}.layui-laydate-content .laydate-day-next,.layui-laydate-content .laydate-day-prev{color:#d2d2d2}.laydate-selected.laydate-day-next,.laydate-selected.laydate-day-prev{background-color:#f8f8f8!important}.layui-laydate-footer{border-top:1px solid #e2e2e2}.layui-laydate-hint{color:#FF5722}.laydate-day-mark::after{background-color:#5FB878}.layui-laydate-content td.layui-this .laydate-day-mark::after{display:none}.layui-laydate-footer span[lay-type=date]{color:#5FB878}.layui-laydate .layui-this{background-color:#009688!important;color:#fff!important}.layui-laydate .laydate-disabled,.layui-laydate .laydate-disabled:hover{background:0 0!important;color:#d2d2d2!important;cursor:not-allowed!important;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.laydate-theme-molv{border:none}.laydate-theme-molv.layui-laydate-range{width:548px}.laydate-theme-molv .layui-laydate-main{width:274px}.laydate-theme-molv .layui-laydate-header{border:none;background-color:#009688}.laydate-theme-molv .layui-laydate-header i,.laydate-theme-molv .layui-laydate-header span{color:#f6f6f6}.laydate-theme-molv .layui-laydate-header i:hover,.laydate-theme-molv .layui-laydate-header span:hover{color:#fff}.laydate-theme-molv .layui-laydate-content{border:1px solid #e2e2e2;border-top:none;border-bottom:none}.laydate-theme-molv .laydate-main-list-1 .layui-laydate-content{border-left:none}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li,.laydate-theme-grid .layui-laydate-content td,.laydate-theme-grid .layui-laydate-content thead,.laydate-theme-molv .layui-laydate-footer{border:1px solid #e2e2e2}.laydate-theme-grid .laydate-selected,.laydate-theme-grid .laydate-selected:hover{background-color:#f2f2f2!important;color:#009688!important}.laydate-theme-grid .laydate-selected.laydate-day-next,.laydate-theme-grid .laydate-selected.laydate-day-prev{color:#d2d2d2!important}.laydate-theme-grid .laydate-month-list,.laydate-theme-grid .laydate-year-list{margin:1px 0 0 1px}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li{margin:0 -1px -1px 0}.laydate-theme-grid .laydate-year-list>li{height:43px;line-height:43px}.laydate-theme-grid .laydate-month-list>li{height:71px;line-height:71px} -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.4 MIT License By https://www.layui.com */ 2 | .layui-layer-imgbar,.layui-layer-imgtit a,.layui-layer-tab .layui-layer-title span,.layui-layer-title{text-overflow:ellipsis;white-space:nowrap}html #layuicss-layer{display:none;position:absolute;width:1989px}.layui-layer,.layui-layer-shade{position:fixed;_position:absolute;pointer-events:auto}.layui-layer-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px")}.layui-layer{-webkit-overflow-scrolling:touch;top:150px;left:0;margin:0;padding:0;background-color:#fff;-webkit-background-clip:content;border-radius:2px;box-shadow:1px 1px 50px rgba(0,0,0,.3)}.layui-layer-close{position:absolute}.layui-layer-content{position:relative}.layui-layer-border{border:1px solid #B2B2B2;border:1px solid rgba(0,0,0,.1);box-shadow:1px 1px 5px rgba(0,0,0,.2)}.layui-layer-load{background:url(loading-1.gif) center center no-repeat #eee}.layui-layer-ico{background:url(icon.png) no-repeat}.layui-layer-btn a,.layui-layer-dialog .layui-layer-ico,.layui-layer-setwin a{display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-move{display:none;position:fixed;*position:absolute;left:0;top:0;width:100%;height:100%;cursor:move;opacity:0;filter:alpha(opacity=0);background-color:#fff;z-index:2147483647}.layui-layer-resize{position:absolute;width:15px;height:15px;right:0;bottom:0;cursor:se-resize}.layer-anim{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.3s;animation-duration:.3s}@-webkit-keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-00{-webkit-animation-name:layer-bounceIn;animation-name:layer-bounceIn}@-webkit-keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-01{-webkit-animation-name:layer-zoomInDown;animation-name:layer-zoomInDown}@-webkit-keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.layer-anim-02{-webkit-animation-name:layer-fadeInUpBig;animation-name:layer-fadeInUpBig}@-webkit-keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-03{-webkit-animation-name:layer-zoomInLeft;animation-name:layer-zoomInLeft}@-webkit-keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);-ms-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.layer-anim-04{-webkit-animation-name:layer-rollIn;animation-name:layer-rollIn}@keyframes layer-fadeIn{0%{opacity:0}100%{opacity:1}}.layer-anim-05{-webkit-animation-name:layer-fadeIn;animation-name:layer-fadeIn}@-webkit-keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.layer-anim-06{-webkit-animation-name:layer-shake;animation-name:layer-shake}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.layui-layer-title{padding:0 80px 0 20px;height:42px;line-height:42px;border-bottom:1px solid #eee;font-size:14px;color:#333;overflow:hidden;background-color:#F8F8F8;border-radius:2px 2px 0 0}.layui-layer-setwin{position:absolute;right:15px;*right:0;top:15px;font-size:0;line-height:initial}.layui-layer-setwin a{position:relative;width:16px;height:16px;margin-left:10px;font-size:12px;_overflow:hidden}.layui-layer-setwin .layui-layer-min cite{position:absolute;width:14px;height:2px;left:0;top:50%;margin-top:-1px;background-color:#2E2D3C;cursor:pointer;_overflow:hidden}.layui-layer-setwin .layui-layer-min:hover cite{background-color:#2D93CA}.layui-layer-setwin .layui-layer-max{background-position:-32px -40px}.layui-layer-setwin .layui-layer-max:hover{background-position:-16px -40px}.layui-layer-setwin .layui-layer-maxmin{background-position:-65px -40px}.layui-layer-setwin .layui-layer-maxmin:hover{background-position:-49px -40px}.layui-layer-setwin .layui-layer-close1{background-position:1px -40px;cursor:pointer}.layui-layer-setwin .layui-layer-close1:hover{opacity:.7}.layui-layer-setwin .layui-layer-close2{position:absolute;right:-28px;top:-28px;width:30px;height:30px;margin-left:0;background-position:-149px -31px;*right:-18px;_display:none}.layui-layer-setwin .layui-layer-close2:hover{background-position:-180px -31px}.layui-layer-btn{text-align:right;padding:0 15px 12px;pointer-events:auto;user-select:none;-webkit-user-select:none}.layui-layer-btn a{height:28px;line-height:28px;margin:5px 5px 0;padding:0 15px;border:1px solid #dedede;background-color:#fff;color:#333;border-radius:2px;font-weight:400;cursor:pointer;text-decoration:none}.layui-layer-btn a:hover{opacity:.9;text-decoration:none}.layui-layer-btn a:active{opacity:.8}.layui-layer-btn .layui-layer-btn0{border-color:#1E9FFF;background-color:#1E9FFF;color:#fff}.layui-layer-btn-l{text-align:left}.layui-layer-btn-c{text-align:center}.layui-layer-dialog{min-width:260px}.layui-layer-dialog .layui-layer-content{position:relative;padding:20px;line-height:24px;word-break:break-all;overflow:hidden;font-size:14px;overflow-x:hidden;overflow-y:auto}.layui-layer-dialog .layui-layer-content .layui-layer-ico{position:absolute;top:16px;left:15px;_left:-40px;width:30px;height:30px}.layui-layer-ico1{background-position:-30px 0}.layui-layer-ico2{background-position:-60px 0}.layui-layer-ico3{background-position:-90px 0}.layui-layer-ico4{background-position:-120px 0}.layui-layer-ico5{background-position:-150px 0}.layui-layer-ico6{background-position:-180px 0}.layui-layer-rim{border:6px solid #8D8D8D;border:6px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:none}.layui-layer-msg{min-width:180px;border:1px solid #D3D4D3;box-shadow:none}.layui-layer-hui{min-width:100px;background-color:#000;filter:alpha(opacity=60);background-color:rgba(0,0,0,.6);color:#fff;border:none}.layui-layer-hui .layui-layer-content{padding:12px 25px;text-align:center}.layui-layer-dialog .layui-layer-padding{padding:20px 20px 20px 55px;text-align:left}.layui-layer-page .layui-layer-content{position:relative;overflow:auto}.layui-layer-iframe .layui-layer-btn,.layui-layer-page .layui-layer-btn{padding-top:10px}.layui-layer-nobg{background:0 0}.layui-layer-iframe iframe{display:block;width:100%}.layui-layer-loading{border-radius:100%;background:0 0;box-shadow:none;border:none}.layui-layer-loading .layui-layer-content{width:60px;height:24px;background:url(loading-0.gif) no-repeat}.layui-layer-loading .layui-layer-loading1{width:37px;height:37px;background:url(loading-1.gif) no-repeat}.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2{width:32px;height:32px;background:url(loading-2.gif) no-repeat}.layui-layer-tips{background:0 0;box-shadow:none;border:none}.layui-layer-tips .layui-layer-content{position:relative;line-height:22px;min-width:12px;padding:8px 15px;font-size:12px;_float:left;border-radius:2px;box-shadow:1px 1px 3px rgba(0,0,0,.2);background-color:#000;color:#fff}.layui-layer-tips .layui-layer-close{right:-2px;top:-1px}.layui-layer-tips i.layui-layer-TipsG{position:absolute;width:0;height:0;border-width:8px;border-color:transparent;border-style:dashed;*overflow:hidden}.layui-layer-tips i.layui-layer-TipsB,.layui-layer-tips i.layui-layer-TipsT{left:5px;border-right-style:solid;border-right-color:#000}.layui-layer-tips i.layui-layer-TipsT{bottom:-8px}.layui-layer-tips i.layui-layer-TipsB{top:-8px}.layui-layer-tips i.layui-layer-TipsL,.layui-layer-tips i.layui-layer-TipsR{top:5px;border-bottom-style:solid;border-bottom-color:#000}.layui-layer-tips i.layui-layer-TipsR{left:-8px}.layui-layer-tips i.layui-layer-TipsL{right:-8px}.layui-layer-lan[type=dialog]{min-width:280px}.layui-layer-lan .layui-layer-title{background:#4476A7;color:#fff;border:none}.layui-layer-lan .layui-layer-btn{padding:5px 10px 10px;text-align:right;border-top:1px solid #E9E7E7}.layui-layer-lan .layui-layer-btn a{background:#fff;border-color:#E9E7E7;color:#333}.layui-layer-lan .layui-layer-btn .layui-layer-btn1{background:#C9C5C5}.layui-layer-molv .layui-layer-title{background:#009f95;color:#fff;border:none}.layui-layer-molv .layui-layer-btn a{background:#009f95;border-color:#009f95}.layui-layer-molv .layui-layer-btn .layui-layer-btn1{background:#92B8B1}.layui-layer-iconext{background:url(icon-ext.png) no-repeat}.layui-layer-prompt .layui-layer-input{display:block;width:230px;height:36px;margin:0 auto;line-height:30px;padding-left:10px;border:1px solid #e6e6e6;color:#333}.layui-layer-prompt textarea.layui-layer-input{width:300px;height:100px;line-height:20px;padding:6px 10px}.layui-layer-prompt .layui-layer-content{padding:20px}.layui-layer-prompt .layui-layer-btn{padding-top:0}.layui-layer-tab{box-shadow:1px 1px 50px rgba(0,0,0,.4)}.layui-layer-tab .layui-layer-title{padding-left:0;overflow:visible}.layui-layer-tab .layui-layer-title span{position:relative;float:left;min-width:80px;max-width:260px;padding:0 20px;text-align:center;overflow:hidden;cursor:pointer}.layui-layer-tab .layui-layer-title span.layui-this{height:43px;border-left:1px solid #eee;border-right:1px solid #eee;background-color:#fff;z-index:10}.layui-layer-tab .layui-layer-title span:first-child{border-left:none}.layui-layer-tabmain{line-height:24px;clear:both}.layui-layer-tabmain .layui-layer-tabli{display:none}.layui-layer-tabmain .layui-layer-tabli.layui-this{display:block}.layui-layer-photos{-webkit-animation-duration:.8s;animation-duration:.8s}.layui-layer-photos .layui-layer-content{overflow:hidden;text-align:center}.layui-layer-photos .layui-layer-phimg img{position:relative;width:100%;display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-imgbar,.layui-layer-imguide{display:none}.layui-layer-imgnext,.layui-layer-imgprev{position:absolute;top:50%;width:27px;_width:44px;height:44px;margin-top:-22px;outline:0;blr:expression(this.onFocus=this.blur())}.layui-layer-imgprev{left:10px;background-position:-5px -5px;_background-position:-70px -5px}.layui-layer-imgprev:hover{background-position:-33px -5px;_background-position:-120px -5px}.layui-layer-imgnext{right:10px;_right:8px;background-position:-5px -50px;_background-position:-70px -50px}.layui-layer-imgnext:hover{background-position:-33px -50px;_background-position:-120px -50px}.layui-layer-imgbar{position:absolute;left:0;bottom:0;width:100%;height:32px;line-height:32px;background-color:rgba(0,0,0,.8);background-color:#000\9;filter:Alpha(opacity=80);color:#fff;overflow:hidden;font-size:0}.layui-layer-imgtit *{display:inline-block;*display:inline;*zoom:1;vertical-align:top;font-size:12px}.layui-layer-imgtit a{max-width:65%;overflow:hidden;color:#fff}.layui-layer-imgtit a:hover{color:#fff;text-decoration:underline}.layui-layer-imgtit em{padding-left:10px;font-style:normal}@-webkit-keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);-ms-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-close{-webkit-animation-name:layer-bounceOut;animation-name:layer-bounceOut;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.2s;animation-duration:.2s}@media screen and (max-width:1100px){.layui-layer-iframe{overflow-y:auto;-webkit-overflow-scrolling:touch}} -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /static/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/font/iconfont.eot -------------------------------------------------------------------------------- /static/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /static/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/font/iconfont.woff -------------------------------------------------------------------------------- /static/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /static/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/0.gif -------------------------------------------------------------------------------- /static/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/1.gif -------------------------------------------------------------------------------- /static/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/10.gif -------------------------------------------------------------------------------- /static/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/11.gif -------------------------------------------------------------------------------- /static/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/12.gif -------------------------------------------------------------------------------- /static/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/13.gif -------------------------------------------------------------------------------- /static/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/14.gif -------------------------------------------------------------------------------- /static/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/15.gif -------------------------------------------------------------------------------- /static/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/16.gif -------------------------------------------------------------------------------- /static/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/17.gif -------------------------------------------------------------------------------- /static/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/18.gif -------------------------------------------------------------------------------- /static/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/19.gif -------------------------------------------------------------------------------- /static/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/2.gif -------------------------------------------------------------------------------- /static/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/20.gif -------------------------------------------------------------------------------- /static/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/21.gif -------------------------------------------------------------------------------- /static/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/22.gif -------------------------------------------------------------------------------- /static/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/23.gif -------------------------------------------------------------------------------- /static/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/24.gif -------------------------------------------------------------------------------- /static/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/25.gif -------------------------------------------------------------------------------- /static/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/26.gif -------------------------------------------------------------------------------- /static/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/27.gif -------------------------------------------------------------------------------- /static/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/28.gif -------------------------------------------------------------------------------- /static/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/29.gif -------------------------------------------------------------------------------- /static/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/3.gif -------------------------------------------------------------------------------- /static/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/30.gif -------------------------------------------------------------------------------- /static/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/31.gif -------------------------------------------------------------------------------- /static/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/32.gif -------------------------------------------------------------------------------- /static/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/33.gif -------------------------------------------------------------------------------- /static/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/34.gif -------------------------------------------------------------------------------- /static/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/35.gif -------------------------------------------------------------------------------- /static/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/36.gif -------------------------------------------------------------------------------- /static/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/37.gif -------------------------------------------------------------------------------- /static/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/38.gif -------------------------------------------------------------------------------- /static/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/39.gif -------------------------------------------------------------------------------- /static/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/4.gif -------------------------------------------------------------------------------- /static/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/40.gif -------------------------------------------------------------------------------- /static/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/41.gif -------------------------------------------------------------------------------- /static/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/42.gif -------------------------------------------------------------------------------- /static/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/43.gif -------------------------------------------------------------------------------- /static/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/44.gif -------------------------------------------------------------------------------- /static/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/45.gif -------------------------------------------------------------------------------- /static/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/46.gif -------------------------------------------------------------------------------- /static/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/47.gif -------------------------------------------------------------------------------- /static/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/48.gif -------------------------------------------------------------------------------- /static/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/49.gif -------------------------------------------------------------------------------- /static/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/5.gif -------------------------------------------------------------------------------- /static/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/50.gif -------------------------------------------------------------------------------- /static/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/51.gif -------------------------------------------------------------------------------- /static/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/52.gif -------------------------------------------------------------------------------- /static/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/53.gif -------------------------------------------------------------------------------- /static/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/54.gif -------------------------------------------------------------------------------- /static/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/55.gif -------------------------------------------------------------------------------- /static/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/56.gif -------------------------------------------------------------------------------- /static/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/57.gif -------------------------------------------------------------------------------- /static/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/58.gif -------------------------------------------------------------------------------- /static/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/59.gif -------------------------------------------------------------------------------- /static/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/6.gif -------------------------------------------------------------------------------- /static/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/60.gif -------------------------------------------------------------------------------- /static/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/61.gif -------------------------------------------------------------------------------- /static/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/62.gif -------------------------------------------------------------------------------- /static/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/63.gif -------------------------------------------------------------------------------- /static/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/64.gif -------------------------------------------------------------------------------- /static/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/65.gif -------------------------------------------------------------------------------- /static/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/66.gif -------------------------------------------------------------------------------- /static/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/67.gif -------------------------------------------------------------------------------- /static/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/68.gif -------------------------------------------------------------------------------- /static/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/69.gif -------------------------------------------------------------------------------- /static/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/7.gif -------------------------------------------------------------------------------- /static/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/70.gif -------------------------------------------------------------------------------- /static/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/71.gif -------------------------------------------------------------------------------- /static/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/8.gif -------------------------------------------------------------------------------- /static/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghboke/win10explore/f8cf4b5b44c2da13d1af0efb43fca2998e6b72fa/static/layui/images/face/9.gif -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Win10Explore 3 | Theme URI: https://www.lovestu.com/win10explore 4 | Version: 1.3 5 | Author: applek 6 | Author URI: https://www.lovestu.com 7 | Description: 仿Win10资源管理器主题 8 | Tags:win10,explore 9 | */ 10 | 11 | * { 12 | font-family: "Microsoft YaHei" 13 | } 14 | 15 | #main a:hover { 16 | color: #333; 17 | } 18 | 19 | #main { 20 | border: 1px solid #ebeef5; 21 | min-height: 700px; 22 | margin-top: 20px; 23 | box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1); 24 | padding: 2px 25 | } 26 | 27 | .postlist { 28 | min-height: 500px; 29 | overflow: auto 30 | } 31 | 32 | .close { 33 | text-align: center; 34 | line-height: 30px; 35 | width: 45px; 36 | height: 30px; 37 | float: right; 38 | background-blend-mode: lighten; 39 | background-size: cover 40 | } 41 | 42 | .close:hover { 43 | background: red; 44 | color: #fff 45 | } 46 | .close:hover a { 47 | color: #fff!important; 48 | } 49 | 50 | .blog-title { 51 | padding-left: 10px; 52 | user-select: none; 53 | padding: 5px; 54 | } 55 | 56 | .content { 57 | margin-top: 10px; 58 | min-height: 500px 59 | } 60 | 61 | .sidebar { 62 | border-right: 1px solid #ebeef5; 63 | display: none; 64 | max-height: 600px; 65 | overflow: auto 66 | } 67 | 68 | .widget { 69 | padding-bottom: 5px; 70 | padding-top: 5px 71 | } 72 | 73 | .widget li { 74 | padding-bottom: 5px; 75 | padding-top: 5px; 76 | padding-left: 40px; 77 | user-select: none 78 | } 79 | 80 | .widget li:hover { 81 | background-color: #e5f3ff 82 | } 83 | 84 | .sidebar-cat li { 85 | padding-bottom: 5px; 86 | padding-top: 5px; 87 | padding-left: 40px; 88 | user-select: none 89 | } 90 | 91 | .sidebar-cat-title { 92 | padding-left: 20px; 93 | padding-bottom: 5px; 94 | padding-top: 5px; 95 | user-select: none 96 | } 97 | 98 | .sidebar-cat-title:hover { 99 | background-color: #e5f3ff 100 | } 101 | 102 | .sidebar-cat li:hover { 103 | background-color: #e5f3ff 104 | } 105 | 106 | .postlist-table { 107 | width: 100% 108 | } 109 | 110 | .postlist th:hover { 111 | background-color: #e5f3ff !important 112 | } 113 | 114 | .postlist-table-list td { 115 | padding: 2px; 116 | color: #6d6d6d 117 | } 118 | 119 | .postlist-table-list:hover { 120 | background-color: #e5f3ff !important 121 | } 122 | 123 | .postlist-table-icon { 124 | width: 16px; 125 | height: 16px; 126 | margin-right: 5px 127 | } 128 | 129 | .postlist-table th { 130 | padding: 5px 131 | } 132 | 133 | .postlist-table-title { 134 | text-align: left 135 | } 136 | 137 | .postlist-table-title th { 138 | border-right: 1px solid #f0f0f0 139 | } 140 | 141 | .postlist table { 142 | cursor: default 143 | } 144 | 145 | 146 | th { 147 | font-weight: lighter 148 | } 149 | 150 | .post-list-post { 151 | padding: 5px; 152 | 153 | } 154 | 155 | .post-list-post:hover { 156 | background-color: #e5f3ff !important 157 | } 158 | 159 | .view { 160 | text-align: right; 161 | padding-right: 20px 162 | } 163 | 164 | .post-namelist-title { 165 | padding: 5px; 166 | border-right: 1px solid #f0f0f0; 167 | user-select: none; 168 | } 169 | 170 | .post-namelist-title:hover { 171 | background-color: #e5f3ff; 172 | } 173 | 174 | .toolbar-url { 175 | cursor: default; 176 | border: 1px solid #ebeef5 177 | } 178 | 179 | .toolbar-url span:hover { 180 | background-color: #e5f3ff; 181 | border: 1px solid #e5f3ff 182 | } 183 | 184 | .toolbar-url span { 185 | padding: 4px 8px; 186 | display: inline-block; 187 | border: 1px solid #fff 188 | } 189 | 190 | .toolbar-search { 191 | margin-left: 10px; 192 | border: 1px solid #ebeef5 193 | } 194 | 195 | .toolbar-search input { 196 | padding: 4px; 197 | border: 1px solid #fff 198 | } 199 | 200 | .toobar-icon { 201 | width: 18px; 202 | height: 18px 203 | } 204 | 205 | .toobar-col { 206 | font-weight: lighter; 207 | text-align: center; 208 | color: #808080; 209 | line-height: 30px 210 | } 211 | 212 | .toobar-col i { 213 | margin-right: 10px 214 | } 215 | 216 | .post-content { 217 | padding: 10px; 218 | max-height: 600px; 219 | overflow: auto 220 | } 221 | 222 | .post-content img { 223 | max-width: 100%; 224 | height: auto 225 | } 226 | 227 | .post-content h2 { 228 | padding-bottom: 12px; 229 | border-bottom: 1px solid #efefef; 230 | margin: 30px 0 20px; 231 | line-height: 1.4; 232 | font-weight: 700 233 | } 234 | 235 | .post-content table { 236 | font-family: verdana, arial, sans-serif; 237 | font-size: 11px; 238 | color: #333; 239 | border-width: 1px; 240 | border-color: #666; 241 | border-collapse: collapse 242 | } 243 | 244 | .post-content th { 245 | border-width: 1px; 246 | padding: 8px; 247 | border-style: solid; 248 | border-color: #666; 249 | background-color: #dedede 250 | } 251 | 252 | .post-content td { 253 | border-width: 1px; 254 | padding: 8px; 255 | border-style: solid; 256 | border-color: #666; 257 | background-color: #fff 258 | } 259 | 260 | .post-content p { 261 | line-height: 1.8; 262 | margin: 0 0 10px 263 | } 264 | 265 | .post-title { 266 | display: inline-block; 267 | text-align: center 268 | } 269 | 270 | footer { 271 | margin: 15px 0; 272 | text-align: center 273 | } 274 | 275 | .posts-nav { 276 | text-align: center 277 | } 278 | 279 | .menu_header > li { 280 | line-height: 20px; 281 | display: inline-block; 282 | min-height: 20px 283 | } 284 | 285 | .menu_header li { 286 | padding: 5px 10px 287 | } 288 | 289 | .menu_header > li { 290 | min-width: 40px; 291 | position: relative; 292 | border: 1px solid #fff 293 | } 294 | 295 | .menu_header > li:hover { 296 | background-color: #fdfdff; 297 | border: 1px solid #e5f3ff 298 | } 299 | 300 | .sub-menu { 301 | white-space: nowrap; 302 | position: absolute; 303 | z-index: 999; 304 | background: #fff; 305 | display: none; 306 | left: 0; 307 | top: 28px; 308 | transition: all .2s ease; 309 | box-shadow: 0 1px 2px rgba(0, 0, 0, .21); 310 | min-width: 60px 311 | } 312 | 313 | .sub-menu li { 314 | padding: 8px 20px; 315 | min-width: 60px 316 | } 317 | 318 | .sub-menu li:hover { 319 | background-color: #e5f3ff 320 | } 321 | 322 | .menu-item-has-children:hover .sub-menu { 323 | display: block 324 | } 325 | 326 | .menu-item-has-children:active .sub-menu { 327 | display: block 328 | } 329 | 330 | .post-content-content { 331 | min-height: 450px 332 | } 333 | 334 | .comment_form_textarea { 335 | height: 100px; 336 | border: 1px solid #ebeef5; 337 | margin-top: 20px; 338 | padding: 5px 339 | } 340 | 341 | .comment_form_input input { 342 | border: 1px solid #ebeef5; 343 | margin-top: 5px; 344 | min-height: 30px; 345 | padding: 5px 346 | } 347 | 348 | .form_comment_nav { 349 | text-align: center 350 | } 351 | 352 | .page-numbers { 353 | padding: 5px; 354 | background: #f0f0f0; 355 | border: 1px solid #f0f0f0; 356 | border-right: 3px 357 | } 358 | 359 | .gravatar { 360 | display: inline-block 361 | } 362 | 363 | .comment_content { 364 | display: inline-block 365 | } 366 | 367 | .button_submit { 368 | box-shadow: 0 1px 2px rgba(0, 0, 0, .21); 369 | border: 0; 370 | background: #0066b4; 371 | color: #fff; 372 | padding: 10px 20px; 373 | border-radius: 2px 374 | } 375 | 376 | .button_submit:hover { 377 | cursor: pointer; 378 | background: #007ddd; 379 | box-shadow: 0 1px 2px rgba(0, 0, 0, .21) 380 | } 381 | 382 | #comments { 383 | padding-bottom: 30px; 384 | line-height: 1 385 | } 386 | 387 | .comments-title { 388 | position: relative; 389 | padding-bottom: 10px; 390 | font-size: 18px; 391 | color: #666; 392 | border-bottom: 1px solid #f1f1f1 393 | } 394 | 395 | h3.comments-title:after { 396 | position: absolute; 397 | content: ''; 398 | top: 29px; 399 | left: 0; 400 | width: 135px; 401 | height: 2px; 402 | background: #0066b4 403 | } 404 | 405 | .commentCount { 406 | color: #000 407 | } 408 | 409 | .commentlist { 410 | list-style: none; 411 | margin: 10px 0 0; 412 | padding: 0 413 | } 414 | 415 | .commentlist ol { 416 | list-style: none 417 | } 418 | 419 | .comment { 420 | padding: 10px 0 5px 421 | } 422 | 423 | .comment .media-left { 424 | display: table-cell; 425 | vertical-align: top; 426 | padding-right: 10px 427 | } 428 | 429 | .comment .media-left img { 430 | border-radius: 50% 431 | } 432 | 433 | .comment .media-body { 434 | display: table-cell; 435 | vertical-align: top 436 | } 437 | 438 | .comment .media-body .author_name { 439 | margin-bottom: 5px; 440 | font-size: 14px; 441 | color: #777 442 | } 443 | 444 | .comment .media-body p { 445 | font-size: 14px; 446 | line-height: 1.5em; 447 | color: #777 448 | } 449 | 450 | .comment .media-body p a { 451 | color: #000 452 | } 453 | 454 | .comment .comment-metadata { 455 | margin-left: 58px; 456 | padding: 5px 0 457 | } 458 | 459 | .comment .comment-metadata span { 460 | margin-right: 15px; 461 | font-size: 13px 462 | } 463 | 464 | .comment .comment-metadata span { 465 | font-size: 12px; 466 | color: #999 467 | } 468 | 469 | .comment .comment-metadata span.comment-btn-reply a:hover { 470 | color: #666 471 | } 472 | 473 | .comment .comment-metadata span.comment-btn-reply i { 474 | color: #d1d1d1 475 | } 476 | 477 | .comment .comment-metadata span.comment-btn-reply a { 478 | color: #999 479 | } 480 | 481 | .commentlist > .comment { 482 | border-bottom: #f2f2f2 1px solid 483 | } 484 | 485 | .commentlist .children { 486 | padding-left: 58px 487 | } 488 | 489 | .commentlist .children > .comment { 490 | border-top: #f2f2f2 1px solid 491 | } 492 | 493 | #reply-title { 494 | font-size: 14px; 495 | color: #666; 496 | border-bottom: 0; 497 | color: #999 498 | } 499 | 500 | #reply-title a:first-child, .warning-text a:first-child { 501 | display: inline-block; 502 | margin: 2px; 503 | padding: 5px; 504 | background: #0066b4; 505 | border-radius: 2px; 506 | color: #fff; 507 | font-size: 14px 508 | } 509 | 510 | #reply-title #cancel-comment-reply-link { 511 | background: #fff; 512 | color: #999 513 | } 514 | 515 | #reply-title #cancel-comment-reply-link:hover { 516 | text-decoration: underline 517 | } 518 | 519 | .warning-text { 520 | color: #999 521 | } 522 | 523 | .link-logout { 524 | color: #999 525 | } 526 | 527 | .comment-navigation { 528 | width: 100%; 529 | margin: 0 auto; 530 | padding: 15px 0; 531 | text-align: center 532 | } 533 | 534 | .comment-navigation .page-numbers { 535 | display: inline-block; 536 | padding: 9px 16px; 537 | color: #999; 538 | background: #f1f1f1 539 | } 540 | 541 | .comment-navigation .page-numbers:hover { 542 | background: #e8e8e8; 543 | color: #666 544 | } 545 | 546 | .comment-navigation .current, .comment-navigation .current:hover { 547 | background: #0066b4; 548 | color: #fff 549 | } 550 | 551 | .commentform-info { 552 | float: left 553 | } 554 | 555 | .commentform-info input { 556 | margin-right: 10px; 557 | width: 230px; 558 | border: 0; 559 | border-radius: 0; 560 | box-shadow: none; 561 | background: #f5f5f5; 562 | font-weight: normal; 563 | transition: background .5s 564 | } 565 | 566 | .commentform-info input:focus { 567 | box-shadow: none; 568 | color: #fff !important; 569 | background: #0066b4 570 | } 571 | 572 | .commentform-info input:focus:-moz-input-placeholder { 573 | color: #fff 574 | } 575 | 576 | .commentform-info input:focus::-moz-input-placeholder { 577 | color: #fff 578 | } 579 | 580 | .commentform-info input:focus::-webkit-input-placeholder { 581 | color: #fff 582 | } 583 | 584 | .commentform-info input:focus:-ms-input-placeholder { 585 | color: #fff 586 | } 587 | 588 | .commentBtn .btn { 589 | padding: 8px 0; 590 | width: 140px !important; 591 | text-align: center; 592 | background: #0066b4; 593 | border: 0 594 | } 595 | 596 | .commentBtn .btn:hover { 597 | opacity: .8 598 | } 599 | 600 | .comment-from { 601 | color: #fff; 602 | background: #0066b4; 603 | border-radius: 2px; 604 | padding: 1px 2px; 605 | margin: 2px 5px 606 | } 607 | 608 | .comment-from a { 609 | color: #fff !important 610 | } 611 | 612 | @media (max-width: 991px) { 613 | body { 614 | 615 | background: #efefef; 616 | } 617 | 618 | .layui-container { 619 | width: 95% !important; 620 | 621 | } 622 | 623 | #main { 624 | margin-top: 20px !important; 625 | box-shadow: none; 626 | background-color: #fff; 627 | height: 100%; 628 | 629 | } 630 | 631 | .content { 632 | height: 100% !important; 633 | } 634 | 635 | .post-namelist-title { 636 | font-size: 25px; 637 | } 638 | 639 | .post-content { 640 | height: 100%; 641 | max-height: none; 642 | } 643 | 644 | .toolbar-url { 645 | cursor: default; 646 | border: none; 647 | } 648 | 649 | .toolbar { 650 | font-size: medium; 651 | } 652 | 653 | .post-namelist-title { 654 | font-size: medium; 655 | } 656 | } 657 | 658 | #searchform { 659 | padding-left: 40px; 660 | 661 | } 662 | 663 | .screen-reader-text { 664 | display: none; 665 | } 666 | 667 | #s { 668 | width: 90%; 669 | } 670 | 671 | #searchsubmit { 672 | display: none; 673 | } 674 | 675 | .widget:after { 676 | content: ''; 677 | clear: both; 678 | } 679 | .post-content-content blockquote { 680 | position: relative; 681 | margin: 30px 0; 682 | padding: 10px 45px; 683 | border-radius: 3px; 684 | background-color: #f8f8fa; 685 | } 686 | .post-content-content blockquote:before{ 687 | position: absolute; 688 | top: 20px; 689 | left: 20px; 690 | display: block; 691 | width: 16px; 692 | height: 14px; 693 | background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAANCAYAAADISGwcAAAABmJLR0QA/wD/AP+gvaeTAAABJUlEQVQ4y62UzVHDMBCFPxgX4BJcQkpIKgAqwKkguAJDBSQdmAooAXPhlINLcDowFSQHr0fPipTMJHozmlnJT6u3f35o//YIlkBt9hroOccb8AQMwAvwY/d8vAMfZh8JY/XoHdTiLPR4LpyOBFABpTz+FeF/mohLnJsE5OZ8irwJcJcmEvvekwCTgI1Etotwa7FjnJsEFIwNA2NjhaIvceVpSVR/gAx4lX1v2QA4iBjlDJKNX6DCZU+b+F/urMT+Fv6QeYIWtqZIQ9l4tgXzUSvkcT+TrWQyl7POH8N7sBG7MhGXOGuYj+E9yHET0hGfooXZW2yKUgkocamtrmRowJUtmYDJeYOrt6LA9c2sPBljt4cudRFbcTDnje1jf8cCN+qNfjgBbfA/pMbdZOcAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAAElFTkSuQmCC) no-repeat; 694 | content: ''; 695 | } 696 | .post-content-content blockquote:after{ 697 | position: absolute; 698 | right: 20px; 699 | bottom: 20px; 700 | display: block; 701 | width: 16px; 702 | height: 14px; 703 | background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAANCAYAAADISGwcAAAABmJLR0QA/wD/AP+gvaeTAAABJUlEQVQ4y62UzVHDMBCFPxgX4BJcQkpIKgAqwKkguAJDBSQdmAooAXPhlINLcDowFSQHr0fPipTMJHozmlnJT6u3f35o//YIlkBt9hroOccb8AQMwAvwY/d8vAMfZh8JY/XoHdTiLPR4LpyOBFABpTz+FeF/mohLnJsE5OZ8irwJcJcmEvvekwCTgI1Etotwa7FjnJsEFIwNA2NjhaIvceVpSVR/gAx4lX1v2QA4iBjlDJKNX6DCZU+b+F/urMT+Fv6QeYIWtqZIQ9l4tgXzUSvkcT+TrWQyl7POH8N7sBG7MhGXOGuYj+E9yHET0hGfooXZW2yKUgkocamtrmRowJUtmYDJeYOrt6LA9c2sPBljt4cudRFbcTDnje1jf8cCN+qNfjgBbfA/pMbdZOcAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAAElFTkSuQmCC) -16px 0 no-repeat; 704 | content: ''; 705 | } --------------------------------------------------------------------------------